summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onkilling.lua
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-01-28 17:54:11 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-01-28 17:54:11 +0100
commit71bbf2d44ba5fc00fcb15ed96aff083342309498 (patch)
tree94657c14eddc2f81fe55d8c6a15e22165f6d7897 /MCServer/Plugins/Core/onkilling.lua
parentUpdated HookNotify with the hook renaming. (diff)
downloadcuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar
cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.gz
cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.bz2
cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.lz
cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.xz
cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.tar.zst
cuberite-71bbf2d44ba5fc00fcb15ed96aff083342309498.zip
Diffstat (limited to 'MCServer/Plugins/Core/onkilling.lua')
-rw-r--r--MCServer/Plugins/Core/onkilling.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/MCServer/Plugins/Core/onkilling.lua b/MCServer/Plugins/Core/onkilling.lua
new file mode 100644
index 000000000..19bf0ea9d
--- /dev/null
+++ b/MCServer/Plugins/Core/onkilling.lua
@@ -0,0 +1,24 @@
+function OnKilling(Victim, Killer)
+ if (Killer == nil) then
+ local KilledPlayer = tolua.cast(Victim, "cPlayer")
+ if( not KilledPlayer:IsA("cPlayer") or KilledPlayer == nil ) then
+ return false
+ end
+
+ local Server = cRoot:Get():GetServer()
+ Server:SendMessage( cChatColor.Red .. KilledPlayer:GetName() .. " died" )
+ else
+ local KilledPlayer = tolua.cast(Victim, "cPlayer")
+ if( not KilledPlayer:IsA("cPlayer") or KilledPlayer == nil ) then
+ return false
+ end
+ local KillerPlayer = tolua.cast(Killer, "cPlayer")
+ if( not KillerPlayer:IsA("cPlayer") or KillerPlayer == nil ) then
+ return false
+ end
+
+ local Server = cRoot:Get():GetServer()
+ Server:SendMessage( cChatColor.Red .. KilledPlayer:GetName() .. " was killed by " .. KillerPlayer:GetName() .. "!" )
+ end
+ return false
+end \ No newline at end of file