Additional Info
|
http://www.kongregate.com/games/nerdook ... tation-2-0
Platformer by Nerdook. Didn't find any post using the search so here goes... Am probably wrong but it seems to have badge submission code in the swf: if (vics >= 7) { _root.kongregateStats.submit("completeGame", 1); result = "CONGRATULATIONS!"; resulttxt = "You have successfully proven yourself as a skilled zombie hunter!"; if (cash >= 40000) { rank = "A"; _root.kongregateStats.submit("completeRankA", 1); } else if (cash >= 35000) { rank = "B"; _root.kongregateStats.submit("completeRankB", 1); } else if (cash >= 30000) { rank = "C"; _root.kongregateStats.submit("completeRankC", 1); } else if (cash >= 25000) { rank = "D"; _root.kongregateStats.submit("completeRankD", 1); } else { rank = "E"; _root.kongregateStats.submit("completeRankE", 1); } // end else if if (vics >= 10) { rank = rank + "+"; } // end if } else { result = "GAME OVER"; resulttxt = "You did not complete enough missions to qualify as a hunter."; rank = "F"; } // end else if Am an amateur compared to phreneticus and others but this is what I've found: Shooting Adds Bullets: 04 01 08 c3 4e 96 05 00 07 01 00 00 00 0b >> 04 01 08 c3 4e 96 05 00 07 01 00 00 00 0a All 17 Weapons hit at max range (14) *18 results, omit the one where the ?? is 00: 96 09 00 04 01 08 39 07 ?? 00 00 00 >> 96 09 00 04 01 08 39 07 0E 00 00 00 All 17 Weapons hit for 250 max damage (17 results): 96 09 00 04 01 08 3c 07 05 00 00 00 >> 96 09 00 04 01 08 3c 07 fa 00 00 00 Weaps deal Maximum Damage (best used with 250 max damage AoB): 96 02 00 08 45 1c 96 02 00 08 51 96 02 00 08 45 1c 96 02 00 08 50 Adds Heals and Deployment Cost to Mission Rewards: 96 02 00 08 24 1c 96 02 00 08 3c 1c 0b 96 02 00 08 3b 1c 0b >> 96 02 00 08 24 1c 96 02 00 08 3c 1c 0a 96 02 00 08 3b 1c 0a Infinite Special Weaps (10 results, change only the five where ? is not 1): 96 0e 00 07 01 00 00 00 08 4? 07 02 00 00 00 08 42 >> 96 0e 00 07 00 00 00 00 08 4? 07 02 00 00 00 08 42 Couldn't figure out any invincibility hack and, of course, if any of the better hackers can tighten up these AoBs, please do so. Again, apologies if this is posted elsewhere... |