Mogymog
Cheats
#1 by Mogymog - Jan 13 2010
Are there any built in altering commands, or a way to edit the save files or any such things? I was wanting to mess around with some stuff, but could never find a way to do it.
News, Walkthroughs, and Chat about Anime Games
#1 by Mogymog - Jan 13 2010
Are there any built in altering commands, or a way to edit the save files or any such things? I was wanting to mess around with some stuff, but could never find a way to do it.#2 by Spiky Caterpillar - Jan 13 2010
Yes, there are editing functions.
leader.combatant.maxhp=40
leader.combatant.hp = leader.combatant.maxhp
jennifer.combatant.maxsp = 30
inventory_add_loud("Orange",1)
#3 by potterhead12496 - Mar 4 2010
i like those cheats..#4 by Spiky Caterpillar - Mar 6 2010
Thanks! *flattered*potterhead12496:
i like those cheats..
i tried experimenting with the inventory cheat and i got several items ..
could you post all the acquirable items in the game..
by the way.. I LOVE THE GAME!!![]()
![]()
#5 by Indalecio - Apr 20 2010
Hey, I've playing this again. Are there XP or level-up codes?#6 by Spiky Caterpillar - Apr 22 2010
Leveling up is slightly complicated, since it's handled in the battle victory code. If you want to get the same exact results as leveling up normally, you'll have to do something like leader.combatant.xp=99 just before a battle, so the victory will take her over the next-level threshhold - but it's probably easier to manually unlock the commands you want and add LP to them.leader.combatant.commands[3][4] = 4 # Set Hypnotize to level 4 jennifer.combatant.commands[4][4] = 1 # Unlock Nerve Pinch nicole.combatant.commands[5][4] = 1 # Unlock Big Bang jennifer.combatant.lp = 10 # Give Jennifer 10 level-up points. missy.combatant.commands[6][4] = 1 # Unlock Data Transfer andrea.combatant.xp = 500 # Andrea now has exactly 500 XP. heather.combatant.add_xp(400) # Add 400 XP to Heather.
for pc in (leader,jennifer,nicole,missy,heather,andrea): for i in (3,4,5,6): pc.combatant.commands[i][4] = 1 # Should unlock all special powers. # or crash if I mistyped it. pc.combatant.maxhp = 100 # and while we're at it, give everyone 100 max HP.