- 23
- 0
- Версия MoonLoader
- Другое
Не запускает скрипт сразу при заходе в игру, только есть быть в игре и поменять ту же активацию то заработает, что делать? как пофиксить?
lua invis:
local hook = require 'lib.samp.events'
local state1 = false
script_author("vk.com/n.astafev15")
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then
return
end
if isSampLoaded() then
wait(1500)
sampAddChatMessage("[Invis] Инвиз успешно загружен", -1)
sampAddChatMessage("[Invis] Автор : FIX by Matteo!", -1)
end
while not isSampAvailable() do wait(1500) end
sampRegisterChatCommand("inviss", invis)
while true do
wait(0)
if state1 then
if testCheat("X") then
state1 = false
wait(600)
state1 = true
end
end
end
end