- Initiateur de la discussion
séméron23
Psychopathe
- Messages
- 1 305
- Score réaction
- 310
- Points
- 290
bonjour comme d'habitude je mebaladé sur mes fichier lua et dans lua/autorun/serveur j'ai ouvert le admin_fuction et je me demander quelle ligne falait t'il modifier pour modifier le message qui s'affiche dans le chat quand une personne et ban ou kick voisi le code :
Code:
--[[--------------------------------------------------------- Name: KickId2 Desc: Allows admins to use the kickid2 command to kick people.
-----------------------------------------------------------]]
local function KickId( player, command, arguments ) if ( !player:IsAdmin() ) then return end local id = arguments[1] local reason = arguments[2] or "Kicked" RunConsoleCommand( "kickid", id, Format( "%s (%s)", reason, player:Nick() ) );
end
concommand.Add( "kickid2", KickId, nil, "", { FCVAR_DONTRECORD } )
--[[--------------------------------------------------------- Name: BanId2 Desc: Allows admins to use the banid2 command to kick people.
-----------------------------------------------------------]]
local function BanID( player, command, arguments ) if ( !player:IsAdmin() ) then return end local length = arguments[1] local id = arguments[2] RunConsoleCommand( "banid", length, id );
end
concommand.Add( "banid2", BanID, nil, "", { FCVAR_DONTRECORD } )