Помощь по LUA

W1ll04eison

Известный
Автор темы
330
19
Версия MoonLoader
.026-beta
Как сделать так что бы, если я буду писать /warn 1 id, а в чат выведет: /r SWAT, Nick Name(без "_"), явитесь в гараж.
Или же, если я напишу: /warn 2 id, то в чат выведет: /r PSD, Nick Name(без "_"), явитесь в гараж
 
Решение
Lua:
    sampRegisterChatCommand('warn', function(arg)
        if arg:find('(.+) (.+)') then
            local type, playerId = arg:match('(.+) (.+)')
            if type == '1' or type == '2' then
                name = string.gsub(sampGetPlayerNickname(playerId), '_', ' ')
                if type == '1' then
                    sampSendChat('/r SWAT, ' ..name.. ', явитесь в гараж')
                elseif type == '2' then
                    sampSendChat('/r PSD, ' ..name.. ', явитесь в гараж')
                end
            else
                sampAddChatMessage('/warn [type: 1-2] [playerid]', -1)
            end
        end
    end)

chapo

tg/inst: @moujeek
Модератор
9,075
12,037
не проверял, но должно работать
Lua:
local sampev = require 'lib.samp.events'

function sampev.onSendCommand(text)
    if text:find('/warn (.+) (.+)') then
        local type, playerId = text:match('/warn (.+) (.+)')
        if type == '1' or type == '2' then
            name = string.gsub(sampGetPlayerNickname(playerId), '_', ' ')
            if type == '1' then
                return {'/r SWAT, '..name..', явитесь в гараж!'}
            elseif type == '2' then
                return {'PSD, '..name..', явитесь в гараж'}
            end
        else
            sampAddChatMessage('долбаеб, надо 1 или 2', -1)
        end
    end
end
если не работает, то попробуй это:
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand('warn', function(arg)
        if arg:find('/warn (.+) (.+)') then
            type, playerId = arg:match('/warn (.+) (.+)')
            name = string.gsub(sampGetPlayerNickname(playerId), '_', ' ')
            if type == '1' then
                sampSendChat('/r SWAT, '..name..', явитесь в гараж!')
            elseif type == '2' then
                sampSendChat('PSD, '..name..', явитесь в гараж')
            end
        else
            sampAddChatMessage('/warn [type] [playerid]', -1)
        end
    end)
    while true do
        wait(0)
    end
end
 

W1ll04eison

Известный
Автор темы
330
19
не проверял, но должно работать
Lua:
local sampev = require 'lib.samp.events'

function sampev.onSendCommand(text)
    if text:find('/warn (.+) (.+)') then
        local type, playerId = text:match('/warn (.+) (.+)')
        if type == '1' or type == '2' then
            name = string.gsub(sampGetPlayerNickname(playerId), '_', ' ')
            if type == '1' then
                return {'/r SWAT, '..name..', явитесь в гараж!'}
            elseif type == '2' then
                return {'PSD, '..name..', явитесь в гараж'}
            end
        else
            sampAddChatMessage('долбаеб, надо 1 или 2', -1)
        end
    end
end
если не работает, то попробуй это:
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand('warn', function(arg)
        if arg:find('/warn (.+) (.+)') then
            type, playerId = arg:match('/warn (.+) (.+)')
            name = string.gsub(sampGetPlayerNickname(playerId), '_', ' ')
            if type == '1' then
                sampSendChat('/r SWAT, '..name..', явитесь в гараж!')
            elseif type == '2' then
                sampSendChat('PSD, '..name..', явитесь в гараж')
            end
        else
            sampAddChatMessage('/warn [type] [playerid]', -1)
        end
    end)
    while true do
        wait(0)
    end
end
Ни то, ни то, не работает

В чат просто пишет:
/warn [type] [playerid]

@Chapо
 
Последнее редактирование:

W1ll04eison

Известный
Автор темы
330
19
Lua:
    sampRegisterChatCommand('warn', function(arg)
        if arg:find('(.+) (.+)') then
            local type, playerId = arg:match('(.+) (.+)')
            if type == '1' or type == '2' then
                name = string.gsub(sampGetPlayerNickname(playerId), '_', ' ')
                if type == '1' then
                    sampSendChat('/r SWAT, ' ..name.. ', явитесь в гараж')
                elseif type == '2' then
                    sampSendChat('/r PSD, ' ..name.. ', явитесь в гараж')
                end
            else
                sampAddChatMessage('/warn [type: 1-2] [playerid]', -1)
            end
        end
    end)