как писать sampSendChat через команду?

goosik

Участник
Автор темы
60
5
Версия MoonLoader
.027.0-preview
как писать sampSendChat через команду?

1714396034881.png
 
  • Клоун
Реакции: MLycoris

MLycoris

Режим чтения
Проверенный
1,826
1,884
это пиздец
Lua:
function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand('erp', erp)
    while true do wait(0)
    end
end

function erp()
    lua_thread.create(function()
        sampSendChatMessage('рп хуйня')
        wait(3000)
        sampSendChatMessage('рп хуйня')
        wait(3000)
        sampSendChatMessage('рп хуйня')
        wait(3000)
        sampSendChatMessage('рп хуйня')
    end)
end
это тоже пиздец

Lua:
    sampRegisterChatCommand('comanda', function()
        lua_thread.create(function()
            sampSendChat('1')
            wait(1000)
            sampSendChat('123123')
        end)
    end)
 
  • Ха-ха
Реакции: Anti...