More new plugin awesomeness
git-svn-id: http://mc-server.googlecode.com/svn/trunk@174 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
27
Plugins/NewTest/kick.lua
Normal file
27
Plugins/NewTest/kick.lua
Normal file
@@ -0,0 +1,27 @@
|
||||
function HandleKickCommand( Split, Player )
|
||||
if( #Split < 2 ) then
|
||||
Player:SendMessage( cChatColor.Green .. "Usage: /kick [Player] <Reason>" )
|
||||
return true
|
||||
end
|
||||
|
||||
local World = Player:GetWorld()
|
||||
local OtherPlayer = World:GetPlayer( Split[2] )
|
||||
if( OtherPlayer == nil ) then
|
||||
Player:SendMessage( cChatColor.Green .. "Could not find player " .. Split[2] )
|
||||
return true
|
||||
end
|
||||
|
||||
local Reason = "You have been kicked"
|
||||
if( #Split > 2 ) then
|
||||
Reason = table.concat(Split, " ", 3)
|
||||
end
|
||||
|
||||
local Server = cRoot:Get():GetServer()
|
||||
LOGINFO( Player:GetName() .. " is kicking " .. OtherPlayer:GetName() .. " ( "..Reason..") " )
|
||||
Server:SendMessage( "Kicking " .. OtherPlayer:GetName() )
|
||||
|
||||
local ClientHandle = OtherPlayer:GetClientHandle()
|
||||
ClientHandle:Kick( Reason )
|
||||
|
||||
return true
|
||||
end
|
||||
Reference in New Issue
Block a user