1
0

finished #143 I believe

This commit is contained in:
Daniel O'Brien
2013-11-16 02:23:50 +11:00
parent 5e3614ce87
commit 04dff4882a
14 changed files with 45 additions and 16 deletions

View File

@@ -46,6 +46,7 @@ function Initialize(Plugin)
PluginManager:BindCommand("/arr", "debuggers", HandleArrowCmd, "- Creates an arrow going away from the player");
PluginManager:BindCommand("/fb", "debuggers", HandleFireballCmd, "- Creates a ghast fireball as if shot by the player");
PluginManager:BindCommand("/xpa", "debuggers", HandleAddExperience, "- Adds 200 experience to the player");
PluginManager:BindCommand("/xpr", "debuggers", HandleRemoveXp, "- Remove all xp");
-- Enable the following line for BlockArea / Generator interface testing:
-- PluginManager:AddHook(Plugin, cPluginManager.HOOK_CHUNK_GENERATED);
@@ -852,3 +853,13 @@ function HandleAddExperience(a_Split, a_Player)
return true;
end
function HandleRemoveXp(a_Split, a_Player)
a_Player:SetExperience(0);
return true;
end