
Originally Posted by
mcsleaz
7's fish bot uses 3 pointers, tried your pointer, doesn't work with 7's.
Lol have you ever looked at the ini file??
Let me walk you threw it.
[Pointers]
WaterPointer="0x00B4523C+0x144+0xe4+0x70"
LavaPointer="0x00B4523C+0x144+0xe4+0x514"
ChocoPointer="0x00B4523C+0x144+0xe4+0x2c0"
Ok now let me teach you how 7bot works.
0x00B4523C = is the poitner. If You can clearly see it in all 3 water/lava/choco.
Now, You are wonder omg wow just bloody noticed it.
But now you are wondering WTF is all the stuff after it?
Ok now those are called the offset. These offsets are used to figure out were in the memory that the address is stored.
Example
0x00B4523C+0x144+0xe4+0x70
0x00B4523C = Pointer
0x144 = Offset1
0xe4 = Offset2
0x70 = Offset3
Some times memory can have longer offsets but for now for what it does it uses only 3 offsets.
Now that you are still straching your head.
and wondering. What does it do with this address?
It will read that address and it will return a 0 or 1
0 means no fish bite.
1 means fish bite.
So what the program does is scans this address over and over till it = 1 then it reels in.
If you need anymore explanation on pointers and offset
click here.