summaryrefslogtreecommitdiffstats
path: root/Plugins/NewTest/kick.lua
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-26 23:44:37 +0100
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-01-26 23:44:37 +0100
commit45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf (patch)
treeea33c19161f5885896c21937204c21afaeba5eb9 /Plugins/NewTest/kick.lua
parentNo longer hard coded Lua files in new plugin system (diff)
downloadcuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.gz
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.bz2
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.lz
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.xz
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.tar.zst
cuberite-45e286fdcd64e4a68c616d705ec5ae5e2f9e00bf.zip
Diffstat (limited to 'Plugins/NewTest/kick.lua')
-rw-r--r--Plugins/NewTest/kick.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/Plugins/NewTest/kick.lua b/Plugins/NewTest/kick.lua
new file mode 100644
index 000000000..ff4f8a705
--- /dev/null
+++ b/Plugins/NewTest/kick.lua
@@ -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 \ No newline at end of file