- 0
can someone help me when i turning off the speedhack the unfreeze isn't it working please help me
-
Similar Content
-
- 1 reply
- 939 views
-
Please Help
By X-Line,
- 11 answers
- 2,478 views
-
- 27 replies
- 5,182 views
-
- 1 reply
- 1,109 views
-
- 2 answers
- 1,194 views
-
Question
Lezyi
function MSon()
gg.alert('ON')
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber('1.5554413e-43F;0.40000000596F;1.0F:45', gg.TYPE_FLOAT)
gg.refineNumber('1', gg.TYPE_FLOAT)
local t = gg.getResults(2500, nil, nil, nil, nil, nil, nil, nil, nil)
for i, t in ipairs(t) do
if t.flags == gg.TYPE_FLOAT then
t.value = "4"
t.freeze = true
end
end
gg.addListItems(t)
t = nil
gg.toast('Speed Hack On')
end
function MSoff()
gg.alert('OFF')
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber('1.5554413e-43F;0.40000000596F;4.0F:45', gg.TYPE_FLOAT)
gg.refineNumber('4', gg.TYPE_FLOAT)
local t = gg.getResults(2500, nil, nil, nil, nil, nil, nil, nil, nil)
for i, t in ipairs(t) do
if t.flags == gg.TYPE_FLOAT then
t.value = "1"
t.freeze = false
end
end
gg.removeListItems(t)
t = nil
gg.toast('Speed Hack Off')
end
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now