4
Debugging
Simon Fortier edited this page 2018-12-04 16:51:43 -05:00

Give yourself 'moderator' priviledges

  1. Make sure that the game server is closed
  2. Execute this command:

Replace "someUser" by your username.

db.user.update({username: {$eq: "someUser"}}, {$set: {moderator: true}})
  1. Start the game server

Enabling debug console output

Execute this command in your browser's console

DEBUG = true

Debug values

Here is a list of available variables

Debug.SELF_ID // Object id of your cubot

Debug API

These commands can be ran from your browser's console

User commands

//Navigate to the specified world
Debug.goTo(worldX, worldY, dimension)

//Navigate to the specified world (hex)
Debug.goToHex(worldX, worldY, dimension)

Moderator commands

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)
//Example:
Debug.putItem(Debug.SELF_ID, '{"type": 5, "blueprint": "net.simon987.constructionplugin.ObstacleBlueprint"}')

Debug.setInventoryPosition(objectId, position)