скрипт на замену чатов РП с НРП

YarmaK

Известный
Автор темы
679
246
типа я пишу /f 123 - серверу отправит /fb 123
пишу /fb 123 серву отправит /f 123
так же само с чатом /u
 
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand('b', function(text) if #text>=1 then sampSendChat('/fb '..text) end end)
    sampRegisterChatCommand('fb', function(text) if #text>=1 then sampSendChat('/b '..text) end end)
    sampRegisterChatCommand('u', function(text) if #text>=1 then sampSendChat('/ub '..text) end end)
    sampRegisterChatCommand('ub', function(text) if #text>=1 then sampSendChat('/u '..text) end end)
    while true do
        wait(-1)
    end
end