Jump to content
  • 0

help me please lua


marken

Question

gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_ANONYMOUS | gg.REGION_BAD)
gg.processResume()
gg.searchNumber('523533590', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil)
gg.editAll('523533591', gg.TYPE_DWORD)

 

 

how do i repeat this process to an infinite

like gg.repeatAll 100x like that im a noob

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

1 hour ago, marken said:

gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_ANONYMOUS | gg.REGION_BAD)
gg.processResume()
gg.searchNumber('523533590', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil)
gg.editAll('523533591', gg.TYPE_DWORD)

 

 

how do i repeat this process to an infinite

like gg.repeatAll 100x like that im a noob

Very basic Infinite repeat (will run till interrupt)

::START::

function infinite()

-- insert your code here e.g

gg.searchNumber('523533590',gg.TYPE_DWORD)

end

infinite() -- call your function

goto START --repeats till interrupt 

 

 

Link to comment
Share on other sites

2 hours ago, marken said:

gg.setRanges(gg.REGION_C_ALLOC | gg.REGION_ANONYMOUS | gg.REGION_BAD)
gg.processResume()
gg.searchNumber('523533590', gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
revert = gg.getResults(100, nil, nil, nil, nil, nil, nil, nil, nil)
gg.editAll('523533591', gg.TYPE_DWORD)

 

 

how do i repeat this process to an infinite

like gg.repeatAll 100x like that im a noob

You can use 'while' or 'repeat until'

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.