1
0

Added a custom name test to the debuggers plugin.

This commit is contained in:
Howaner 2014-09-02 19:13:36 +02:00
parent 1bb4d79412
commit c8953d165c

View File

@ -38,6 +38,7 @@ function Initialize(Plugin)
-- _X: Disabled so that the normal operation doesn't interfere with anything
-- PM:AddHook(cPluginManager.HOOK_CHUNK_GENERATED, OnChunkGenerated);
PM:BindCommand("/cm", "debuggers", HandleCustomNameCmd, "- Gives you a custom name");
PM:BindCommand("/le", "debuggers", HandleListEntitiesCmd, "- Shows a list of all the loaded entities");
PM:BindCommand("/ke", "debuggers", HandleKillEntitiesCmd, "- Kills all the loaded entities");
PM:BindCommand("/wool", "debuggers", HandleWoolCmd, "- Sets all your armor to blue wool");
@ -768,6 +769,22 @@ end
function HandleCustomNameCmd(Split, Player)
if (Split[2] == nil) then
Player:SendMessage("Usage: /cm [CustomName]");
return true;
end
local NewName = Split[2]
Player:SetCustomName(NewName);
Player:SendMessageSuccess("Custom name setted to " .. Player:GetCustomName() .. "!")
return true
end
function HandleListEntitiesCmd(Split, Player)
local NumEntities = 0;