SKRoy
Pokémon Hacker
- 66
- Posts
- 15
- Years
- Seen Feb 8, 2016
I tried using APE to search for the specific blue that the rectangle is, but it found many pallates, and I don't want to mess them up. What do you mean by Pallate 6, 9, and 7? What are their offsets?
Your problem is:
When a number begins with "0x", That means the number is in hex. 0x246 is a hexidecimal number, that equals 582 in our normal counting system. Since there arent 582 Pokemon, this explains the freezing. Just replace "0x246" with 0xF6 (0xF6 is 246 in hex)Code:... cry 0x246 0x0 wildbattle 0x246 0x5 0x0 0x0 0x0 0x0 ...
Edit: I don't know if your version of XSE does this, but you can also input numbers in decimal by not typing in the "0x". For example:
Code:... cry 246 0 wildbattle 246 5 0 0 0 0 ...
Thanks it works!
Now I have another problem, wich is bigger... I'm making a hack... I have a big problem. I have done a few things and I was trying some things out in the game. But when I want to the start menu (the menu with pokédex, pokemon, bag, save etc.) the whole game freeze.... How can I fix this?