Привет. На сервере есть команда /su (id) (stars) (reason), например: /su 1 3 test. Сейчас при вводе команды и параметров либо ничего не происходит, либо скрипт уходит в ошибку.
Как сделать что бы оно работало?
p.s извиняюсь за такое быдло описание и код)
Как сделать что бы оно работало?
p.s извиняюсь за такое быдло описание и код)
Lua:
function cmdSu(id, stars, reason)
lua_thread.create(function()
sampSendChat(string.format("/su %d %d %s", id, stars, reason))
print(string.format("/su %d %d %s", id, stars, reason))
-----------------------------------------------
--sampSendChat(string.format("/su %d %d %s") id, stars, reason)
--print(string.format("/su %d %d %s") id, stars, reason)
----------------------
--sampSendChat("/su ", id, stars, reason)
--sampSendChat(string.format("/su " .. '%id' .. stars .. reason))
--print(string.format("/su " .. '%id' .. stars .. reason))
wait(1000)
sampSendChat("текст")
end)
end
Код:
[ML] (error) Police Helper | Remake: ...Scratchy\Desktop\GTA SA LUA\moonloader\Police_Helper.lua:142: bad argument #2 to 'format' (number expected, got nil)
stack traceback:
[C]: in function 'format'
...Scratchy\Desktop\GTA SA LUA\moonloader\Police_Helper.lua:142: in function <...Scratchy\Desktop\GTA SA LUA\moonloader\Police_Helper.lua:141>
stack traceback:
[C]: in function 'create'
...Scratchy\Desktop\GTA SA LUA\moonloader\Police_Helper.lua:141: in function <...Scratchy\Desktop\GTA SA LUA\moonloader\Police_Helper.lua:140>
[ML] (error) Police Helper | Remake: Script died due to an error. (162417C4)
Последнее редактирование: