![]() |
|
Need help!!! How to convert Integer to Big Endian to use Cheat Engine? - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Emulator Discussion and Support (https://forums.dolphin-emu.org/Forum-dolphin-emulator-discussion-and-support) +--- Forum: Support (https://forums.dolphin-emu.org/Forum-support) +--- Thread: Need help!!! How to convert Integer to Big Endian to use Cheat Engine? (/Thread-need-help-how-to-convert-integer-to-big-endian-to-use-cheat-engine) |
Need help!!! How to convert Integer to Big Endian to use Cheat Engine? - DevilX1 - 10-21-2016 I want to use Cheat Engine with Dolphin and I found this guide video: https://www.youtube.com/watch?v=prIWtYjFdKw. I understand that I must convert number I want to search in Cheat Engine to Big Endian, after that I can modify that number. But I can not find out how to convert my number to Big Endian. Please help me. Thank you very very much ![]() P/S: Is there anyone know how to use Cheat Manager of Dolphin to cheat gold, bexp in Fire Emblem Radiant Dawn? thanks
RE: Need help!!! How to convert Integer to Big Endian to use Cheat Engine? - JosJuice - 10-21-2016 Let's say that you have the decimal number 12345678. In hexadecimal, that is BC614E. You most likely want to use this as a 32-bit number, so let's write it as 4 bytes (since 32 bits = 4 bytes): 00 BC 61 4E. Now that you have a hexadecimal number expressed as bytes, here's how to swapping the endianness, either from little to big or from big to little. Take the number 00 BC 61 4E and write the bytes in the reverse order: 4E 61 BC 00. (Important: Not E4 16 CB 00!) If you wanted the number in hexadecimal, you're done now. Otherwise, you have to convert back to decimal. 4E 61 BC 00 in decimal is 1315027968. RE: Need help!!! How to convert Integer to Big Endian to use Cheat Engine? - DevilX1 - 10-22-2016 (10-21-2016, 08:11 PM)JosJuice Wrote: Let's say that you have the decimal number 12345678. In hexadecimal, that is BC614E. You most likely want to use this as a 32-bit number, so let's write it as 4 bytes (since 32 bits = 4 bytes): 00 BC 61 4E. Thank you very much
|