mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-04 06:22:58 +00:00
Page:
Debugging
Pages
(Hardware) Battery
(Hardware) Clock
(Hardware) Construction Arm
(Hardware) Core
(Hardware) Drill
(Hardware) Floppy Drive
(Hardware) Hologram Projector
(Hardware) Inventory
(Hardware) Keyboard
(Hardware) Laser
(Hardware) Legs
(Hardware) LiDAR
(Hardware) Radio Receiver
(Hardware) Random Number Generator
(Hardware) Universal Com Port
(Installation) Arch Linux
(Installation) Windows
(Snippet) Constants
(Snippet) Dump memory to disk
(Snippet) Keyboard controlled robot
(Snippet) Manhattan distance
(Snippet) Move in a random direction
Assembler directives
Assembly program examples
Basic Assembly tutorial
Biomass
Blueprint
CPU
Collaboration Guide
Day Night Cycle and solar Energy
Debugging
Game Universe
Hacked NPC
Hardware
Home (old)
Home
Instruction Encoding
Instruction Set
Items
Learn by Examples
NPC Factory
Non Player Character (NPC)
Project structure
Radio Tower
Random Access Memory
Road Map
The Cubot Manuals
The Game Universe
Useful Code Snippets
Users' Repositories
World
Clone
4
Debugging
Simon Fortier edited this page 2018-12-04 16:51:43 -05:00
Give yourself 'moderator' priviledges
- Make sure that the game server is closed
- Execute this command:
Replace "someUser" by your username.
db.user.update({username: {$eq: "someUser"}}, {$set: {moderator: true}})
- 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)