mirror of
https://old.git.ood.ovh/flambyte/hactanightserv.git
synced 2025-04-28 17:25:12 +02:00
14 lines
No EOL
510 B
Lua
14 lines
No EOL
510 B
Lua
-- (Coté serveur script)
|
|
-- Enregistrer une commande qui s'appelle 'ping'.
|
|
RegisterCommand(Config.commandName, function(source, args, rawCommand)
|
|
if (source > 0) then
|
|
local PlayerName = GetPlayerName(source)
|
|
else
|
|
local PlayerPedID = GetPlayerName()
|
|
end
|
|
local index = math.random(1, #(Config.insult_list))
|
|
-- le resultat (en utilisant le thème) https://i.imgur.com/TaCnG09.png
|
|
TriggerClientEvent("chat:addMessage", -1, {
|
|
args,
|
|
|
|
})) |