Jump to content

Tell me use command gg.prompt


Recommended Posts

2 hours ago, NewbieSquadArk said:

Plz show command for action edit all in type dword with gg.promp plz enyby

 

gg.searchNumber(' Paste Your Value For Scan Hacks ', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.getResults(1000)
gg.editAll('edit the value you want', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)
gg.clearResults()

 

I hope this helps you

Link to comment
Share on other sites

local val = gg.prompt({[1] = 'input value'},
{[1] = '0'})

if val[1] == nil then
	print('cancel, please input value')
end

gg.searchNumber('1', gg.TYPE_DWORD,false,gg.SIGN_EQUAL, 0, -1)
gg.getResults(100)
gg.editAll(val[1],gg.TYPE_DWORD) 

You can improve code above as you want

Link to comment
Share on other sites

22 hours ago, Krojzanovic said:

gg.searchNumber(' Paste Your Value For Scan Hacks ', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
gg.getResults(1000)
gg.editAll('edit the value you want', gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1)
gg.clearResults()

 

I hope this helps you

ty so much 

_______________________________________________
added 0 minutes later
21 hours ago, bukandewa said:

local val = gg.prompt({[1] = 'input value'},
{[1] = '0'})

if val[1] == nil then
	print('cancel, please input value')
end

gg.searchNumber('1', gg.TYPE_DWORD,false,gg.SIGN_EQUAL, 0, -1)
gg.getResults(100)
gg.editAll(val[1],gg.TYPE_DWORD) 

You can improve code above as you want

ty so much

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.