Multi Level Pointer - 0 results

Detailed explainations of errors/bugs. cause and fix (if any). also support for your problems here.
Post Reply
MateusBlur
User
User
Posts: 34
Joined: Mon Nov 04, 2013 3:09 pm

Multi Level Pointer - 0 results

Post by MateusBlur »

Hi again

I used your tutorial to find base amo value

and im stucked, all going good to moment when i couldnt find stable value, whats going wrong?
Image

This number of bullets value is strange. Of course work when i froze it but it's create random numbers after shoot. On time it's decrease next time increase - maybe its a reason?
User avatar
Sethioz
Admin
Admin
Posts: 4762
Joined: Fri Jul 27, 2007 5:11 pm
Custom: Gaming YT > https://youtube.com/SethiozEntertainment
Game Hacking YT > https://youtube.com/sethioz
Game Hacks Store > https://sethioz.com/shopz
Location: unknown
Contact:

Re: Multi Level Pointer - 0 results

Post by Sethioz »

bit confused here, if you freeze the value, then it works? if yes, perhaps you're just viewing the value in wrong type. try changing it to float.
if it still shows "random" numbers, but still works, then perhaps it's XORed.

also have you tried the automatic pointer scan? usually it gives good results.
and in case you did not realize, that video is made by PinPoint, not me.
MateusBlur
User
User
Posts: 34
Joined: Mon Nov 04, 2013 3:09 pm

Re: Multi Level Pointer - 0 results

Post by MateusBlur »

Recorded short video, check it what i doing wrong:
PinPoint
Special
Special
Posts: 126
Joined: Wed Dec 03, 2008 6:41 pm

Re: Multi Level Pointer - 0 results

Post by PinPoint »

getting pointers that way will not always work.
If you just want something so you can have inf ammo i made this for you, just paste it into your cheat engine. activate it when in a level for a ton of ammo for current gun, dont need to keep it active unless you want to.

edit: works online but if you keep it active it will lock the camera in place when you die so you wont be able to see yourself when you spawn. so just use a hotkey to activate it, shoot to get ammo, then deactivate it

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>1</ID>
      <Description>"Ammo"</Description>
      <LastState/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
aobscan(Ammo,88 46 08 0F B6 46 0A)
label(return)
registersymbol(Ammo)
Ammo:
db C7 46 08 2D 00 00 00 C7 46 0A 4B 00 00 00 C7 46 0B A2 00 00 00 C7 46 09 E9 00 00 00 90 90 90 90 90 90 90 90 90 90 90
return:
[DISABLE]
Ammo:
db 88 46 08 0F B6 46 0A 35 4B 00 00 00 88 46 0A 0F B6 46 0B 35 A2 00 00 00 88 46 0B 0F B6 46 09 35 E9 00 00 00 88 46 09
unregistersymbol(Ammo)


</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
MateusBlur
User
User
Posts: 34
Joined: Mon Nov 04, 2013 3:09 pm

Re: Multi Level Pointer - 0 results

Post by MateusBlur »

Thank you
your very helpful
but its make me error when i want paste it to Luascript
Image


Tell me what metod you used to find that value, full pointer scan?
I spend on that few hours without results, tried pointer scan too (2hours scan) but in third compare i had 0 matches.
Dont know what doing wrong, make me little solution how do it correctlly
PinPoint
Special
Special
Posts: 126
Joined: Wed Dec 03, 2008 6:41 pm

Re: Multi Level Pointer - 0 results

Post by PinPoint »

why are you trying to paste it into lua?

it is a cheat table entry, copy the code and paste it into your address/cheat list and a script will appear called ammo.

I didn't use pointers. I found out the instruction that wrote to the address and made an AOB script for it where I changed the instruction to give ammo instead of decrement it.
I would usually use AOB scripts over pointers everytime, but there can be situations where pointers are needed/better.

if you do not know how to use AOB scan here is a tutorial on the youtube channel
Post Reply