Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
sev = require 'lib.samp.events'
act = false
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand("trax", trax)
while true do
wait(0)
end
end
function sev.onSendPlayerSync(data)
if act then
data.animationId = 1666
data.animationFlags = 4356
end
end
function trax()
act = not act
if act then
sampAddChatMessage("on!", -1)
else
sampAddChatMessage("off", -1)
end
end
А, я понял в чем проблема похоже. Это все надо в while true do
local tr = false
function main()
sampRegisterChatCommand("trax", function()
tr = not tr
end)
while true do wait(0)
if tr then
taskPlayAnim(PLAYER_PED, "BIKES_BACK", "BIKES", 9, false, false, false, false, -1)
end
end
end