Re: Simple Bot 1.3(With source)
Posted: Tue Nov 16, 2010 10:15 am
thanks for the upate bro. anyway is there a bug in loading the settings?
The community that will never stop discussing!
https://xemectrum.guyz92.men/
XkelvinchiaX wrote:V97 Super Tubi address : 00ACF7F2 and 00499CE7 and 00499CAF
try replace to the dll simple bot 1.3
winject or kitterz injectorgarykhx wrote:how to use it??
its a dll file. got any injector suggested?
This is taken from your guide. What do both asterisks in *(unsigned short*) mean? Mind explain the syntax invloved?*(unsigned short*)0x00B33DAC = 0x9090;
I know the syntax are wrong, can you give me an example with offset involved?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
You've been asking stuff from EliteHack here. I prefer you ask there. But I will answer you the last time.New|Life wrote:Hello Nerra, i have something to ask about thisThis is taken from your guide. What do both asterisks in *(unsigned short*) mean? Mind explain the syntax invloved?*(unsigned short*)0x00B33DAC = 0x9090;
If i want to change the value of an address through pointer dereferencing, and OFFSET IS INVOLVED, how can it be done?I know the syntax are wrong, can you give me an example with offset involved?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
Code: Select all
unsigned long* [0x77889900]+87F = 0x11223344;
Code: Select all
*(unsigned long*)(*(unsigned long*)0x77889900 + 87F);