You have the solution in my old comment.
This would be your script:
if gg.isVisible(true) then
gg.setVisible(false)
end
LionelHax = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '},
{[1] = 'SUSCRIBANCE A MI CANAL PERROS '})
gg.toast('CREATED BY LIONELHAX')
if LionelHax == nil then
gg.alert('CANCELASTE EL SCRIPT ')
os.exit() end
gg.clearResults()
gg.searchNumber(LionelHax[1], gg.TYPE_DWORD)
if gg.getResultsCount() == 0 then
gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS')
gg.toast('CREATED BY LIONELHAX')
os.exit() end
gg.getResults(15)
gg.editAll ( '999999999' , gg.TYPE_DWORD)
Which tells the user, to enter the value of their current money and then edit it to 99999.
What do you do so that the search can be refined?
add this line of code. to give the user time to earn or spend money.
gg.setVisible(false)
while true do
if gg.isVisible() then
gg.setVisible(false)
break
end
gg.sleep(100)
end
then add this line again, so that the user can write the current value of their money.
LionelHax1 = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '},
{[1] = 'SUSCRIBANCE A MI CANAL PERROS '})
gg.toast('CREATED BY LIONELHAX')
if LionelHax1 == nil then
gg.alert('CANCELASTE EL SCRIPT ')
os.exit() end
gg.clearResults()
gg.searchNumber(LionelHax[1], gg.TYPE_DWORD)
if gg.getResultsCount() == 0 then
gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS')
gg.toast('CREATED BY LIONELHAX')
os.exit() end
But I noticed that in this line now it is called LionelHax1 and before it was LionelHax. This way you have your script ordered and without errors.
Now you can add the end of the script that is this.
gg.getResults(15)
gg.editAll ( '999999999' , gg.TYPE_DWORD)
now we unite everything, and add some texts.
if gg.isVisible(true) then
gg.setVisible(false)
end
LionelHax = gg.prompt({[1] = 'ENTER THE CURRENT VALUE OF YOUR MONEY => LIONELHAX '},
{[1] = 'SUSCRIBANCE A MI CANAL PERROS '})
gg.toast('CREATED BY LIONELHAX')
if LionelHax == nil then
gg.alert('CANCELASTE EL SCRIPT ')
os.exit() end
gg.clearResults()
gg.searchNumber(LionelHax[1], gg.TYPE_DWORD)
if gg.getResultsCount() == 0 then
gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS')
gg.toast('CREATED BY LIONELHAX')
os.exit() end
gg.alert(' SPEND OR ACQUIRE COINS AND THEN PRESS THE GAMEGUARDIAN TO REFINE .')
gg.setVisible(false)
while true do
if gg.isVisible() then
gg.setVisible(false)
break
end
gg.sleep(100)
end
LionelHax1 = gg.prompt({[1] = 'INGRESE EL VALOR ACTUAL DE SU ORO '},
{[1] = 'LionelHax'})
gg.toast('CREATED BY LIONELHAX')
if LionelHax1 == nil then
gg.alert('CANCELASTE EL SCRIPT ')
os.exit() end
gg.searchNumber(LionelHax1[1], gg.TYPE_DWORD)
if gg.getResultsCount() == 0 then
gg.alert('THE SEARCH DOES NOT YIELD ANY RESULTS')
gg.toast('CREATED BY LIONELHAX')
os.exit() end
gg.getResults(50)
gg.editAll ( '9999999' , gg.TYPE_DWORD)
gg.alert('THE HACK TO FINISHED SUCCESSFULLY')
os.exit()
wonderful.
Take your time to analyze everything.
Because I will not be back in a long time. and in this forum they will send you to google.
When they send you to google. send them also to look for the word "selfishness".
The current teaching methodology they are incorporating in all courses is called: practice and not study.
Practice: use examples so that the person understands faster.
study: read a bit of s***(?) that only serves to delay the student to learn something.
Old remember Go to the GG help where you can see more examples not very clear. But they will help you understand a little more. ? perro Lol
LionelHax.lua