[Request] Neopets Game
-migrated-
[Request] Neopets Game Posted on: 12/22/2011 8:55am
Quote Post
Can somebody here help me with Snow Rollers on neopets. The game randomly gives out items after playing it over and over again. I was hoping I could increase the chances and started looking through the swf and found a part in the code that I think determines when you get the items. It would be greatly appreciated if somebody can take a look at it for me (broken image removed)

http://www.neopets.com/games/play.phtml?game_id=1076&size=regular&quality=high
NP9_GameEngine.setEvar("TIMES_PLAYED", (NP9_GameEngine.getEvar("TIMES_PLAYED") + 1));
            if (item_name != "" && NP9_GameEngine.getEvar("ITEM_CODE") != 0)
            {
                if (NP9_GameEngine.getEvar("TIMES_PLAYED") >= NP9_GameEngine.getEvar("NP_SUBMIT"))
                {
                    if (gameengine._score >= NP9_GameEngine.getEvar("NP_MINIMUM"))
                    {
                        NP9_GameEngine.GEdebug("Award given");
                        itemaward.setAwardItem(NP9_GameEngine.getEvar("ITEM_CODE"), item_name);
                        clearPrize();
                    }
                }
            }