- Initiateur de la discussion
M
Mehdi2904
Geek suprême
- Messages
- 848
- Score réaction
- 88
- Points
- 145
Salut, j'ai crée un nouvelle commande un peu comme le /annonce /sms ect mais j'aimerais que seul les admin/modo/superadmin puissent l'utilisé
Voici les codes
Merci d'avance,
cdt mehdi
Voici les codes
Code:
local function Admin(ply, args)
if args == "" then
DarkRP.notify(ply, 1, 4, DarkRP.getPhrase("invalid_x", "argument", ""))
return ""
end
local DoSay = function(text)
if text == "" then
DarkRP.notify(ply, 1, 4, DarkRP.getPhrase("invalid_x", "argument", ""))
return
end
for k,v in pairs(player.GetAll()) do
local col = Color(169, 17, 1)
DarkRP.talkToPerson(v, col, "[Admin]" .. " " .. ply:Nick(), Color(169, 17, 1), text, ply)
end
end
return args, DoSay
end
DarkRP.defineChatCommand("annonceadm", Admin, 1.5)
cdt mehdi