Jump to content

Recommended Posts

Posted
  On 7/20/2017 at 4:20 PM, Enyby said:
Expand  

It think you made a typo, it's 5561 actually:

Screenshot_20170722-082448.thumb.png.465a729e458d4b8e55b9ea559030baf1.png

Some request:

1_Can we have a command to edit a certain value in search results?

We have "editAll" command but sometimes it's critical to only edit one value from founded values, cuz others are fake and crash the game, something like this:

[code] [edit] = function: edit /* gg.edit(value number in results,string value, int type) [/code]

example we have 4 value and we want to edit the third value to 1000 we do this then:

 gg.edit(3,1000,gg.TYPE_DWORD) 

 

2_can we have the ability to save a value to saved list? Not just for saving, for adding other addressess based on that address from offsets.

_______________________________________________
added 1 minute later
  On 7/21/2017 at 10:51 PM, congadey said:

about 5561 not 5559

Expand  

Yes, you are right. In "about" it's 5561 not 5599. Thanks for telling.

  • Administrators
Posted
  On 7/22/2017 at 4:07 AM, Backlift said:

It think you made a typo, it's 5561 actually:

Expand  

No. I made rebuild. Build number increased but it is does not matter.

_______________________________________________
added 3 minutes later
  On 7/22/2017 at 4:07 AM, Backlift said:

1_Can we have a command to edit a certain value in search results?

Expand  

Use
 

local tbl = gg.getResults(10)
print(tbl)
local item = tbl[3]
item.value = '123'
gg.setValues({item})

 

  • Administrators
Posted
  On 7/22/2017 at 4:07 AM, Backlift said:

can we have the ability to save a value to saved list? Not just for saving, for adding other addressess based on that address from offsets.

Expand  

Now - no. We have plans about work with saved lists in future.

Posted

I do understand it will be able to run LUA Scripts but is it possible to make it compatible to a game called 'Roblox'?

I have seen the game scripting similar to LUA.

Here is an image:

_3tKWSwuTri_A_zBK5GgyA.png

  • Administrators
Posted

Updated gg table:

  Reveal hidden contents

 

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

Updated gg table:

  Reveal hidden contents

 

Expand  

Finally and official Update, Hope So Further Update Include much More Functions and Features.

  • Administrators
Posted
  On 7/21/2017 at 1:00 PM, Backlift said:

User MAY want to hack only one value , for this instance of the game

Expand  
print(gg.choice({'1', 'cat', 'dog', 'racoon', 'bear'}))
print(gg.choice({'2', 'cat', 'dog', 'racoon', 'bear'}, 3))
print(gg.choice({'3', 'cat', 'dog', 'racoon', 'bear'}, 30))
print(gg.multiChoice({'4', 'cat', 'dog', 'racoon', 'bear'}, {true, false, true}))
print(gg.multiChoice({'5', 'cat', 'dog', 'racoon', 'bear'}))

 

scr_1500880002.jpg

scr_1500880009.jpg

scr_1500880015.jpg

scr_1500880020.jpg

scr_1500880031.jpg

scr_1500880039.jpg

Posted
  On 7/24/2017 at 7:08 AM, Enyby said:

print(gg.choice({'1', 'cat', 'dog', 'racoon', 'bear'}))

print(gg.choice({'2', 'cat', 'dog', 'racoon', 'bear'}, 3))

print(gg.choice({'3', 'cat', 'dog', 'racoon', 'bear'}, 30))

print(gg.multiChoice({'4', 'cat', 'dog', 'racoon', 'bear'}, {true, false, true}))

print(gg.multiChoice({'5', 'cat', 'dog', 'racoon', 'bear'}))

Expand  

That awesome now its looking like we can finally create  more advance and complicated lua scripts

Posted

Any scripts for refining search results?

Sorry I'm still learning English and GG.

Posted

How to remove results using the script?...

I really need an example. Thank you.

Posted
  On 7/24/2017 at 1:09 PM, Aufar_R said:

How to remove results using the script?...

I really need an example. Thank you.

Expand  

you can use gg.clearResults()                              --By using so it clear's the list of searched results

::research::
v = gg.prompt({i='Enter value'}, {i='0'})
gg.searchNumber(v['i'], gg.TYPE_DWORD, true, gg.SIGN_EQUAL, 0, -1)
if gg.getResultCount() == 1 then
   gg.editAll('10000', gg.TYPE_DWORD) 
   gg.alert('Hacking Done!, Enjoy') 
   gg.clearResults()
   os.exit()
   else gg.alert('Too much values found, Go to game and change the value, then open gameguardian window again')
  goto research
   end 

it not a complete example but can work

  • Administrators
Posted
  On 7/24/2017 at 1:09 PM, Aufar_R said:

I really need an example.

Expand  
-- first search
gg.clearResults()
gg.searchNumber ('10', gg.TYPE_DWORD)

-- refine search for existsing results
gg.searchNumber ('10', gg.TYPE_DWORD)

 

Posted
  On 7/24/2017 at 1:54 PM, Enyby said:
-- first search
gg.clearResults()
gg.searchNumber ('10', gg.TYPE_DWORD)

-- refine search for existsing results
gg.searchNumber ('10', gg.TYPE_DWORD)

 

Expand  

now that's an example ?

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.