Jump to content

Recommended Posts

Posted

Hey Enyby, is it possible in the script to do like this? :

Copy the address and put that address in offset calculator and put the offset also.

  • Administrators
Posted

No. But you can get address, add offset and dk some actions directlt, via lua, without offset calculator.

Posted
  On 2/16/2018 at 3:43 PM, Enyby said:

No. But you can get address, add offset and dk some actions directlt, via lua, without offset calculator.

Expand  

Ok. Thanks.

Posted (edited)
  On 2/23/2018 at 4:15 PM, SolarHacks said:

Help
if menu == nil then end goto Mainmenu end

Expand  

It should be like this :

if menu == nil then goto Mainmenu end  

Edited by AjayP
Posted (edited)

::mainmenu::
mainmenu = gg.choice({'1. GodMode','2. Unlimited Ammo','3.Exit'})
if mainmenu == 1 then goto godmode end
if mainmenu == 2 then goto ammo end
if mainmenu == 3 then goto exit end
if mainmenu == nil then goto mainmenu end


::godmode::
go = gg.choice({'1. Click Me For GodMode','2.Back'})
if godmode == 1 then goto godmode1 end
if godmode == 2 then goto mainmenu end


-- godmode1
::godmode1::
 gg.clearResults()
gg.searchNumber('500', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)
gg.searchNumber('500', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)
gg.getResults(100)
gg.editAll('999999', gg.TYPE_FLOAT)
gg.toast('')
goto mainmenu


-- ammo
::ammo::
ammo = gg.choice({'1. CLICK ME FOR UNLIMITED AMMO...','2. Back'})
if ammo == 1 then goto ammo1 end
if ammo == 2 then goto mainmenu end

-- ammo1
::ammo1::
a = gg.prompt({A='Your ammo'},{A='number'}) 
goto ammo2

::ammo2::
gg.clearResults()
gg.searchNumber(a.A..';30~30', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.searchNumber(a.A..';1~100', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.searchNumber(a.A, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.getResults(1000)
goto ammo3

::ammo3::
b = gg.prompt({B='Change Ammo To'},{B='number'}) 
goto ammo4

::ammo4::
gg.editAll(b.B, gg.TYPE_DWORD)
gg.clearResults()
gg.toast('Ammo Hacked Successfully')
goto mainmenu


::exit::
gg.toast('done')
os.exit()

Edited by SolarHacks
Posted
  On 2/23/2018 at 5:15 PM, SolarHacks said:

::godmode::
go = gg.choice({'1. Click Me For GodMode','2.Back'})
if godmode == 1 then goto godmode1 end
if godmode == 2 then goto mainmenu end

Expand  

It should be : 

if go == 1 then ........

Not godmode 

And same for the ammo.

And did u just copy my script? 

Posted

Phew finally got SpeedHack|GodMode|Full Stamina|Arena Hacks Ready but now i gotta work on Unlimited ammo so the problem is my script does what i ask but it finds too many addresses (about 6k)

And if i change all game crash

So is there enyway to have specific search???

Posted

Plz on the next update make sure to  add this functions (gg.saveAll) (gg.selectAll) (gg.changeAddress) its realy help us to modify lot of values and thnx gg

Posted
  On 7/23/2017 at 11:43 PM, Enyby said:

Updated gg table:

  Reveal hidden contents

 

Expand  

Plz on the next update make sure to  add this functions (gg.saveAll) (gg.selectAll) (gg.changeAddress) its realy help us to modify lot of values and thnx gg

Posted
  On 2/25/2018 at 6:06 PM, Enyby said:

You need explain what you mean by this functions.

Expand  

I mean like this function 

clearResults] = function: clearResults /* gg.clearResults() -> nil */ 

or any others 

example:

] = function: saveAll /* gg.saveAll() -> nil */
  • Administrators
Posted

You must describe what these functions should do.

If you need the function clearResults, then call it, and do not ask for another function called saveAll, but does the same.

 

Posted
  On 2/25/2018 at 7:19 PM, Enyby said:

You must describe what these functions should do.

If you need the function clearResults, then call it, and do not ask for another function called saveAll, but does the same.

 

Expand  

Thnx for reply, function gg.saveAll ==>save resultIMG-20180225-WA0008.thumb.jpg.8ed20f10dacdc3da16ee59646db67f8d.jpg in the saved list ,then i want to change address of the saved results using change Adresse IMG-20180225-WA0007.thumb.jpg.2375a0c6cbdbac798f346b2e21669087.jpg

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.