LUA HELP

anna_pavlova2281

Участник
Автор темы
29
1
Версия SA-MP
  1. 0.3.7 (R1)
И что блять здесь не так?

Lua:
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    sampRegisterChatCommand('pizda', chat)
    wait(-1)
end

function chat()
  lua_thread.create(function()
     for i = 0, 1000 do
        sampSendChat('/gotaxi '..i)
    wait(0)
    end)
end)