 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
elmasmalo1 How do I cheat?
Reputation: 0
Joined: 16 Jun 2010 Posts: 6 Location: DLL Hacking MMORPGS
|
Posted: Wed Jun 16, 2010 2:37 pm Post subject: [HELP] XenoFiesta(Fiesta Online)(MMORPG) Hacking (DLL) |
|
|
Hello guys as this is my first post be nice on me if i do posted something badly wrong, well as the title says i need help with a hack I'm making because i would like to make a DLL which makes me have unlimited HP and SP or at least only HP in other words the so famous godmode, now after that i have searched the game for the addresses of the HP and it appears 2 addresses lets identify HP1 for (*123/123) and HP2 for (123/*123) well as you can see the first address that appears is the 007BBD17 which is the HP1 (in the left side) and that value is the one that decrease if i get hit... duh.. well i want to make that value 999 or 1000 whatever and freeze it there so it makes the godmode... BUT! my problem is the following one.. here is the code of the DLL already so you can see what im missing...
| Code: | #include <windows.h>
//Define variables
DWORD ThreadID;
int *hp = (int*)0x007BBD17; //Address for HP (Address appears in green in cheat engine which means that is a static address idk if this is important).
DWORD WINAPI godMode(LPVOID lParam) {
while(1)
*hp = 999; // the value what i would like to be (godmode)
ExitThread(0);
}
//DllMain
BOOL APIENTRY DllMain(HINSTANCE hDll, DWORD callReason, LPVOID lpReserved) {
if(callReason == DLL_PROCESS_ATTACH) {
MessageBox(0, "XenoFiestaDLL Injection Successful! ", "DLL Injected By AbdiSan2010/elmasmalo1", MB_ICONEXCLAMATION | MB_OK);
CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&godMode, 0, 0, &ThreadID);
}
return 1;
} |
As you can see i have added already the address of the value of the HP in game and added a hotkey as well, but when i go ingame the i press the hotkey and the value change but still it will not be godmode i will still get killed, how could i make is a fully godmode hack? pointer? allocalting memory? writing memory? tell me what methods could be used, let me get this clear, this is not fully my source code, i copied it from the minesweeper hack XD which stops the timer @ 0 XDD lololol and try to implement it on the game im playing now, please help me on my case i would really like to imrove my skills on C++ and hacking i would learn from the one who help me and maybe put the hack to work hopefully if someones helps me, thanks for any further help bye.
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 471
Joined: 09 May 2003 Posts: 25819 Location: The netherlands
|
Posted: Wed Jun 16, 2010 8:15 pm Post subject: |
|
|
it's an online game. You're not going to be able to write your real health (only the displayed health, and that's useless)
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
elmasmalo1 How do I cheat?
Reputation: 0
Joined: 16 Jun 2010 Posts: 6 Location: DLL Hacking MMORPGS
|
Posted: Thu Jun 17, 2010 7:24 am Post subject: |
|
|
| Dark Byte wrote: | | it's an online game. You're not going to be able to write your real health (only the displayed health, and that's useless) |
What about those online games, USF, Gunz, WoW, that when they press ALT+G or something they get godmode... or they super run. or super jump.. if i cannot achieve godmode i will at least make the super jump-speed hacks.. u will see... if someone helps me in that i would be really grateful
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|