diff options
Diffstat (limited to '')
-rw-r--r-- | Server/Plugins/Debuggers/Debuggers.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Server/Plugins/Debuggers/Debuggers.lua b/Server/Plugins/Debuggers/Debuggers.lua index bd0b94a06..2b80e15c8 100644 --- a/Server/Plugins/Debuggers/Debuggers.lua +++ b/Server/Plugins/Debuggers/Debuggers.lua @@ -1648,6 +1648,17 @@ end + +function HandlePlugMsg(a_Split, a_Player) + local ch = a_Player:GetClientHandle() + ch:SendPluginMessage("TestCh", "some\0string\1with\2funny\3chars") + return true +end + + + + + function HandlePoof(a_Split, a_Player) local PlayerPos = Vector3d(a_Player:GetPosition()) -- Create a copy of the position PlayerPos.y = PlayerPos.y - 1 |