Jump to content
  • 0

I need auto search value count 100 then add +1 +1 +1 pls help me


Question

9 answers to this question

Recommended Posts

  • 0
Posted
10 hours ago, Jatinn said:

I need auto search value count  100 then add +1 +1 +1 pls help me

could you elaborate a bit more what you need? of my understanding you want to count from 0 to 100 in searching for values?

  • 0
Posted

gg.searchNumber('100', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

gg.searchNumber('101', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

gg.searchNumber('102', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

gg.searchNumber('103', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

[added 4 minutes later]

i want auto search and test freeze value 0 or -1

  • 0
Posted
function incrementSearch(startIndex, range)
    local INITIAL = 1
    local INCREMENT = 1
    local SLEEP_TIME = 50 
    for i = INITIAL, range do
    gg.searchNumber(startIndex, gg.TYPE_DWORD)
    startIndex = startIndex + INCREMENT
    end
    gg.sleep(SLEEP_TIME) -- Manipulate yourself
end

--usage
incrementSearch(100,100);

 

  • 0
Posted (edited)
On 11/30/2020 at 1:08 PM, Jatinn said:

gg.searchNumber('100', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

gg.searchNumber('101', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

gg.searchNumber('102', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

gg.searchNumber('103', gg.DWORD, false, gg.SIGN_EQUAL, 0, -1)

[added 4 minutes later]

i want auto search and test freeze value 0 or -1

If you freeze it you gone have a lot of crashes. I usually do like this to find my hacks same as what you want to do:

search = 100 --[giving a value]
for i = 0, 100 do -- [it will loop/add +1 a 100 times]
  for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)]
    gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)]
  end -- [your ending the loop from the therd line]
  gg.getResults(10000) -- [taking the results]
  gg.editAll(-500, gg.TYPE_FLOAT) -- [edit to -500]
  gg.clearResults() -- [deletes the results after beeing edited]
  search = search + 1 -- [add +1 till the loop of 100 is finished]
end -- [ending loop of the second line]

-- [you can also choose to search in a specific region if you want to(for example)]

local old = gg.getRanges();
gg.setRanges(gg.REGION_CODE_APP) -- [set region]
search = 100 -- [giving a value]
for i = 0, 100 do -- [it will loop/add +1 a 100 times]
  for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)]
    gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)]
  end -- [your ending the loop from the fifth line]
  gg.getResults(10000) -- [taking the results]
  gg.editAll(-500, gg.TYPE_FLOAT) -- [edit to -500]
  gg.clearResults() -- [deletes the results after beeing edited]
  search = search + 1 -- [add +1 till the loop of 100 is finished]
end -- [ending loop of the fourth line]
gg.setRanges(old) -- [return to original regions(the ones before you activated the script)]

-- [if you want to freeze]

local old = gg.getRanges();
gg.setRanges(gg.REGION_CODE_APP) -- [set region]
search = 100 -- [giving a value]
for i = 0, 100 do -- [it will loop/add +1 a 100 times]
  for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)]
    gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)]
  end -- [your ending the loop from the therd line]
  a=gg.getResults(10000) -- [taking the results]
  gg.addLustItems(a) -- [adding the results to the save list
  for i, v in ipairs(a) do -- [will take the results]
    a[i].value = '-500' -- [edit all to -500]
    a[i].freeze = true -- freeze the values
    a[i].freezeType = gg.freeze_NORMAL -- [Choose the freeze type]
  end
  gg.clearResults() -- [deletes the results after beeing edited]
  search = search + 1 -- [add +1 till the loop of 100 is finished]
end -- [ending loop of the fourth line]
gg.setRanges(old) -- [return to original regions(the ones before you activated the script)]

-- [try it out :)]

Have fun 😉

Edited by WhoKnowsWho
editing better
  • 0
Posted
12 hours ago, WhoKnowsWho said:

If you freeze it you gone have a lot of crashes. I usually do like this to find my hacks same as what you want to do:


search = 100 --[giving a value]
for i = 0, 100 do -- [it will loop/add +1 a 100 times]
  for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)]
    gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)]
  end -- [your ending the loop from the therd line]
  gg.getResults(10000) -- [taking the results]
  gg.editAll(-500, gg.TYPE_FLOAT) -- [edit to -500]
  gg.clearResults() -- [deletes the results after beeing edited]
  search = search + 1 -- [add +1 till the loop of 100 is finished]
end -- [ending loop of the second line]

-- [you can also choose to search in a specific region if you want to(for example)]

local old = gg.getRanges();
gg.setRanges(gg.REGION_CODE_APP) -- [set region]
search = 100 -- [giving a value]
for i = 0, 100 do -- [it will loop/add +1 a 100 times]
  for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)]
    gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)]
  end -- [your ending the loop from the fifth line]
  gg.getResults(10000) -- [taking the results]
  gg.editAll(-500, gg.TYPE_FLOAT) -- [edit to -500]
  gg.clearResults() -- [deletes the results after beeing edited]
  search = search + 1 -- [add +1 till the loop of 100 is finished]
end -- [ending loop of the fourth line]
gg.setRanges(old) -- [return to original regions(the ones before you activated the script)]

-- [if you want to freeze]

local old = gg.getRanges();
gg.setRanges(gg.REGION_CODE_APP) -- [set region]
search = 100 -- [giving a value]
for i = 0, 100 do -- [it will loop/add +1 a 100 times]
  for i = 1, 3 do -- [it will loop/research the value 3 times (will minimize crashes in case you look in Ca)]
    gg.searchNumber(search, gg.TYPE_FLOAT) -- [your searching the value 100 in float(can choose any type)]
  end -- [your ending the loop from the therd line]
  a=gg.getResults(10000) -- [taking the results]
  gg.addLustItems(a) -- [adding the results to the save list
  for i, v in ipairs(a) do -- [will take the results]
    a[i].value = '-500' -- [edit all to -500]
    a[i].freeze = true -- freeze the values
    a[i].freezeType = gg.freeze_NORMAL -- [Choose the freeze type]
  end
  gg.clearResults() -- [deletes the results after beeing edited]
  search = search + 1 -- [add +1 till the loop of 100 is finished]
end -- [ending loop of the fourth line]
gg.setRanges(old) -- [return to original regions(the ones before you activated the script)]

-- [try it out :)]

Have fun 😉

brother, ur coding knowledge super. plz try to make some auto value finder & editor. 

  • 0
Posted
2 minutes ago, nio04 said:

brother, ur coding knowledge super. plz try to make some auto value finder & editor. 

i had a old one on my old account, but it was outdated and i was at level 0 trying to learn how to script here is the link to the old account(dunno why but dont have acces to it anymore) :

Auto Hack Finder (for any game/Values only) (#53e22u90)

I'm not sure now how it still works. its years ago but i could perhaps think about making a new one and better.

  • 0
Posted
16 minutes ago, nio04 said:

brother, ur coding knowledge super. plz try to make some auto value finder & editor. 

For coding knowledge i do advice you talk with @ItsSC since he is more familiar with that subject. I only know my ways in basics but don't ask to me for more advanced stuff. Which game are you trying to use it on?

  • 0
Posted
21 hours ago, WhoKnowsWho said:

For coding knowledge i do advice you talk with @ItsSC since he is more familiar with that subject. I only know my ways in basics but don't ask to me for more advanced stuff. Which game are you trying to use it on?

call of duty mobile

[added 2 minutes later]
21 hours ago, WhoKnowsWho said:

i had a old one on my old account, but it was outdated and i was at level 0 trying to learn how to script here is the link to the old account(dunno why but dont have acces to it anymore) :

Auto Hack Finder (for any game/Values only) (#53e22u90)

I'm not sure now how it still works. its years ago but i could perhaps think about making a new one and better.

ok. got the file... trying now

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.