AaronMarkGG Posted January 8, 2024 Posted January 8, 2024 Can someone help me Example: The process will start here gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("190", gg.TYPE_FLOAT) gg.getResults(1, nil, nil, nil, nil, nil) gg.editAll("414", gg.TYPE_FLOAT) gg.clearResults() --------------End-------------- gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("5900", gg.TYPE_FLOAT) gg.getResults(1, nil, nil, nil, nil, nil) gg.editAll("8000", gg.TYPE_FLOAT) gg.clearResults() The process will stop here then if I click GameGuardian the process will continue gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("300", gg.TYPE_FLOAT) gg.getResults(1, nil, nil, nil, nil, nil) gg.editAll("2400", gg.TYPE_FLOAT) gg.clearResults()
Count_Nosferatu Posted January 8, 2024 Posted January 8, 2024 gg.setVisible(false) -- -- Put Your first process -- while gg.isVisible() == false do if gg.isVisible() == true then break end gg.sleep(100) end gg.setVisible(false) -- -- Put Your second process --
HEROGAMEOfficial Posted January 9, 2024 Posted January 9, 2024 gg.setVisible(false) while not gg.isVisible() do end gg.setVisible(false) gg.searchNumber(1234, false, 4)
Question
AaronMarkGG
Can someone help me
Example:
The process will start here
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber("190", gg.TYPE_FLOAT)
gg.getResults(1, nil, nil, nil, nil, nil)
gg.editAll("414", gg.TYPE_FLOAT)
gg.clearResults()
--------------End--------------
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber("5900", gg.TYPE_FLOAT)
gg.getResults(1, nil, nil, nil, nil, nil)
gg.editAll("8000", gg.TYPE_FLOAT)
gg.clearResults()
The process will stop here then if I click GameGuardian the process will continue
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber("300", gg.TYPE_FLOAT)
gg.getResults(1, nil, nil, nil, nil, nil)
gg.editAll("2400", gg.TYPE_FLOAT)
gg.clearResults()
2 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.