..... .... ... .. . ?Mister.Plop a écrit :J'ai tenté de faire un truc
j'ai raté
Y'avait plus de canal de chat
j'me suis dit qu'il fallait pas que j'y retouche.
The following code should be placed in a serverside file in a module:
Add the following code inside your serverside file:
Code : Tout sélectionner
local function anonymeChat(ply, args)
if args == "" then return "" end
for _, target in pairs(player.GetHumans()) do
if IsValid(target) then
DarkRP.talkToPerson(target, Color(255,255,255,255), "[Ano] Deep Throat : ", Color(5,250,250,255), args, ply)
end
end
DarkRP.log(ply:Name().." a dit anonymement : "..args,Color(255,255,255,255))
end
DarkRP.defineChatCommand("ano", anonymeChat)
Code : Tout sélectionner
if SERVER then
AddCSLuaFile()
end
DarkRP.declareChatCommand{
command = "ano",
description = "Parlez anonymement",
delay = 5
}
DarkRP.chatCommandAlias("ano","anonyme")