From 16cecc82668d843c557e4bd82be25f9fc1d39ad3 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Tue, 4 Dec 2018 16:33:38 -0500 Subject: [PATCH] Updated Debugging (markdown) --- Debugging.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/Debugging.md b/Debugging.md index 1ed9311..2eb2c38 100644 --- a/Debugging.md +++ b/Debugging.md @@ -23,7 +23,7 @@ These commands can be ran from your browser's console Debug.goTo(worldX, worldY, dimension) //Navigate to the specified world (hex) -Debug.goTo(worldX, worldY, dimension) +Debug.goToHex(worldX, worldY, dimension) ``` ### Moderator commands @@ -31,21 +31,38 @@ Debug.goTo(worldX, worldY, dimension) Debug.setTileAt(x, y, newTile) Debug.createWorld(x, y, dimension) + Debug.createWorldHex(x, y, dimension) + Debug.killAll(x, y) + Debug.objInfo(x, y) + Debug.userInfo(username) + Debug.moveObj(objectId, x, y) + Debug.tpObj(objectId, x, y, worldX, worldY, dimension) + Debug.tpObjHex(objectId, x, y, worldX, worldY, dimension) + Debug.spawnObj(data) + Debug.comPortMsg(objectId, message) + Debug.healObj(objectId, amount) + Debug.damageObj(objectId, amount) + Debug.chargeShield(objectId, amount) + Debug.setEnergy(objectId, amount) + Debug.saveGame() + Debug.popItem(objectId) + Debug.putItem(objectId, item) + Debug.setInventoryPosition(objectId, position) ``` \ No newline at end of file