“FIVEM Comandos Exemplo Lua” Respostas de código

FIVEM Comandos Exemplo Lua

Citizen.CreateThread(function() TriggerEvent('chat:addSuggestion', '/test', 'Testing this new command.') end)
RegisterCommand("test", function(source, args, rawCommandString)
    -- Colors can be found here: https://zap-hosting.com/guides/docs/en/fivem_servername_color/
    TriggerEvent('chatMessage', "^2TEST", { 255, 0, 62 }, "Testing this new command.")
end, false)

Zuntie

Exemplo de comandos do FIVEM lua

RegisterCommand('car', function(source, args)
    -- TODO: make a vehicle! fun!
    TriggerEvent('chat:addMessage', {
        args = { 'I wish I could spawn this ' .. (args[1] or 'adder') .. ' but my owner was too lazy. :(' }
    })
end, false)

Zuntie

Respostas semelhantes a “FIVEM Comandos Exemplo Lua”

Perguntas semelhantes a “FIVEM Comandos Exemplo Lua”

Mais respostas relacionadas para “FIVEM Comandos Exemplo Lua” em Lua

Procure respostas de código populares por idioma

Procurar outros idiomas de código