| View previous topic :: View next topic |
| Author |
Message |
flyboy100 Newbie cheater
Reputation: 0
Joined: 25 Nov 2007 Posts: 21
|
Posted: Sun Dec 02, 2007 10:28 pm Post subject: Totally lost |
|
|
Hey all, i just got Cheat Engine so i can hack maple story. I fire up the tutorial, barely make it too step seven having no idea what the hell i'm doing, and i fail like 7 times...does anybody know what i need to do to get past step seven? I've followed everything to the letter (of course, without understanding what i'm doing because the damned tutorial won't explain it) and i just can't get past it. Can somebody help please? And better yet, explain the things i'm supposed to know by that step? thanks alot in advance
P.S. Very sorry to the creator of the tutorial, who will probably read this. No offense to you, I probably insulted you there. |
|
| Back to top |
|
 |
Azure How do I cheat?
Reputation: 0
Joined: 02 Dec 2007 Posts: 8
|
Posted: Sun Dec 02, 2007 10:29 pm Post subject: |
|
|
| Well..Let me just say that MapleStory is not worth hacking in my opinion. |
|
| Back to top |
|
 |
hackerkts Expert Cheater
Reputation: 0
Joined: 21 Jan 2006 Posts: 160 Location: Singapore
|
Posted: Sun Dec 02, 2007 10:35 pm Post subject: |
|
|
It can't help you much by just completing the Cheat Engine Tutorial, because it only thought you all the basic.. Just like before you start running, you will need to learn how to walk.. CE just teaches people new-born baby how to walk.
For MapleStory, you still need to learn AA. _________________
| Quote: | | "Give a man a fish and he will eat for a day. Teach a man to fish and he will eat for the rest of his life." |
Read it, learn it and love it! |
|
| Back to top |
|
 |
benlue Moderator
Reputation: 0
Joined: 09 Oct 2006 Posts: 2142
|
Posted: Mon Dec 03, 2007 4:34 am Post subject: |
|
|
To be able to hack MapleStory you will need to complete the whole CheatEngine tutorial to comprehend the basics of cheatengine.
If you do need help on completing it, just go to "Cheatengine Tutorial" section which will be very helpful in completing the tutorial.
Now onto actually hacking maplestory. You can get an Undetected Cheatengine which is basically a cheatengine with undetected strings which of course makes it undetected by Maplestory's anit-cheat(GameGuard). Handy aye? Now you should be able to hack maplestory since you have completed the cheatengine tutorial. |
|
| Back to top |
|
 |
flyboy100 Newbie cheater
Reputation: 0
Joined: 25 Nov 2007 Posts: 21
|
Posted: Mon Dec 03, 2007 5:08 pm Post subject: |
|
|
| hackerkts wrote: | It can't help you much by just completing the Cheat Engine Tutorial, because it only thought you all the basic.. Just like before you start running, you will need to learn how to walk.. CE just teaches people new-born baby how to walk.
For MapleStory, you still need to learn AA. |
And where can i learn AA?
thanks for the other replies. |
|
| Back to top |
|
 |
Azure How do I cheat?
Reputation: 0
Joined: 02 Dec 2007 Posts: 8
|
Posted: Mon Dec 03, 2007 7:44 pm Post subject: |
|
|
| I believe AA is auto assembly, you learn it in university programming course..or was that assembly language..?eh. |
|
| Back to top |
|
 |
Thlump Grandmaster Cheater
Reputation: 0
Joined: 26 Aug 2007 Posts: 964 Location: 206.51.226.121
|
Posted: Mon Dec 03, 2007 9:29 pm Post subject: |
|
|
| Azure wrote: | | I believe AA is auto assembly, you learn it in university programming course..or was that assembly language..?eh. |
AA=For CE only I think.
Assembly language=for everything _________________
| Symbol wrote: | LOL!
Then its not a UCE, its UWF. (Undetected Windows Form. WITH BUTTONS! ) |
|
|
| Back to top |
|
 |
flyboy100 Newbie cheater
Reputation: 0
Joined: 25 Nov 2007 Posts: 21
|
Posted: Mon Dec 03, 2007 9:31 pm Post subject: |
|
|
| Thlump wrote: | | Azure wrote: | | I believe AA is auto assembly, you learn it in university programming course..or was that assembly language..?eh. |
AA=For CE only I think.
Assembly language=for everything |
Still, how do i learn AA then? |
|
| Back to top |
|
 |
hackerkts Expert Cheater
Reputation: 0
Joined: 21 Jan 2006 Posts: 160 Location: Singapore
|
Posted: Mon Dec 03, 2007 10:30 pm Post subject: |
|
|
AA = Auto Assembler
ASM = Assembly
This is the tutorial category where you can learn AA, http://forum.cheatengine.org/viewforum.php?f=15 _________________
| Quote: | | "Give a man a fish and he will eat for a day. Teach a man to fish and he will eat for the rest of his life." |
Read it, learn it and love it! |
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8588 Location: 127.0.0.1
|
Posted: Mon Dec 03, 2007 10:30 pm Post subject: |
|
|
Using the auto assembler in CE requires some knowledge of assembly to know what you are doing when you write a script. As for how to use the auto assembler itself:
| Quote: | Auto assemble allows you to write assembler code at different locations using a script. It can be found in the memoryview part of cheat engine under extra.
There are 3 special commands you can give it, ALLOC , LABEL and FULLACCESS. With LABEL you can give a address a name by declaring it before you use it. ALLOC is basicly the same as LABEL but allocates some memory for you.
Usage:
LABEL(labelname) //Enables the word labelname to be used as a address
ALLOC(allocname,sizeinbytes) //same as label, but allocates the memory it points to itself
DEALLOC(allocname) //Deallocates a block of memory allocated with alloc. It always gets executed last, no matter where it is positioned in the code, and only actually frees the memory when all allocations have been freed. only usable in a script designed as cheattable. (e.g used for the disable cheat)
FULLACCESS(address,size) //makes a memory region at the specified address and at least "size" bytes readable, writable and executable
REGISTERSYMBOL(symboname) //adds the symbol to the userdefined symbol list so cheattables and the memory browser can use that name instead of a address (The symbol has to be declared in the script when using it)
UNREGISTERSYMBOL(symbolname) //removes the symbol from the userdefined symbol list. It won't give a error if it isn't found
DEFINE(name,whatever) //Will replace all tokens with the specified name with the text of whatever
INCLUDE(filename) //includes another auto assembler file at that spot
LOADBINARY(address,filename) //will load a binary file at the specified address
Basic Example:
00451029:
jmp 00410000
nop
nop
nop
00410000:
mov [00580120],esi
mov [esi+80],ebx
xor eax,eax
jmp 00451031
Example using LABEL:
label(mylabel)
00451029:
jmp 00410000
nop
nop
nop
mylabel:
00410000:
mov [00580120],esi
mov [esi+80],ebx
xor eax,eax
jmp mylabel
Example using ALLOC:
alloc(memloc1,4)
00451029:
jmp 00410000
nop
nop
nop
00410000:
mov [alloc1],esi
mov [esi+80],ebx
xor eax,eax
jmp 00451031
Example using ALLOC and LABEL
alloc(alloc1,4)
label(mylabel)
00451029:
jmp 00410000
nop
nop
nop
mylabel:
00410000:
mov [alloc1],esi
mov [esi+80],ebx
xor eax,eax
jmp mylabel
Example using FULLACCESS
FULLACCESS(00400800,4) //00400800 is usually read only non executable data, this makes it writable and executable
00451029:
jmp 00410000
nop
nop
nop
00410000:
mov [00400800],esi
mov [esi+80],ebx
xor eax,eax
jmp 00451031
Example using DEFINE
DEFINE(clear_eax,xor eax,eax)
00400500:
clear_eax |
Taken from the help file that comes with Cheat Engine.
You can access the auto assembler from the main CE window using the hotkey CTRL+ALT+A
Or through the memory editor in the tools menu. _________________
- Retired. |
|
| Back to top |
|
 |
Mechaaa Cheater
Reputation: 0
Joined: 24 Oct 2007 Posts: 37
|
Posted: Tue Dec 04, 2007 10:26 am Post subject: |
|
|
there are post with tutorials to past CE Tutorial Step 7
Anyway.. if u finish the tutorial that will not say that u can hack mapplestory...
the Tut of CE its For Know the Basics Functions of CE.. Like Search Addy,Search Pointer,Code Injection Etc.. |
|
| Back to top |
|
 |
flyboy100 Newbie cheater
Reputation: 0
Joined: 25 Nov 2007 Posts: 21
|
Posted: Sat Dec 08, 2007 11:04 pm Post subject: |
|
|
| ok, so i finished the tutorial, and of course didn't learn much. i'm gonna try and see to learn up AA a bit. But i still know i'm gonna need a UCE, which from what i've seen is out of site for my league. But, whatever, i guess. worth a shot. (see, i wanna hack Maple Story that bad, cause yes, i have no life) |
|
| Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8588 Location: 127.0.0.1
|
Posted: Sun Dec 09, 2007 1:12 am Post subject: |
|
|
| flyboy100 wrote: | | ok, so i finished the tutorial, and of course didn't learn much. i'm gonna try and see to learn up AA a bit. But i still know i'm gonna need a UCE, which from what i've seen is out of site for my league. But, whatever, i guess. worth a shot. (see, i wanna hack Maple Story that bad, cause yes, i have no life) |
Didn't learn much? Did you actually do the tutorial yourself? Or did you follow a tutorial that does it for you? If you followed a tutorial, you probably didn't learn much because you didn't take the time to understand what it was explaining and just went for the end result. _________________
- Retired. |
|
| Back to top |
|
 |
hackerkts Expert Cheater
Reputation: 0
Joined: 21 Jan 2006 Posts: 160 Location: Singapore
|
Posted: Sun Dec 09, 2007 1:22 am Post subject: |
|
|
| flyboy100 wrote: | | ok, so i finished the tutorial, and of course didn't learn much. i'm gonna try and see to learn up AA a bit. But i still know i'm gonna need a UCE, which from what i've seen is out of site for my league. But, whatever, i guess. worth a shot. (see, i wanna hack Maple Story that bad, cause yes, i have no life) |
You'll require practice more.. By the way, by just reading you can't really understand it unless you try the AA script yourself. _________________
| Quote: | | "Give a man a fish and he will eat for a day. Teach a man to fish and he will eat for the rest of his life." |
Read it, learn it and love it! |
|
| Back to top |
|
 |
Devilizer Master Cheater
Reputation: 0
Joined: 22 Jun 2007 Posts: 451
|
Posted: Mon Dec 10, 2007 6:46 pm Post subject: |
|
|
You still need more..
Know how to bypass GameGuard and make UCEs(notreally..) |
|
| Back to top |
|
 |
|