Вопрос по ЛУА маленький

Флэмч

Участник
Автор темы
77
1
Можно как-то сделать, чтобы при вводе команды /g не отправлялось /re , а чтобы только в чате появилось?
Lua:
function g(id)
if id == "" then
sampAddChatMessage("Используй /g id", -1)
else
local result = sampIsPlayerConnected(id)
if not result then
sampAddChatMessage("Игрок не в игре.", -1)
else
local nick = sampGetPlayerNickname(id)
lua_thread.create(function() wait(0)
sampAddChatMessage("В слежке.", -1)
sampSendChat(u8'/pm '..id..' Праар.', -1)
sampSendChat(u8"/re ")
end)
end
end
end
 
Решение
Можно как-то сделать, чтобы при вводе команды /g не отправлялось /re , а чтобы только в чате появилось?
Lua:
function g(id)
if id == "" then
sampAddChatMessage("Используй /g id", -1)
else
local result = sampIsPlayerConnected(id)
if not result then
sampAddChatMessage("Игрок не в игре.", -1)
else
local nick = sampGetPlayerNickname(id)
lua_thread.create(function() wait(0)
sampAddChatMessage("В слежке.", -1)
sampSendChat(u8'/pm '..id..' Праар.', -1)
sampSendChat(u8"/re ")
end)
end
end
end
sampSetChatInputText("/re ")
sampSetChatInputEnabled(true)

paulohardy

вы еще постите говно? тогда я иду к вам
Всефорумный модератор
1,956
1,309
Можно как-то сделать, чтобы при вводе команды /g не отправлялось /re , а чтобы только в чате появилось?
Lua:
function g(id)
if id == "" then
sampAddChatMessage("Используй /g id", -1)
else
local result = sampIsPlayerConnected(id)
if not result then
sampAddChatMessage("Игрок не в игре.", -1)
else
local nick = sampGetPlayerNickname(id)
lua_thread.create(function() wait(0)
sampAddChatMessage("В слежке.", -1)
sampSendChat(u8'/pm '..id..' Праар.', -1)
sampSendChat(u8"/re ")
end)
end
end
end
sampSetChatInputText("/re ")
sampSetChatInputEnabled(true)