Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
ну, так в чем проблема проверку сделать которая тебе нужна?
самый простой пример.
Lua:
local boolStatus = true;
function main()
// code...
sampRegisterChatCommand('test1', function()
boolStatus = not boolStatus;
end)
while true do
wait(0);
if boolStatus then
sampAddChatMessage('true');
end
end
end
ну, так в чем проблема проверку сделать которая тебе нужна?
самый простой пример.
Lua:
local boolStatus = true;
function main()
// code...
sampRegisterChatCommand('test1', function()
boolStatus = not boolStatus;
end)
while true do
if boolStatus then
sampAddChatMessage('true');
end
end
end
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
for i=0, 1 do
sampAddChatMessage("Ебать ты лох", -1)
i = i + 1
end
sampAddCharMessage("Скрипт выгружается!", -1)
thisScript():unload()
end
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
for i=0, 1 do
sampAddChatMessage("Ебать ты лох", -1)
i = i + 1
end
sampAddCharMessage("Скрипт выгружается!", -1)
thisScript():unload()
end