mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
46 lines
1.2 KiB
Lua
46 lines
1.2 KiB
Lua
|
|
--[[
|
||
|
|
| This file was obtained through the combined efforts
|
||
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
||
|
|
|
|
||
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
||
|
|
|
|
||
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
|
||
|
|
--[[---------------------------------------------------------
|
||
|
|
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 ban 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 } )
|