- 2
- 0
- Версия MoonLoader
- .026-beta
Выручайте: скрипт начинает работать сразу же после запуска игры, не реагирует на чит код. Его никак не деактивировать, он работает все время, помогите ньюфагу
Lua:
require "moonloader"
local ev = require("samp.events")
local chitkode = "rusik"
local rusik1 = false
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0)
if not sampIsDialogActive() and not sampIsChatInputActive() then
setVirtualKeyDown(18, true)
wait(50)
setVirtualKeyDown(18, false)
wait (0)
setVirtualKeyDown(13, true)
wait(50)
setVirtualKeyDown(13, false)
wait (0)
if testCheat(chitkode) then
rusik()
end
end
end
end
function ev.onSendPlayerSync(playerId)
if rusik1 then
if _ then
local x1, y1, z1 = getCharCoordinates(PLAYER_PED)
local x2, y2, z2 = getCharCoordinates(fp)
if getDistanceBetweenCoords2d(x1, y1, x2, y2) < 10 then
return false
end
end
end
end
function rusik()
rusik1 = not rusik1
if rusik1 then
printStyledString("~n~~n~~n~~n~~n~~n~~n~~n~~w~Lovlya - ~g~aktivna", 900, 2)
else
printStyledString("~n~~n~~n~~n~~n~~n~~n~~n~~w~Lovlya - ~r~neaktivna", 900, 2)
end
end