Merge branch 'magicalcarpets' of git://github.com/tigerw/MCServer into tigerw-magicalcarpets

This commit is contained in:
madmaxoft
2013-10-08 22:52:12 +02:00
2 changed files with 26 additions and 8 deletions
@@ -0,0 +1,19 @@
Core = cPluginManager:Get():GetPlugin("Core")
function SendMessage(a_Player, a_Message)
if (Core ~= nil) then
Core:Call("SendMessage", a_Player, a_Message)
end
end
function SendMessageSuccess(a_Player, a_Message)
if (Core ~= nil) then
Core:Call("SendMessageSuccess", a_Player, a_Message)
end
end
function SendMessageFailure(a_Player, a_Message)
if (Core ~= nil) then
Core:Call("SendMessageFailure", a_Player, a_Message)
end
end