Posted: Mon Aug 31, 2009 6:56 pm Post subject: [vb6] Calling function in flash game??
Hey is it possible to call a function from a flash game i decompiled...
or can you just edit the variables?
this is what i decompiled and got... just wondering if i can call it thru vb6 to the game...
Code:
function stopIgnoring(id, avName)
{
chat("<i>No longer ignoring " + avName + ".</i>");
saveChatRecord("No longer ignoring " + avName);
var _loc1 = 0;
var _loc2 = new Array();
while (aIgnoreList[_loc1++])
{
if (aIgnoreList[_loc1] == id)
{
_loc2[_loc1] = aIgnoreList[_loc1];
} // end if
} // end while
aIgnoreList = _loc2;
} // End of the function
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum