summaryrefslogblamecommitdiffstats
path: root/MCServer/Plugins/Core/kick.lua
blob: 1bc2ab1286453f305a88985a9630b25d6b6cbd7c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                           
 
                             
                                                                       

                           
 
                                             

                                                      
           
 
                                                          
                                                                                  


                   
 
   
function HandleKickCommand( Split, Player )

	if( #Split < 2 ) then
		SendMessage( Player, "Usage: /kick [Player] <Reason>" )
		return true
	end

	local Reason = "You have been kicked"
	if ( #Split > 2 ) then
		Reason = table.concat( Split, " ", 3 )
	end

	if( KickPlayer( Split[2], Reason ) == false ) then
		SendMessageFailure( Player, "Could not find player " .. Split[2] )
	end

	return true

end