diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-16 12:25:53 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-08-16 12:25:53 +0200 |
commit | cbde4f546a3135d9889b37aa227468106958a94a (patch) | |
tree | 0444a5f3d1797a01fb6a4c01def9933084652e8c /MCServer/Plugins/Core/tell.lua | |
parent | Feature and bugfixes [SEE DESC] (diff) | |
parent | Replaced E_ENTITY_TYPE_XXX with cMonster::mtXXX. (diff) | |
download | cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.gz cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.bz2 cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.lz cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.xz cuberite-cbde4f546a3135d9889b37aa227468106958a94a.tar.zst cuberite-cbde4f546a3135d9889b37aa227468106958a94a.zip |
Diffstat (limited to 'MCServer/Plugins/Core/tell.lua')
-rw-r--r-- | MCServer/Plugins/Core/tell.lua | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/MCServer/Plugins/Core/tell.lua b/MCServer/Plugins/Core/tell.lua deleted file mode 100644 index 7d5a44f34..000000000 --- a/MCServer/Plugins/Core/tell.lua +++ /dev/null @@ -1,37 +0,0 @@ -function HandleTellCommand(Split, Player, OtherPlayer) - if (Split[2] == nil) or (Split[3] == nil) then - Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. "Usage: /tell [playername] [message]") - return true - end - - local SendMessage = function(OtherPlayer) - - Sender = Player:GetName() - Reciever = Split[2] - - if (OtherPlayer:GetName() == Split[2]) then - Server = cRoot:Get():GetServer() - FullMsg = "" - - for i,v in ipairs(Split) do - if(i>2) then - if(FullMsg == "") then - FullMsg = v - else - FullMsg = FullMsg .. " " .. v - end - end - end - - Player:SendMessage(cChatColor.Green .. "[INFO] " .. "Message to player " .. Reciever .. " sent!" ) - OtherPlayer:SendMessage(cChatColor.Orange .. "[MSG: " .. Sender .. " ] " .. FullMsg ) - else - Player:SendMessage(cChatColor.Red .. 'Player "' ..Split[2].. '" not found') - end - end - - cRoot:Get():ForEachPlayer(SendMessage) - return true; -end - - |