Page 13 of 49

Re: Simple Bot 1.3(With source)

Posted: Tue Nov 16, 2010 10:15 am
by weddings
thanks for the upate bro. anyway is there a bug in loading the settings?

Re: Simple Bot 1.3(With source)

Posted: Tue Nov 16, 2010 3:17 pm
by XkelvinchiaX
V97 Super Tubi address : 00ACF7F2 and 00499CE7 and 00499CAF

try replace to the dll simple bot 1.3

Re: Simple Bot 1.3(With source)

Posted: Tue Nov 16, 2010 5:57 pm
by hongxd
i cant use it ....i am using windows 7 and wad does the bot nd to be opened with?

Re: Simple Bot 1.3(With source)

Posted: Wed Nov 17, 2010 4:00 pm
by ShiunYean
inject it into MapleStory.exe

Re: Simple Bot 1.3(With source)

Posted: Thu Nov 18, 2010 8:23 am
by entei_45
does this still work??

Re: Simple Bot 1.3(With source)

Posted: Thu Nov 18, 2010 9:00 am
by justcool91
XkelvinchiaX wrote:V97 Super Tubi address : 00ACF7F2 and 00499CE7 and 00499CAF

try replace to the dll simple bot 1.3

how to open the dll and edit it???ty ^^

Re: Simple Bot 1.3(With source)

Posted: Thu Nov 18, 2010 9:31 am
by garykhx
how to use it??
its a dll file. got any injector suggested?

Re: Simple Bot 1.3(With source)

Posted: Thu Nov 18, 2010 6:20 pm
by xiangloong
garykhx wrote:how to use it??
its a dll file. got any injector suggested?
winject or kitterz injector

Re: Simple Bot 1.3(With source)

Posted: Fri Nov 19, 2010 2:22 pm
by New|Life
Hello Nerra, i have something to ask about this
*(unsigned short*)0x00B33DAC = 0x9090;
This is taken from your guide. What do both asterisks in *(unsigned short*) mean? Mind explain the syntax invloved?
If i want to change the value of an address through pointer dereferencing, and OFFSET IS INVOLVED, how can it be done?
Example:
[enable]
11223344:
90 90

[disable]
11223344:
75 36

unsigned long 0x11223344 = 0x3675; // Value when hack is disabled
unsigned long* [0x77889900]+87F = 0x11223344; // 0x77889900 is the pointer of the address with offset 87F
*[0x77889900]+87F = 0x9090; //Value when hack is enabled
I know the syntax are wrong, can you give me an example with offset involved? :)

Re: Simple Bot 1.3(With source)

Posted: Fri Nov 19, 2010 5:39 pm
by Nerrazzuri
New|Life wrote:Hello Nerra, i have something to ask about this
*(unsigned short*)0x00B33DAC = 0x9090;
This is taken from your guide. What do both asterisks in *(unsigned short*) mean? Mind explain the syntax invloved?
If i want to change the value of an address through pointer dereferencing, and OFFSET IS INVOLVED, how can it be done?
Example:
[enable]
11223344:
90 90

[disable]
11223344:
75 36

unsigned long 0x11223344 = 0x3675; // Value when hack is disabled
unsigned long* [0x77889900]+87F = 0x11223344; // 0x77889900 is the pointer of the address with offset 87F
*[0x77889900]+87F = 0x9090; //Value when hack is enabled
I know the syntax are wrong, can you give me an example with offset involved? :)
You've been asking stuff from EliteHack here. I prefer you ask there. But I will answer you the last time.
the *(unsigned short*) means pointer dereference an unsigned short value. Unsigned short a word, which mean 16 bits. You don't need to write something like

Code: Select all

unsigned long* [0x77889900]+87F = 0x11223344;
if you are to read a pointer of a certain value, do this.

Code: Select all

*(unsigned long*)(*(unsigned long*)0x77889900 + 87F);
for the same you have to know what value shows when you use the above function. so to alter it, change the value for that pointer.