PDA

View Full Version : Tutorials and God Mode


nekkron
9th August 2007, 15:02
MPC is all about cheating. If you can supply hints and/or tips on how he can find godmode then supply it. He is not asking for it he is asking how to find it -- help him to learn!

what the mod said. this thread is for hints and tips for the trickster god mode, hp-lock, miss mode, or assorted hints and tips i guess to get people from asking in other threads. i will also list how you can find a few client sided hacks, which i feel aren't hurting anyone because you can't do anything with just the addresses alone.

well i found one god mode today, it's troublesome because it works but crits still hit the player, but receives 0 dmg for normal attacks.

i notice most people are looking the the 'text' of their health bar, and only end up with client sided hacks. if you want to find these; search for your health/mp, remove or equip items and search for addresses who's values that match your new health/mp. also when you do this, you will also find your current health/mp addresses as well, they will increase as your current health/mp does. to find the dmg that you inflict on enemies; hurt an enemy, search for the dmg that you inflicted, then shoot a different enemy, the addresses will have changed to the new dmg. for exp levels (tmxp and exp), there are 2 things; the percentage of experience and the current level, you will need to be near a level up to do it. search for your current exp level, when you levelup, find the addresses that have changed. this method also works with items, galder along with more. with client sided hacks you can change the values to anything you want, but it won't affect in anyway 'server side'.

when you want to make server sided hacks, you need to use what 'accesses' and 'write to' with addresses. you may also need to freeze or nop an address.

freezing an address will only keep the current value of the address if something was to alter it. when you opt an address you make a 'no operation instruction' which has no value or instruction.

when you look for something that doesn't use a value, its a different method. you need to search with 'unknown values', remain still > detect and item, walk, unload a pet etc. > find the address who's value has changed > repeat it again and see if it works. and look for other things, like when enemies chase you when they get close or finding the difference between your current health/mp and your total values.

with assembly code, such as;

mov edx, [00ad255f] it will move the value of address '00ad255f' into the 'edx register'. if you change this you alter the value in the 'edx' register.

sub esi, edi will subtract the value in the 'esi' register with that in the 'edi' register. if you change this you alter the value in the 'esi' register.

je 0047dde5 makes the address jump to another address if the value is equal. nop this to stop the jump.

mov [eax+00476ee1] ,esi moves the value contained in esi register into the pointer [eax+476ee1] i.e. an address. alter the 'esi' address.

most of these will have their function on the bar between the assembly code and memory windows, if you get confused.

this would work good if anyone who knows what to do contributes here, so we get people to stop requesting hacks or methods in Jojo's thread. also i'm not a pro, so feel free to tell me anything that needs to be edited.

sun_fl0wer86
12th August 2007, 19:44
when you want to make server sided hacks, you need to use what 'accesses' and 'write to' with addresses. you may also need to freeze or nop an address.

I use "what accesses and write to" then i see a sub opcode, i think it's the one that decrease HP when i got hit. I change the opcode so that it sub 0 instead of the damage you take. Then i got back in the game, get hit, and omg the HP did not change. Sadly, it decreased after a while, like 15-20s. I don't know why. Do you have any idea ?

About the semi - godmode you post, you change the damage monsters do on you to 0 right ?

dut
13th August 2007, 16:45
I realy want to help on god mode hack but I even don't know how to search a value...

What program may I use for it? May I use kiki 1.41 for it?

Now I'm just a leecher but I want to be better of it lol

Thanks too much o/

BalistarDrake
13th August 2007, 22:34
mov [eax+00476ee1] ,esi

What if it moves into 00 instead of edx

nop this to stop the jump.

How do you "nop" something?

sun_fl0wer86
14th August 2007, 14:20
How do you "nop" something?

Change the opcode to "nop"
Or right click -> Replace with code that does nothing

nekkron
14th August 2007, 14:41
Change the opcode to "nop"
Or right click -> Replace with code that does nothing

you can either double click on the memory, to edit the assembler code, and type in 'nop' or yes you can right click and 'replace with code that does nothing' all the same thing. sorry, i originaly thought you asked this, but i'll leave it anyway.

About the semi - godmode you post, you change the damage monsters do on you to 0 right ?

yes in a way, the one i posted is a bit weird. it seems to make normal dmg from enemies '0' while crits still hit. also with this, sometime even when you are taking no damage it will still say crit, and when you are getting hit, it may say block but dmg still goes down. it's a pretty rough one when you see it in action, but its only something basic so that people can work out how to find it, and what it does.

What if it moves into 00 instead of edx well when you see how it looks after you press 'ok' then edit it again, you see that it actually changed itself to hex; 00000000 so it is an absolute number and nothing else can change it, unless it is a crit, where there is a seperate code for both crit and normal (this is only my way, for other methods it may be all one code)

ishida77
15th August 2007, 19:24
Thanks you, you basically told us how to get godmode :|. Lol thanks for being nice.

Ps: If i find the addy do i just change EDX and put a value of 0 ?

infonlinebr
15th August 2007, 19:37
please, it makes a video of as you this making to have one better ideia of what to look for

ishida77
15th August 2007, 22:44
please, it makes a video of as you this making to have one better ideia of what to look for

-_- dude wtf. I bet you didn't even read the full article.

Here


well i found one god mode today, it's troublesome because it works but crits still hit the player, but receives 0 dmg for normal attacks.

i notice most people are looking the the 'text' of their health bar, and only end up with client sided hacks. if you want to find these; search for your health/mp, remove or equip items and search for addresses who's values that match your new health/mp. also when you do this, you will also find your current health/mp addresses as well, they will increase as your current health/mp does. to find the dmg that you inflict on enemies; hurt an enemy, search for the dmg that you inflicted, then shoot a different enemy, the addresses will have changed to the new dmg. for exp levels (tmxp and exp), there are 2 things; the percentage of experience and the current level, you will need to be near a level up to do it. search for your current exp level, when you levelup, find the addresses that have changed. this method also works with items, galder along with more. with client sided hacks you can change the values to anything you want, but it won't affect in anyway 'server side'.


when you look for something that doesn't use a value, its a different method. you need to search with 'unknown values', remain still > detect and item, walk, unload a pet etc. > find the address who's value has changed > repeat it again and see if it works. and look for other things, like when enemies chase you when they get close or finding the difference between your current health/mp and your total values.

with assembly code, such as;

mov edx, [00ad255f] it will move '00ad255f' into the 'edx register'. if you change this you alter the value in the 'edx' register.

sub esi, edi will subtract the value in the 'esi' register with that in the 'edi' register. if you change this you alter the value in the 'edi' register.

je 0047dde5 makes the address jump to another address if the value is equal. nop this to stop the jump.

mov [eax+00476ee1] ,esi will move the 'eax' register combined with the hex into the 'esi' register. with this alter the 'esi' register.



the most important parts of thread :P

DiDDyJ
15th August 2007, 22:47
-_- dude wtf. I bet you didn't even read the full article.

Here


the most important parts of thread :P

Sure it is.

But I don't think mov has to do something with godmode.

ishida77
15th August 2007, 22:54
really :S i thought if i put in 0 in EDX the value of damage i would take would turn to 0. Lol

can you help me out then what do i change to have the dmg value go down to 0?

DiDDyJ
16th August 2007, 00:25
really :S i thought if i put in 0 in EDX the value of damage i would take would turn to 0. Lol

can you help me out then what do i change to have the dmg value go down to 0?

I don't think you'll need to put these values in EAX, EDX, ECX etc.. to activate godmode. I'm not sure through...

I've tried to use reg flag but only found 1 opcode (or I don't know what it is called) that is working but... Clientsided.

So I think modify mov thing won't help at all. Try finding Jump (je/jne/jle etc) and tick zf probably will do.

DABhand
16th August 2007, 04:54
mov edx, [00ad255f] it will move '00ad255f' into the 'edx register'. if you change this you alter the value in the 'edx' register.

...snip...

mov [eax+00476ee1] ,esi will move the 'eax' register combined with the hex into the 'esi' register. with this alter the 'esi' register.


Someone needs to go back to ASM school.


1. first example it does NOT move 00ad255f into the edx register, it moves the value contained at the address 00af255f into the edx register.

2. second example I quoted, it does NOT move the eax register with hex into esi register. That mov actually moves the value contained in esi register into the pointer [eax+476ee1] i.e. an address.

Please if your gonna try to teach do get it right :P

DiDDyJ
16th August 2007, 05:09
I've been tried different method like use registry flag etc to find a nice godmode, but I only found crappy clientsided address.

It's too hard to find one, I don't even know which method to activate godmode.

Could it be reg flag? ZF? CF? SF? OF? EAX? ESI? ECX? EIP? Values? nop?

nekkron
16th August 2007, 05:40
Someone needs to go back to ASM school.


1. first example it does NOT move 00ad255f into the edx register, it moves the value contained at the address 00af255f into the edx register.

2. second example I quoted, it does NOT move the eax register with hex into esi register. That mov actually moves the value contained in esi register into the pointer [eax+476ee1] i.e. an address.

Please if your gonna try to teach do get it right :P

well;

1. i did actually say that is changes the 'value' of the register when you edit it, sorry if i said it in confusing words, i noticed that i did say it moves that address into it.

2. well you got me there.

thanks for that info, you were probably trying to flame me when you said that, but i'll change it to suit what you said. i am still only learning myself, and so far i've actually found it, even if my methods are still wrong.

I don't think you'll need to put these values in EAX, EDX, ECX etc.. to activate godmode. I'm not sure through...

i did try not changing that register, but it didn't work, i had to set the value of the hit to '0' otherwise it just hit at the same dmg all the time. but there is other codes for godmode that don't work the same way, and for instance one is just a jump, so all you need to do is flag to stop the enemy from hitting you.

DABhand
16th August 2007, 08:34
What you do have is a misconception...

sub esi, edi will subtract the value in the 'esi' register with that in the 'edi' register. if you change this you alter the value in the 'edi' register.


Is wrong..

How it works is this

SUB destination, source

I.e. in your example the math would be

esi = esi - edi

You will alter the value in the ESI register not the EDI.

And to push the point across more

MOV eax,ebx

Moves the value in ebx into eax, if you wish to hack a game and force a value then you change ebx to force into eax. If you tried to force a value directly to eax before this operand it will be overwritten by the contents of ebx.


mov [eax+00476ee1] ,esi moves the value contained in esi register into the pointer [eax+476ee1] i.e. an address. alter the pointer address.

Thats fine until the last part, you dont alter the pointer you alter the register esi.

nekkron
16th August 2007, 13:27
haha, wow i didn't actually noticed that most of it i wrote the wrong way round, lol. but changed them. i got most of this stuff from a wiki page that i read about what all the meanings were, so i guess that is partly to blame, i did re-write them all but obviously didn't take notice of mistakes, thanks.

ekmo
26th August 2007, 15:23
I'm having a few problems getting these to be server-sided... what am I doing wrong? >_<

Basically, this is what I did and what I got:

Attempted HP modding:

1. search current hp
2. get hit
3. search new hp, repeat 1-3 a few more times...
4. get hp addy (3 of them)
5. find what writes to addy, get pointer value
6. search pointer value
7. found pointer addy (so many!), add to CT.
8. refer back to "more info", go to opcode addy
9. freeze and mod EAX, EBX etc with FFFF... (depending on what gets moved into pointer addy)
10. get hit many times to test validity...

Result: CS hp freeze... I still die with 65535 HP displayed. :dead:


Attempted damage modding:

1. Get hit. (all hits not counting crits)
2. search damage.
3. get hit by other monsters, search and narrow down.
4. get damage addy. (3 of them)
5. find what writes to addy, get pointer value
6. search pointer value
7. add pointer addy to CT. (tons of them...)
8. go back to "more information", freeze and mod opcode registers (EAX, EBX etc) to 0
9. get hit many times to test validity...

Result: Painkillers! Normal hits do 0 damage, crits do 0 damage and in the end I die from 0 damage... :tired:

...some help please?


Mods, feel free to delete this post if it reveals too much about godmode.

nekkron
27th August 2007, 03:07
so far you done well. something will happen when you freeze those addresses though, you will notice they will jump rendering what you just done useless. after you done all that to the point where you froze it, instead of that; look near that address for a jmp and stop it before you freeze, if you don't the hp/dmg will move to another address and you would need to look for them all again.

sienzdemon
17th October 2007, 16:03
i dun get it...sry if i annoyed u guys. After the pointer, where should i press??

nejb1114
18th October 2007, 08:42
@ sienzdemon:
Don't post in threads more than a month old.
And, do the Cheat Engine tutorial. It helps.

andrewangel
20th October 2007, 04:18
Don mean to dig up old thread, but thanks a whole bunch man!!! After countless try i did it!! Now its pretty sweet running around with HP..

If anyone wants it pm me, i'll send u the step to step tutorial on how to get it.

nejb1114
20th October 2007, 09:31
@ andrewangel:
It's your choice if you want to release it if you want.
Give it to people you think that deserve it.
Otherwise, just keep it to yourself.
Nice job though, I found it after only a week of looking around.

=Jojo=
20th October 2007, 18:51
Don mean to dig up old thread, but thanks a whole bunch man!!! After countless try i did it!! Now its pretty sweet running around with HP..

If anyone wants it pm me, i'll send u the step to step tutorial on how to get it.

as nejb1114 told u this is a public forum and a public thread so if u got things 2 add or share u are more than welcome but saying this pm me 2 get it am afraid that wont work save it 2 yourself better

kidobito
20th October 2007, 22:08
release the shit so trickster can be ****ed up forever! im bored and rich anyway so idc

nejb1114
20th October 2007, 23:29
@ kidobito:
Some of us don't want Trickster to be screwed up so the people that have found it will only share it with non-abusive people.

gthomie
20th October 2007, 23:45
.....too hard to find..

kidobito
21st October 2007, 00:48
Its a game if u dont want to release anything then by all means dont. But dont tell others not to.

nejb1114
21st October 2007, 10:34
That's true, but some people don't want the game to be ruined.
After all, do we want more GM activity?
Do we want an auto-ban system?
Do we want updated GameGuard?
The answer to all of these is no. Those possibilities will definitely happen if everything that could screw up the game is released. We don't want this to turn out like another MapleStory after all.

kidobito
21st October 2007, 20:35
Nejb1114 u make more sense then anyone here. I guess your right.

nejb1114
22nd October 2007, 03:42
I use common sense unlike 90% of the population here at MPC.
It's simple to figure out that game security would be upped if we show too much public hacking.

RegisterAtMPC
23rd October 2007, 03:07
I found 2 HP addresses. One sometimes shows the value of my HP, and the other always does.

I found what was writing to both; they're all movs'. The one that always shows my HP has only movs' around it - no jumps (unless you scroll up :p). What can I do with the movs'? People said that the godmode doesn't have to do with them.

miniii
23rd October 2007, 10:25
Say the code is mov [eax+0000DEAD], ebx

If you right click the address and tick the ebx box and
put in FFFF (65535 in hex) then your hp will show up
with 65535. Of course, it's only client sided.

That's one example...

nejb1114
24th October 2007, 03:31
If it says mov [eax+0000DEAD], ecx, then that is probably the godmode address you are looking for.
ECX is the server value. ^^

kidobito
24th October 2007, 03:50
I still cant find this crap even with all the help, w.e i hope someone pm's it to me someday :(

RegisterAtMPC
24th October 2007, 04:16
Thanks for the answers - and I thought 0000DEAD was fake xD.

nejb1114
24th October 2007, 04:20
It is fake.

RegisterAtMPC
24th October 2007, 05:37
Yeah, because there should be more numbers :P.

And about the addresses, how would I know if it was static?

miniii
24th October 2007, 11:13
Doesn't matter how many numbers there are.
The values don't always need an offset,
= can have 0 numbers and letters.

If you close trickster, log back in and it's the same value, you got yourself a static address.

nejb1114
25th October 2007, 02:13
And static addresses don't change op-codes.
They stay the same unless there is a patch.

zytsef_trixter
25th October 2007, 07:26
Don mean to dig up old thread, but thanks a whole bunch man!!! After countless try i did it!! Now its pretty sweet running around with HP..

If anyone wants it pm me, i'll send u the step to step tutorial on how to get it.

good sir... I am very much interested in your HP hack... unfortunately I am not yet allowed by the forums to PM you... if you would be so kind enough to email me a copy of your tutorial? just updated my profile to receive emails

thanks

satriani12
27th October 2007, 07:23
may i also get a tutorial from you? i am also not permitted to pm yet! :) it is interesting

nejb1114
28th October 2007, 01:29
Don't use subtle begging. It isn't supported.

bayotman
28th October 2007, 15:01
ok guys i need your opinion on what i've done... :D

i searched for my hp and found 66 address XD... 6 of them changed values with my TOTAL hp..(i randomly click hp adding items...) and this is what i've observed 3 of these addy changed with the value of my 'CURRENT' hp...

now my question is... how will i know which of these 3 is the addy im looking for... and what to do with it... it's my first time to hack and no background with ASM ... so be nice ^^lol:embarrassed:

feng1991
29th October 2007, 11:38
what the mod said. this thread is for hints and tips for the trickster god mode, hp-lock, miss mode, or assorted hints and tips i guess to get people from asking in other threads. i will also list how you can find a few client sided hacks, which i feel aren't hurting anyone because you can't do anything with just the addresses alone.

well i found one god mode today, it's troublesome because it works but crits still hit the player, but receives 0 dmg for normal attacks.

i notice most people are looking the the 'text' of their health bar, and only end up with client sided hacks. if you want to find these; search for your health/mp, remove or equip items and search for addresses who's values that match your new health/mp. also when you do this, you will also find your current health/mp addresses as well, they will increase as your current health/mp does. to find the dmg that you inflict on enemies; hurt an enemy, search for the dmg that you inflicted, then shoot a different enemy, the addresses will have changed to the new dmg. for exp levels (tmxp and exp), there are 2 things; the percentage of experience and the current level, you will need to be near a level up to do it. search for your current exp level, when you levelup, find the addresses that have changed. this method also works with items, galder along with more. with client sided hacks you can change the values to anything you want, but it won't affect in anyway 'server side'.

when you want to make server sided hacks, you need to use what 'accesses' and 'write to' with addresses. you may also need to freeze or nop an address.

freezing an address will only keep the current value of the address if something was to alter it. when you opt an address you make a 'no operation instruction' which has no value or instruction.

when you look for something that doesn't use a value, its a different method. you need to search with 'unknown values', remain still > detect and item, walk, unload a pet etc. > find the address who's value has changed > repeat it again and see if it works. and look for other things, like when enemies chase you when they get close or finding the difference between your current health/mp and your total values.

with assembly code, such as;

mov edx, [00ad255f] it will move the value of address '00ad255f' into the 'edx register'. if you change this you alter the value in the 'edx' register.

sub esi, edi will subtract the value in the 'esi' register with that in the 'edi' register. if you change this you alter the value in the 'esi' register.

je 0047dde5 makes the address jump to another address if the value is equal. nop this to stop the jump.

mov [eax+00476ee1] ,esi moves the value contained in esi register into the pointer [eax+476ee1] i.e. an address. alter the 'esi' address.

most of these will have their function on the bar between the assembly code and memory windows, if you get confused.

this would work good if anyone who knows what to do contributes here, so we get people to stop requesting hacks or methods in Jojo's thread. also i'm not a pro, so feel free to tell me anything that needs to be edited.

if my hp is 330 without eq,so i need to find value with 330 at memory view or where?i m completely dont understand cz i m a newbie in hacking:embarrassed:

=Jojo=
29th October 2007, 11:56
if my hp is 330 without eq,so i need to find value with 330 at memory view or where?i m completely dont understand cz i m a newbie in hacking:embarrassed:

u need 2 search whatever hp u have on search type exact value

u will need 4 hp codes 2 of them change the amount hp on your screen and the other 2 for also changing your hp value on other ppl screen like if u where in party they see the new value that u did edit

bayotman
29th October 2007, 12:38
i found 6 address... umm wait... 3 of them change with my total hp... like my hp w/o equip is 1080 and after equiping an item it changed to 2106... the value of the 3 address changed with it(the total hp)... and the other 3 changes as i was regenerating my hp... umm do i still need to find another pair of address? or how will i know if it is the address im looking for?

feng1991
29th October 2007, 13:35
u need 2 search whatever hp u have on search type exact value

u will need 4 hp codes 2 of them change the amount hp on your screen and the other 2 for also changing your hp value on other ppl screen like if u where in party they see the new value that u did edit

i folo wad u say and i can finally find the value and change it(yeah XD)

but my hp remain the same still 830,is it bcoz it affect only the client side?

bayotman
29th October 2007, 16:17
ok... i tried to tick 1 of the 3 address that i've found...
mov[esi+00000%%%], ecx ----( i used % coz i dont know if it's ok to post the exact value)... i tick ecx ofcourse with fffff then my hp becomes 2106/100000
then i tick another address... my hp becomes 2106/10000+ again but the red bar that indicates my hp is not full... and tried it out on monster... died at 2106hp

=Jojo=
29th October 2007, 20:00
ok... i tried to tick 1 of the 3 address that i've found...
mov[esi+00000%%%], ecx ----( i used % coz i dont know if it's ok to post the exact value)... i tick ecx ofcourse with fffff then my hp becomes 2106/100000
then i tick another address... my hp becomes 2106/10000+ again but the red bar that indicates my hp is not full... and tried it out on monster... died at 2106hp

again what u found is part of the hp code u need 2 edit 4 codes 2 have hp hack and also u need 2 know tick them might not help its tricky and u need something else here

1)) with these 4 codes u can have different hacks effect like lock your hp at any amount u have

2)) u get a effect where u put any value u want and have it as hp and

3)) and the most important part of these codes is a link here for godmode its like infinite hp thats why hp code is related 2 the godmode i think i said it before i did give some small hints i remember

so whatever your doing u are close keep it that way and am sure u will get it

nejb1114
30th October 2007, 02:04
Well. It is related to godmode in a way.
But, those are the client sided values. The server sided determination address is pretty close to those, but who am I to say anything? =3

bayotman
30th October 2007, 04:33
does it always have to be a mov? or a jmp?

nejb1114
30th October 2007, 07:49
It's most likely a jne XXXXXXXX.
With the XXXXXXXX being the address with the mov.
Jmp addresses just go to another address that it points to.
Jne=ZF Flag
Jmp=Nop

feng1991
30th October 2007, 08:39
wad is the jmp jne and nop,i m very confuse,i find 4 address change the value after i increase my hp value in game,so wad i need to do after it?

=Jojo=
30th October 2007, 08:48
wad is the jmp jne and nop,i m very confuse,i find 4 address change the value after i increase my hp value in game,so wad i need to do after it?

that is my friend u need 2 figure out alone lol after all this is a private hack and we only provide small hints here if u have no clue what your doing its better u just leave it

bayotman
30th October 2007, 09:22
ok i found 1 jne close to one of the address that i tick...

correct me if im wrong... found jne XXXXXXXX search for the address (XXXXXXX) and it points to a pop esi? tick jne with =zf? and the address with nop.... am i correct or just dumb wrong?

nejb1114
30th October 2007, 15:39
You could try that, but I wouldn't recommend doing the nop.
Remember, it isn't the real godmode unless it's between 00400000 and 007FFFFF.

j0eL
30th October 2007, 23:10
You could try that, but I wouldn't recommend doing the nop.
Remember, it isn't the real godmode unless it's between 00400000 and 007FFFFF.

0096AA5A zf[x][ ]
Client-side HP Lock

Maybe it's because it's not between those addies ;)

nejb1114
31st October 2007, 01:06
xD
Only client sided.
I could trace that addy to another addy that has the same effect, but server sided.

bayotman
31st October 2007, 03:53
can it be a 0076***? it add to my hp... but the thing is... my original hp is 2106... after ticking address.. my hp become 100k++ but the thing is my hp only goes until 2106 then stop regenerating....i think its client sided... so how do i search for the server sided?

for me i dont like the god mode where you could have unlimitted hp... i only want to add a couple of thousand of hp like about another 5k hp.... for me half the fun of playing is through dying XD.... lolz..... but if you die quite often you'll end up bashing your pc... lolz...

smartsoldier123
31st October 2007, 13:18
could someone explain to me how to find MP lock, thanks.

btw howd u find CS hp lock??

kill0
2nd November 2007, 09:56
Correct me if i'm wrong. 2 of the 6 hp addresses changes when you're in different island(channel).

nejb1114
3rd November 2007, 03:09
Ummm. To get the CS HP lock is just search current HP, get hit, search again,repeat.
And we're not giving out privates.

And I'm not sure about what kill0 said, since I play in Dream Island.

nejb1114
4th November 2007, 02:58
"If" godmode is dynamic which I know it isn't, then it would be a pointer.

smartsoldier123
4th November 2007, 19:26
lol i got this. I was just tracing around with memory view and NOP'ing some crap and now my HP stays at 0 but I never die. OMG ITS DA BOMB. Can some expirenced hacker please tell me how to replicate this=?

lol oops sry...about 10 minutes of no death I got a GG error and it made me leave. So sad.

nejb1114
5th November 2007, 02:40
You'd need a CRC bypass for editing the op-codes directly.
And, that would be the never die hack if there is a CRC.

miniii
5th November 2007, 08:42
Correction, always dead hack >.<

nejb1114
5th November 2007, 08:57
Actually, the person technically never dies.
So, it's a no-die hack. You HP stays at 0 though.

smartsoldier123
5th November 2007, 23:22
so is there no way to get a CRC bypass for this game other then make one...which I most certainly cannot do?

nejb1114
6th November 2007, 02:34
There is. Just use the dumped memory when running Trickster.
Remember to use a CEM, get the CRC address, and then finally write the script.
Simple enough. =D

zytsef_trixter
6th November 2007, 03:50
You could try that, but I wouldn't recommend doing the nop.
Remember, it isn't the real godmode unless it's between 00400000 and 007FFFFF.


hi what kind of godmode hack are you using? is it the always miss/block kind or HP lock kind?

nejb1114
6th November 2007, 07:28
I use the block kind. =D
Modded lk ftw.

zytsef_trixter
6th November 2007, 13:46
I use the block kind. =D
Modded lk ftw.

so this is what you mean when you say that the "godmode" hack is between 00400000 and 007FFFFF?
could you give me some other clue/hint how to go about the block kind of godmode?
i've tried getting it by letting the lower level monsters to hit me while i search for the address which determines my blocking/avoiding capability but there's just too much info/addresses to process....

also to the others:
i read that I should be looking for an assembly code with mov[/*pointer*/],/*register*/ for HP lock but the with the addresses that I keep getting assembly codes sbb /*register*/,/*register*/
any hints? am I warm or way cold in getting this right?

nejb1114
6th November 2007, 16:02
Hint*You search for values when changing maps in aggro areas.*Hint

smartsoldier123
6th November 2007, 23:03
Can you help me to make a CRC Bypass?

nejb1114
7th November 2007, 01:51
Too lazy. I have a current project right now though.
I have to crack a GhostFill Explorer program and remove the licensing required to run the program.
Life sucks.

greatslime
7th November 2007, 02:15
dont be EMO...XD

nejb1114
7th November 2007, 03:49
I'm not.
I'm just saying that life sucks right now.

CheatingPie
12th November 2007, 19:03
I searched for an unknown initial value while on a monster map, did various stuff and searched for unchanged to trim the returns down, then looked for changed while switching maps (since that grants temp 100% block), but nothing good ever came out of it. My searches also take between 3-5 minutes, does that affect anything?

zytsef_trixter
13th November 2007, 04:05
@nejb

you said its a modded LK right....? :D so it must be near the addy for item detect? correct me if i'm wrong....

dragonxomega
13th November 2007, 04:42
@nejb

you said its a modded LK right....? :D so it must be near the addy for item detect? correct me if i'm wrong....

heh your right. :D
*hint*its another jump(ex. jmp, je, jne)*hint*
but, now the problem is, you need to find the addy to stop the lk addy from changing
it only works for about 10 seconds for me before i start taking hits/not criting

Edit: Well it isnt like right next to it; you have to do a bit of scrolling :p
Edit2: Looks like it was just a string of lucky crits/blocks nvm, sorry for any inconviences this might have caused >_>

miniii
13th November 2007, 05:42
I searched for an unknown initial value while on a monster map, did various stuff and searched for unchanged to trim the returns down, then looked for changed while switching maps (since that grants temp 100% block), but nothing good ever came out of it. My searches also take between 3-5 minutes, does that affect anything?

Are you searching through the memory regions from 00400000 - 7FFFFFFF? Then that's why it takes so long.
02FFFFFF should be enough.

nejb1114
13th November 2007, 07:42
Modded luck isn't Item Detect.
Item Detect is modded Detect Ability.

dragonxomega
13th November 2007, 09:09
Modded luck isn't Item Detect.
Item Detect is modded Detect Ability.
i know, but an address to mod luck is fairly close to Item Detect
well, it might not be the one you're using but it temp. allows me to block/crit 100%, I just cann't figure out how to keep it on permantly >_<

zytsef_trixter
13th November 2007, 09:11
heh your right. :D
*hint*its another jump(ex. jmp, je, jne)*hint*
but, now the problem is, you need to find the addy to stop the lk addy from changing
it only works for about 10 seconds for me before i start taking hits/not criting

Edit: Well it isnt like right next to it; you have to do a bit of scrolling :p

dude clearly we're not on the same page... read nejb's reply... that's the kind of answer i'm looking for... not just a shotgun answer which I think you drew up from thin air...

it isn't a cheat if it "JUST" works for 10 seconds what the hell is that?!?!? I'm a raccoon so clearly my character can definitely do better than a "10 second" cheat.

miniii
13th November 2007, 09:15
And that 10sec is probably the immune time you get when you enter a map >.>

dragonxomega
13th November 2007, 10:28
dude clearly we're not on the same page... read nejb's reply... that's the kind of answer i'm looking for... not just a shotgun answer which I think you drew up from thin air...

it isn't a cheat if it "JUST" works for 10 seconds what the hell is that?!?!? I'm a raccoon so clearly my character can definitely do better than a "10 second" cheat.
bleh i just did some testing with the addy i found.
it probably was just some lucky string of crits/blocks after i ticked it ><

CheatingPie
13th November 2007, 15:45
Are you searching through the memory regions from 00400000 - 7FFFFFFF? Then that's why it takes so long.
02FFFFFF should be enough.
Ah, thanks. Well, I found one address (add [eax], al) whose value changes to 1 during portal jumps and my character keeps on blocking until it goes to 0. It also jumps to 2 sometimes when I change portals quickly. But, what now? I can't seem to freeze its value or force it to stay at 1.

bludsythe
14th November 2007, 02:00
so how do i find addys linked to others?

nejb1114
14th November 2007, 02:42
You trace them by using bytes, op-codes, arrays, similarity, etc.

dragonxomega
14th November 2007, 03:20
*hint* There's also a timer addy that needs to be tinkered around with for this type of block- Godmode to work.
If I found this timer, then what would i do with it >_<

Like, should i just tick something, or will it lead to another address?

nejb1114
14th November 2007, 03:30
We aren't giving out specifics. Just tinker with it!

bludsythe
14th November 2007, 05:32
so what would i have to do to actually find a critical address so i could make my hits crit every time for a buffalo i don't care about god mode crits make more sense to have i think

and for dragonxomega id think that you would want to make the timer longer? it would solve the problem if your sitting there forever but you could maybe make it last longer?

dragonxomega
14th November 2007, 05:52
I'm pretty sure that the public crit hack was patched a while back, and i dont have a clue where to start looking for it.

the problem is that i have no idea if i have the right timer address. im assuming that its close to the change-map-block address, and there are plenty of things that change as the value of the block address changes.
Btw i have very little knowledge of scripting, and im going with just intuition/random guessing.

bludsythe
14th November 2007, 06:07
oh i know it seems like it would be a pretty hard thing to find sense you would have to search and have it go threw all the addresses wile you hit

and i dont know about your computers but mine is pretty good and it still takes a while the first couple of times

bludsythe
14th November 2007, 11:47
well how far in should i let it go in? and if i stop it early what if i miss the one im trying to get to?

explain please ^_^

Edit: and you where talking about LK hacking to make block better chanced, can you actually edit your lk or are you also doing the timer with the auto block from just porting into a new room

zytsef_trixter
14th November 2007, 14:47
Are you searching through the memory regions from 00400000 - 7FFFFFFF? Then that's why it takes so long.
02FFFFFF should be enough.

like what nejb said in the other thread... people can't read... i'd like to think you refuse to read first

bludsythe
14th November 2007, 23:31
actually i just noticed the fact that you could shorten how far you search last night and that little quote you dug up to make your self feel smart didn't add anything so good job on trying to flame, but next time try helping not assuming, assuming makes and (ass) out of (u) and (me)

Edit: im here to learn

CheatingPie
14th November 2007, 23:42
Well, you asked what was answered on the last page. If that's not refusing to read then I don't know either.

Anyway, for those who were searching for the timer, did you find something useable? Next to tons of crap 00E38xxx and 02B80xxx (you should know the last three digits as the addresses popped up every time I searched, so they should do it for you too, maybe) seemed the most steady, although both were in the 3 digit range. 00D94xxx went from 0-6 but was flaky sometimes.

Oh and the address I found yesterday whose value stayed at 1 as long as I was blocking doesn't work today anymore. Whoopdeedoo.

zytsef_trixter
15th November 2007, 01:47
Well, you asked what was answered on the last page. If that's not refusing to read then I don't know either.

Anyway, for those who were searching for the timer, did you find something useable? Next to tons of crap 00E38xxx and 02B80xxx (you should know the last three digits as the addresses popped up every time I searched, so they should do it for you too, maybe) seemed the most steady, although both were in the 3 digit range. 00D94xxx went from 0-6 but was flaky sometimes.

Oh and the address I found yesterday whose value stayed at 1 as long as I was blocking doesn't work today anymore. Whoopdeedoo.

Same here, I had a hunch that the address wouldn't be the same every time you start the game... I have the same case for the HP lock. Jojo said to look for 4 addresses that have the value of your HP... I did find 4... 2 contain your full HP and 2 current HP... BUT.... 1 from each kind would change... I mean wouldn't contain the full and current HP after restarting my PC... for the blocking addy same thing...

Did you look for the address again? I got the address around the same area as 00E38xxx...

00D94xxx went from 0-6 but was flaky sometimes.

did this have the same assembly code as 00E38xxx?

miniii
15th November 2007, 08:31
zytsef, did you say that top thing to me or the others?

zytsef_trixter
15th November 2007, 09:59
nope that was for bludsythe...

I just forwarded your post from page 6... :P

miniii
16th November 2007, 11:21
Oh ok ^^

EDIT:
w00t 100th post lol

vslowlearner
16th November 2007, 21:01
hmmm
its not often that i find mov function
but when i do, the GM works

what do i do with the 'OR' functions?
and i do get je functions too
i know this is dynamic but how do i change them?
noping je doesnt work.

nejb1114
17th November 2007, 01:55
You don't nop je. You tick ZF. Just like everything else.
*ticks ZF on life program*

GorEjaKz
17th November 2007, 04:45
All I find are mov functions. I don't get where you're able to find jn, etc. What's the reason people say "scroll around and you will find it"? Are the consecutive values put in sections so that a certain set of values are coded to do the same/closely related things?
If you don't understand what I just said then that should tell you that you haven't explained what you tell us.

I'm not an expert at these things. I don't even know what exactly ZF is for but I've done these kinds of things in a previous game years ago so at least I know what I'm doing. Enough to get around in this CE.

So can someone give some REAL tips on how to go about finding the real server sided addy to freeze your HP? The furthest I've gotten is finding the 3 addys that change along with my dynamic HP. One which I find weird because its not static. It changes into another addy when I restart the game. I've tried messing around with these things and so far I've only learned how to simply change my hp. Client-sided of course. So if someone is willing to offer some guidance, please so do. Post it in this thread or PM me (if you're nice enough) if you don't want it public.

On a side note. Most of the tips are common sense. The only thing I really learned out of this was that you can shorten the search time by limiting the search values to 00400000 and 02ffffff. Other than that, there's no "tips." Telling us to mess around with the values is common sense. How else can you hack if you don't mess around with it? That's what the tut that came with the CE is for. And don't flame me because this is what everyone else who's willing to learn is thinking. Though I know which specific person would do it anyway.

nejb1114
17th November 2007, 14:13
Actually, most people think this: OMG WHAT DO THEY MEAN!?
ZF stands for Zero Flag. It's used to reduce the value of an address to 0. Needs to be used with the correct op-code though.
And, the finding jne, je, etc is simple. The addresses you are looking for is always close to the address you found.
Dynamic addresses aren't the real ones. Those are the ones generated by the client to be written. Static addresses will have the same value over and over again. If you want to find a dynamic address with the same exact functions that the address you found the last time has, you use a pointer.
And don't use a subtle way of begging. I've seen enough of it.

zytsef_trixter
17th November 2007, 21:22
lol we got a disgruntled user right here... but yah thanks anyway for forcing nejb to spill out the fastest way to get the god mode and crit hacks.... i must say thank you to nejb but mostly to GorEjaKz... i think I just benefited a lot from his post...

P.S. VERY HAPPY GAMER RIGHT HERE

nejb1114
18th November 2007, 00:04
That isn't even half of the stuff needed for godmode.
There are also different methods for finding godmode.
Include the different godmodes all together and what I said above is less than 3% of how to find all of them.

GorEjaKz
18th November 2007, 04:53
This was no way a "subtle way of begging." Maybe you got it from when I asked for someone to either PM me or post some real tips on how to get god mode but regardless, that wasn't my intent. I'm a willing learner and like what zytsef_trixter said, I just learned something from your post. I don't take programming classes like some people do cuz apparently trying to get a medical career takes too much time already.

When you said that "addresses you are looking for is always close to the address you found," what does that mean? Is it within proximity (above and below) the address you are trying to find or is it only above or below the address you are trying to find? (Syntax reasons)

Actually, most people think this: OMG WHAT DO THEY MEAN!?

I said those who are willing to learn. I wasn't referring to leechers.

miniii
18th November 2007, 12:21
When you said that "addresses you are looking for is always close to the address you found," what does that mean? Is it within proximity (above and below) the address you are trying to find or is it only above or below the address you are trying to find? (Syntax reasons)

Yes, that's what he means. Usually VERY close to the address, if not a-bit further up or down, but not past the int 3.

I said those who are willing to learn. I wasn't referring to leechers.

What was wrong with the quote nejb said, he explained what ZF stands for and does. You asked what ZF is, he answered it. And also, he isn't talking just to you, but all the other people viewing this thread. Don't take everything everyone says personally, your not going to get along well and get any useful hints that way here.

nejb1114
18th November 2007, 14:44
Subliminal messages to your mind!
I could always code my words instead of being direct.

Anyway. To me it seemed like a subtle way of begging. If you note the "So if someone is willing to offer some guidance, please so do. Post it in this thread or PM me (if you're nice enough) if you don't want it public." it seems like you were begging.

zytsef_trixter
18th November 2007, 16:22
Subliminal messages to your mind!
I could always code my words instead of being direct.


uhh.... so you mean that sometimes you're posts have some hidden message or actually mean something else?

nejb1114
18th November 2007, 22:10
Yea. For example this:
Ielamelgoelinelgelteloelteelllelwhelaelttelhelegel odelmelodeleelaelddelreelsselisel

And for future reference. I might just use something entirely different that will take years to figure out. Only 2 people know it.

[BTW] I said *always could* that means that I might code them. I haven't done so yet.

zytsef_trixter
19th November 2007, 05:55
Oh right... anyway... still thanks for the little enlightenment... a little more would be a great christmas gift :D
(that's me hoping for more hints)

miniii
19th November 2007, 13:34
@nejb
Was that:
"I am going to tell what the old address is"
How good am I?

nejb1114
19th November 2007, 16:55
It's "I am going to tell what the godmode address is."
And I'm not. That's called releasing for idiots.

=Jojo=
19th November 2007, 18:04
It's "I am going to tell what the godmode address is."
And I'm not. That's called releasing for idiots.

lol :P nice one :lick:

miniii
20th November 2007, 04:58
I was pretty close wasn't I?

nejb1114
20th November 2007, 07:05
You were a bit off. But, you did a good job. Just hope I don't use a secret code on you.

miniii
20th November 2007, 09:27
Why, cause i'll decode it close to what you meant?

rcjinx08
20th November 2007, 13:33
there no chance anybody will release the address for godmode.. and even some of the people here know it i doubt theyl gonna release it.. and one more thing the trickster hacker are much lesser now compared from the beginning.. nvm.. lol

nejb1114
21st November 2007, 03:41
Lets see the reasons why there are less hackers:
Fast Drill/No-Reload D/Cs you
Gms are on more often
Lots of people at lots of maps
Most maps occupied by at least 1 person

I can see why there are less hackers.

miniii
21st November 2007, 06:21
GMs?
I never see them online at my night time (4am trickster time)

nejb1114
21st November 2007, 07:08
I always see them.
GM_ Loki= like 50% of the time.
GM_Chaos= like 35% of the time.

But we kinda know each other now.

zytsef_trixter
21st November 2007, 07:24
i play in Fantasia... not much GM's i've seen... oh yah i've never seen one actually...
nejb: I hope you never use a code... i'm taking points from the things you say :val1:

nejb1114
21st November 2007, 08:35
I do use the codes. Just inconspicuously. I have 84 base DA. And I have a 6 DA accessory. So I seem like I have item detect. For no limit drill I am the best driller in Fantasia. You'll be able to find me easily with that information.

killer1016x1
22nd November 2007, 11:01
Wow thanks this helps alot.

rcjinx08
22nd November 2007, 14:19
going back to the god mode tutorial hekhek...!!

shadow136
22nd November 2007, 23:53
Man if only I had used that when trying to do Galder Hack LOL XD.

nejb1114
23rd November 2007, 02:34
There is no such thing as a galder hack. THe only way to do that is to indirectly send damaging information to the server that changes your galder value.

hankmccoy
25th November 2007, 10:38
hey guys,

wooooo hoooo my first post. this god mode stuff is driving me nuts. ive been working on it for the past week and i was wondering if i could get some tips and also get some answers toa few questions. im basically in the same position as byotman.

1. im starting to think that the values im searching for are just the values displayed on screen and that there are different values that the actual hp is determined from. for example rather than seaching for the displayed hp should i search for a unknown value that decreases as i get hit?

2. please correct me if im wrong. i understand that the ecx register is usually the value from the server? i was wondering what the other registers are typically used for and what they represent.

3. i guess im in a similar position as bytoman. i changed the ecx value and also tried other things to get my hp to stay the same. it seems to work for the first 30 secs then decreases. i was wondering what jojo meant by the "tricky stuff"?

=Jojo=
25th November 2007, 23:57
hey guys,


for example rather than seaching for the displayed hp should i search for a unknown value that decreases as i get hit?

. i was wondering what jojo meant by the "tricky stuff"?

search for a unknown value that decreases will also lead u 2 your hp but why u wanna do unknown when u do know your hp value u can skip this by searching the hp value first


what i did mean by tricky is cuz i said there is 4 codes involved here and using the 4 of them in different ways will give u different effects that's what i mean

skyscream
26th November 2007, 00:14
okay im getting rly mad..
ive tried like everything i can i just donmt get it..
dude ok i find the hp bar adress right and i get it then i get to the adress thers like 3-4 depends

and like after that i dont know what to do..
i nop it (it changes to like a lot but doesnt work)
i tick zf(nothing)
i mess around with it(dc) =P

i just dont know what to do after that
and the code is usually like


mov [ecx+00000XXX],edx
but i just get stuck after that

DiDDyJ
26th November 2007, 00:37
okay im getting rly mad..
ive tried like everything i can i just donmt get it..
dude ok i find the hp bar adress right and i get it then i get to the adress thers like 3-4 depends

and like after that i dont know what to do..
i nop it (it changes to like a lot but doesnt work)
i tick zf(nothing)
i mess around with it(dc) =P

i just dont know what to do after that
and the code is usually like


mov [ecx+00000XXX],edx
but i just get stuck after that

try find the the jump (je,jne,jp,jb, etc.) at the nearest address you found.

I did that before, unfortunately, nothing worked or they're CS.

Currently, I'm trying to find the address for block god-mode... seem impossible too.

skyscream
26th November 2007, 01:10
oh lol so im not supposed to mess with that adress?

what do i do to a jle?

DiDDyJ
26th November 2007, 04:45
oh lol so im not supposed to mess with that adress?

what do i do to a jle?

Yeah, I think you should not.

With the "jump opcodes" or whatever it is called, more likely you should tick ZF (Zero Flag). If it has no effect maybe you should try experimenting with different flags like PF/OF/CF/etc.

skyscream
26th November 2007, 06:14
alright wil do ty =)

and the jump code was right under that code does that mean im getting closer?

nejb1114
27th November 2007, 00:21
I have no comment. First look for an ASM tutorial. ZF is only used to je and jne. Each type of jump has its own flag.

rcjinx08
27th November 2007, 00:30
yah use other tick if u wat to change other. je and jne is for tick zf lol..
those tick is never ending u know heheh hack tick hack tick grrrr makes my brain go tick too, nyways they help a lot.. lmao!

skyscream
27th November 2007, 02:13
dangit =P
i wish i got asm..i am kinda getting it but its like...what do i do!!! ahhh...

crazy.

canadae04
27th November 2007, 08:38
Hii everyone!
I'm playing trickster in a different version(Taiwan).
I kinda get how to change your HP on client side, but I'm really having a hard time on doing the server side.

Here's what I did:
<1> Search HP, found 3 addresses.
<2>Right click, click on "what writes to this address"
<3>There's usually one address that pops up, click more info.
<4>Found out some more address.

Then I'm stuck now... I dont know what address should I use, I heard that ECS addresses are server sided.

Could someone please tell me what to do next???

Thank you very much. :)

miniii
27th November 2007, 09:12
I believe the server sided register you heard of is ECX not ECS.

canadae04
27th November 2007, 09:20
I believe the server sided register you heard of is ECX not ECS.

OH!! I'm sorry....
I meant ECX, any idea???
what to do next after seeing "what write to this address" ??

Thanks for picking that out^^

Does anyone know, what address in "see what writes to this address" should I use for God mode? Is it all of them? or just the red one?
And after that, what do I do with the address???

thanks!!

nejb1114
28th November 2007, 01:56
Don't play with the ECX value.

canadae04
28th November 2007, 04:09
Don't play with the ECX value.

OK, but what addresses should i use when i right click on the HP address and see what writes to this?

For example

0120945 <- is my HP address.
(right click, what writes to this address)
One new address shows up, see more info, around 4 more addresses shows up, what do i do with these 4 address??

Am i suppose to use these 4 new addresses? or my old HP address?

I would think the 4 addresses is the ones that i should use, but should i use all of them? or just the red one?
And after i go to memory CTRL+G go to this address, what do i do with it??

Could you give me some more hints?

thank you very much!

nejb1114
28th November 2007, 04:33
Look at that also accesses those addresses.

GorEjaKz
28th November 2007, 05:39
Yea. For example this:
Ielamelgoelinelgelteloelteelllelwhelaelttelhelegel odelmelodeleelaelddelreelsselisel



Lol, I know this is kind of late but I figured that out in about 2 minutes, later realizing that I could of just read the next few posts instead of hurting my eyes trying to mentally delete letters. XP

Yes, that's what he means. Usually VERY close to the address, if not a-bit further up or down, but not past the int 3.

Thank you miniii for that answer. I've been wondering how far above or below I'd have to search. And now I know that I'd have to search both above AND below the address in question.


I am grateful of nejb1114's explanation of what ZF is. Though that was only an example of what I would like to learn. I'd also like to learn the terms of the other functions. I know it sounds like I'm being greedy, but you don't have to listen to my request. Hopefully I'll learn something else when I'm free to read this thread next time.

miniii
28th November 2007, 07:36
ASM Register Explanations (http://www.xs4all.nl/~smit/asm01001.htm)
That is also a beginner tut for REAL assembly....

nejb1114
29th November 2007, 03:31
It's a very good tutorial. I would recommend it for beginners. Extensive and covers the flags, but doesn't include the complications of the registry flags.

rcjinx08
30th November 2007, 06:38
maple have so many asm tutorial and complete with links too.. try them.. withs worth reading.. lol wakokokoko

nejb1114
4th December 2007, 00:42
Maplestory ASM is different than Trickster ASM. The terms mean the same things, but the programming style is different. General ASM tutorials would work better.

GorEjaKz
5th December 2007, 06:24
Thanks for the link miniii.

Time to start reading...




...after I finish my research paper.

nejb1114
5th December 2007, 10:32
I shall start trying......

After I finish my projects.

lilm07
5th December 2007, 13:40
I actually have a hard time using the cheat engine 5.3.
can anyone explain to me in simple terms about it?

I actually have a hard time using the cheat engine 5.3.
can anyone explain to me in simple terms about it?

uhh..ohh...

i am starting to get how this engine works. it is always better to try first.
i would have preferred kiki engine if only it works on Vista.

miniii
5th December 2007, 14:04
No problemo, hope it helps ^^

lilm07
6th December 2007, 11:27
Got a prob with CE 5.3
looks like it is not fully compatible with Vista.
try it to see.

nejb1114
7th December 2007, 02:26
Read the post more carefully lilm07, and don't post the same thing in so many threads.

Brankoje
18th December 2007, 14:02
ok, i'm back and sorry for restarting (or not) this old thread... btw, nejb1114, tnx for those ce settings back there, respect.

i tried hp gmode like this:
1. found 4 cs hp addys: 2 actual and 2 max hps
2. traced the first one, got to that mov [esi+00lalala],ecx
3. found 1 jle down, 2 jne and 3 je above (6 jumps all around)
4. tried modding with zf n stuff..
5. got that 0, 01 fake (by modding mov too)
6. tried modding again
7. got stuck

i tried finding damage addy (cs, of course) like this:
1. got hit
2. searched for damage
3. got hit by other monster
4. searched for the other damage
5. g0t nothing
and i searched between 004 and 0f... where could it be..?

i also tried block and miss modes like this:
1. searched unknown values
2. got hit/changed maps (or not)
3. searched (un)changed values
4. rinsed and repeated
5. got zer0.
is there a time limit to these searches? if i get missed 3 times in a row, do i still search for unchanged? any other gmode ideas for the uncreative ones? and what is the meaning of life?

nejb1114
18th December 2007, 16:14
The meaning of life is 42. And you might JUST want to go to a place you lag at. Then enter a portal and search.

Brankoje
18th December 2007, 21:33
i'm sorry, i don't understand that lag place part.. i switch maps, i block for less than a second and then... search? danm. guess i just can't get it..

ok, enough rant, i'll try to ask a question (as if i haven't been doing that already):
if i block, can i search for the change/unchange after some time or do i have to do it immediately? or can i find that modifier without switching maps (equiping/removing luck items)? if i search while switching, do i search during the white screen or when i show up on the map, or the first time i get hit? ok, this was to show the exact state of my brain and thoughts, and it feels as nasty as it looks...

nejb1114
19th December 2007, 05:30
No, what I mean is to lag while going through a portal and search when you're lagging.

z2guardian2
26th December 2007, 08:22
could anyone help on how 2 find d semi g'mode.....

nejb1114
27th December 2007, 04:18
Don't ask for godmode.

Lisa
27th December 2007, 05:35
If nejb1114 says so then I guess you better don't. :x

PotatoDaddy
9th January 2008, 08:13
this might be completely wrong, but do you
a) Use the "find out what accesses this address" and
b) when you see a XXXXXXXX - je XXXXXXXY do you zf flag the original number or the one after the je?

Guiego
20th January 2008, 23:47
I attempt God Mode, and I got a HP Lock...

It doesn't recover, only downs... :P

miniii
21st January 2008, 02:28
You usually only tick things (ZF, PF, SF) when the address is a jump...

PotatoDaddy
21st January 2008, 16:53
thanks miniii

pyro~cow
31st January 2008, 11:49
Okay, I know basic ASM, and I have no problem hacking. I also understand how to work CE/UCEs.

I do however have a problem. Doing almost anything DCes me, I also have another problem.. is there a specific reason we can't use scripts? Would we need to pass a crc check?

Also, I get the whole concept of how to find HP Lock/Godmode. I also get the concept of getting rid of timers (E.G. Reload, Skills, etc). So, I'm working on getting these, but for some reason I can't seem to get kikiuce/spuc3engine to work with Trickster.

zidemizar
6th February 2008, 10:02
i ran into this address that changes between the values of 1 and 257, everytime i hit a critical the value changes to 1. havent been able to find any use for it yet because i cant find the attack address.

YeNightmare
17th April 2008, 08:47
A bump for perhaps one of the most useful threads in this forum. Here, we have actual productive hints and teaching. I lament how today threads are ruled by a bigot who acts like a moderator.

=Jojo=
17th April 2008, 09:50
A bump for perhaps one of the most useful threads in this forum. Here, we have actual productive hints and teaching. I lament how today threads are ruled by a bigot who acts like a moderator.

i do not act like a mod and i never did that. i allways care about trickster section cuz am the reason for it like it or not

and if you got mad cuz i told you 2 search first before posting new threads you need 2 grow up these are the rules around here as far a i know..:bunny:

p.s don't take it 2 personal cuz its not :ponder:

nejb1114
17th April 2008, 15:35
There is a reason why some threads aren't bumped. Being old is one of them. This thread might have outdated information for all we know.

Teh_Mythic
9th May 2008, 03:45
Anyway,is this infomation still useful?
Since i would like to try to search for Godmode.
Im still a leecher @_@ would try to learn ASM/C++

Anyway,on to the point.
How do you "search" HP
By Changing the "Search" Type to "Text"?
then typing "Hp" ?

@__@

nejb1114
10th May 2008, 01:01
Mythic, the information is still useful.
You don't search "HP", you search the value. When we are talking about searching, we mean searching values.

GoldenNewb64
10th May 2008, 18:45
Well I already kno the search the value part but it dosent give you any further instructions on how to do the "God Mode" after doing so. The only thing I've found was nothing but on how to lower the Hp.

nejb1114
12th May 2008, 02:46
Actually, all you need to do is just send fake information to the server about getting hit.

Teh_Mythic
12th May 2008, 17:23
Values?
so if i have 2,000 hp,
i search value for 2,000? @_@?

seferol
13th May 2008, 08:56
Values?
so if i have 2,000 hp,
i search value for 2,000? @_@?

yes.. kind of.

nejb1114
19th May 2008, 07:26
Pretty much, but you also have to try accessing, writing, and finding what points to that certain address.
Also, be aware that you find the client sided value for your HP when you search values like that.

wenddy
19th May 2008, 22:55
I dont like god mode... the game lose all the dificult...
For me, only never loses MP are good, because its save your time and money with MP potions. Now, never loses ur HP make u invencible... no one can kill u...... so, why play the game for be stronger if u actualy dont die?!

Cheats are good 2 when help u dont waste time with a idiot or very very hard quest. I.E. the Drill Quests.

Drilling some items in this game is very bothering... such as the new event of Karu Equips where u need drill 50 Firecrackers, 50 Wind Pendants and 50 Cocos Nucifera's Shell.
I can't even think about it... Dig-Up 150 items... its a BIG WASTE of time. So, for reduce the time waste, u can use the drills hacks.

I've used the Item Detect hack and its very help full, because its prevent u from waste the Drill and waste time with wrong digs. However, I found only 130 items of the 150 necessary, and I have drilled and buy some of this items during 34 hours!

Well... this is my way of good play... I dont know yours...

nejb1114
23rd May 2008, 04:19
Godmode is for people that aren't too lazy to find it and don't want to die because of stupid things.

b2nd
23rd May 2008, 08:12
well,i cant get it to work,i find my hp adresses(3),change all to nop,freeze the first ZF,then my hp changes to 9474192,but when a monster hits me it goes back to normal...
do i nid to put value 0 in eax edx ecx ebx?

i got a problem with godmode,i find 3 adress,all with my hp,i make all nop and ZF[x] [ ],my hp goes to a high number,but when i get hitted ,my hp goes back to normal and takes dmg...
what do i do wrong?

wenddy
29th May 2008, 05:49
A better way of make God Mode is using WPE Editor (Winsocket Packet Editor). Its necessary find a packet of dmg and modify it for "0" or "Miss". So, freeze the packet with a filter and I think it will work.

Well, I will try make it with my MP and with HP, if it functs I will tell u guys.

Kind Regards,

nejb1114
29th May 2008, 09:29
Using WPE could work, but you need a bypass for it.

wenddy
1st June 2008, 00:50
Hello guys, I've searched for the MP and HP adresses and I found 3 of each. So, for choose the correct adresses I restarted the computer and finally I got the only 2 adresses that never change, the adresses that shows the consumption of the HP and MP bars.

Well, unfortunatelly freezes or modify the values of this adresses dont change nothing. So, I try to find the adresses that access the MP and HP, then I made 2 searchs:
1st for MP, luckely I found only one adress. This adress is like 004xxxxx.
2nd for HP, this time I found 4 adresses. But only one starts wich 004, how the result in the MP search.

Continuing the searches, I've tried to find the adresses that access those 004xxxxx of HP and MP.
I've made 2 searchs and got this results:
1st I found 4 adress for each (HP and MP)
2nd I found 6 adress for each (HP and MP)

Comparing the results for MP and HP at the 1st search, 2 adresses appear in both and the other 2 adresses differ in both.

Comparing the results in the 2nd search, the same 2 adresses common in both, MP and HP, at the 1st search appear again and the other 2 adresses that have appeared and differ in both MP and HP have appeared too. But now more 2 differ in MP and HP, giving us 4 adress that differ from MP and HP.

Explaining about the results and the tests that I've made:
-- I got the 2 004xxxxx, one of HP and another of MP, I tried all flags, and only the Sign Flag (SF) give me a change. When I tick SF [x][ ], the HP and the MP bars freezes at the maximum value, but its only a Fake Change, because I continue to lose HP and MP. I tried to make those adress jmp to another one, but its only give me a Fake Change too. --

Hunfff...
Please, someone can help me solve this problem?

DarkIXILaw
9th June 2008, 15:27
lol. Its amazing. It's like almost no hackers play anything but War Rock or they all went into hiding. I mean I know the whole MS hacking thing was a big thing *meep had something to do with that soz ms pplz but vac was too pro to keep to self :D* but dam, no one, and i mean NO ONE hacks MMO's anymore. Its like wtf man lol. I want some unlimited MP >_<; All the really good hackers are probably on some random site no ones ever heard of and they're not sharing it with people, seeing as most games have likely just posted gm's on the normal GZP and GZN kind of sites to infiltrate.

Denshiro
5th July 2008, 09:20
When I first started trying to make my own God Hack, I found 6 addresses that seemed to correspond to my HP. After watching the value for a while I managed to single it down to 4 addresses that correspond to my HP. But, I'm not exactly sure about where to go from here.
I've tried messing with the register, replacing them with code that does nothing (I believe someone said that was 'nop'ing), and just general exploration, but I can't seem to come up with any real results. My only result was that one time my HP turned into something like ~30000/1440 and my HP bars went all of the way off of my screen, but I'm going to assume that was Client Sided and not Server Sided as it went back to normal when I changed maps.
Part of me thinks I'm already on the wrong track since all 4 addresses are mainly "je xxxxxxxx" and nekkron said to 'nop' these, but some of them will change wildly when I take damage and start to heal. If it's not clear, I'm obviously new to this, and I'm not really sure how to react to the values said earlier in the thread since I assume the addresses may have changed since then.

GoldenNewb64
17th July 2008, 19:17
Ha if i knew really how to send fake information to the server. I know that I do have some files from trickster items and ect. ( idk what they are) somewhere on my comp.

Arctics
30th July 2008, 22:17
I just played around with my uce a little bit and I found god mode or at least some poochies made me a total of 10k dmg and i was still alive.^^ (maxhp is around 1k)
But I get a gameguard error after ~60 seconds and after 30 more dc.
Anything i might do wrong?

V-A-N-I
15th August 2008, 19:53
I make anything wrong too :/ what iam doing wrong ?

1:searched Value of my hp... ( got 3 addresses tryed them all )
2:right click , What ''accessess''writes'reads''.
3:i get something like 0........-mov [ecx+0.......] , eax
4:Then I Nop it with ''Replace with code that does nothing ''
5:Then i dont know what to do ... i go to the flags and tick on eax = 0......
6:Then i Freez the address
7: then my hp ingame is 01869574000/7709

and then i game atack a monster ... and an error comes with

Game or Gameguard File Corruptet

what i did wrong ? pls help me

Rache
16th August 2008, 04:08
I make anything wrong too :/ what iam doing wrong ?

1:searched Value of my hp... ( got 3 addresses tryed them all )
2:right click , What ''accessess''writes'reads''.
3:i get something like 0........-mov [ecx+0.......] , eax
4:Then I Nop it with ''Replace with code that does nothing ''
5:Then i dont know what to do ... i go to the flags and tick on eax = 0......
6:Then i Freez the address
7: then my hp ingame is 01869574000/7709

and then i game atack a monster ... and an error comes with

Game or Gameguard File Corruptet

what i did wrong ? pls help me

Because you aren't supposed to do anything with the mov address. That address is just part of the searching.

V-A-N-I
16th August 2008, 11:26
And what i have to do , that it works ?

GoldenNewb64
18th August 2008, 07:06
Okay i just found out to adresses that allowed me to have 99999/99999 HP and it goes down like it is your normal HP but you still die as if your regular HP had ran to 0 but yet before you die it reads something like 89973/99999 I froze the adresses but I dont know what kind of flags ir sahould tick. I really didnt check how the adress was read but still i dont know. I think i got really close but still i dont know. What am I doing wrong? And I could send you the address i found annnd i kinda did this earlier this morning so I dont really remember what I did.

EliteNinjaQ
21st August 2008, 18:17
lol. Its amazing. It's like almost no hackers play anything but War Rock or they all went into hiding. I mean I know the whole MS hacking thing was a big thing *meep had something to do with that soz ms pplz but vac was too pro to keep to self :D* but dam, no one, and i mean NO ONE hacks MMO's anymore. Its like wtf man lol. I want some unlimited MP >_<; All the really good hackers are probably on some random site no ones ever heard of and they're not sharing it with people, seeing as most games have likely just posted gm's on the normal GZP and GZN kind of sites to infiltrate.

HAHA yeah ever hear of the new FPS Combat Arms?( sortta like a rip off of Soldier front) a good hand full or two of war rock hackers moved on to that game, one of them in particular "Harold" hacked the latest Hack Shield and mad a bypass for it 30 min after the game updated. the he spent the day updating the bypass w/ hacks included( wall hack, Chams etc etc the works...
yeah wonder where all the other WarRockers are...:P

GoldenNewb64
23rd August 2008, 03:51
Uhhh this is a trickster forum not a where did all the hackers go chat room if you going to talk about that make a post of a different forum.