Merge branch 'magicalcarpets' of git://github.com/tigerw/MCServer into tigerw-magicalcarpets
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user