local old = gg.getRanges();
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber ('360', gg.TYPE_FLOAT)
gg.searchAddress('1C4',FFF)
v = gg.prompt({i = "[setFov]Select a Number Between 175 and 360"}, {i = "0"})
if v == nil then
gg.clearResults()
gg.toast("FoV Unchanged")
else
gg.getResults (5)
gg.editAll(v["i"], gg.TYPE_FLOAT, false, gg.SIGN_EQUAL,
0, -1)
print("Changed FoV to:" .. v["i"])
gg.clearResults()
end
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.
Question
I-Do-Trolling
So i this code:
local old = gg.getRanges();
gg.setRanges(gg.REGION_CODE_APP)
gg.searchNumber ('360', gg.TYPE_FLOAT)
gg.searchAddress('1C4',FFF)
v = gg.prompt({i = "[setFov]Select a Number Between 175 and 360"}, {i = "0"})
if v == nil then
gg.clearResults()
gg.toast("FoV Unchanged")
else
gg.getResults (5)
gg.editAll(v["i"], gg.TYPE_FLOAT, false, gg.SIGN_EQUAL,
0, -1)
print("Changed FoV to:" .. v["i"])
gg.clearResults()
end
But i wanna to turn it off
Can anyone help me
23 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