- 119
- 34
как сделать активацию автоматической?
local memory = require 'memory'
local jumpState = false
function main()
while true do wait(0)
if testCheat('megajumpdesu') then
jumpState = not jumpState
if jumpState then
memory.setint8(0x969161, 1)
printStringNow('~g~megajump '..tostring(jumpState), 1337)
elseif not jumpState then
memory.setint8(0x969161, 0)
printStringNow('~g~megajump '..tostring(jumpState), 1337)
end
end
end
end
local memory = require 'memory'
local jumpState = false
function main()
while true do wait(0)
if testCheat('megajumpdesu') then
jumpState = not jumpState
if jumpState then
memory.setint8(0x969161, 1)
printStringNow('~g~megajump '..tostring(jumpState), 1337)
elseif not jumpState then
memory.setint8(0x969161, 0)
printStringNow('~g~megajump '..tostring(jumpState), 1337)
end
end
end
end