Starcom Nexus Console Commands- [better]
To use these commands, you must first enable the developer console.
3. Primary Debug Functions (GUI)
The Debug menu is primarily mouse-driven. You do not need to type commands for most actions. The interface allows you to manipulate the game state directly through tabs: Starcom Nexus Console Commands-
- Objects / Spawning: You can spawn any object in the game world (enemies, anomalies, resources, artifacts) by selecting it from the list and clicking "Spawn." This is useful for testing weapons or triggering events without exploring.
- Tech Unlock: A specific tab allows you to instantly unlock any technology in the research tree.
- Quest Manipulation: You can view the status of all active quests and manually set quest stages (e.g., set a mission to "Completed" to skip a puzzle).
- Reputation: You can instantly set your reputation level with various factions (Unity, Order, etc.).
- Inventory: Add credits, resources, or specific modules directly to your cargo.
8) Debugging tips
- Reproduce steps in a small script rather than manual console commands for easier debugging.
- Increase log verbosity for subsystems:
log.set subsystem:ai level:trace
- Use
prof.start/prof.stopandprof.report top 50for hotspots. - Use
render.showOverlaysto visualize collisions, navmeshes, and debug markers.
Part 3: Resource & Tech Commands (Instant Gratification)
One of the biggest grinds in Starcom: Nexus is hunting for anomalous particles and rare alloys. Skip the grind with these commands. To use these commands, you must first enable
5) Advanced: Component editing & schemas
- Components are typed; use the schema viewer:
schema.show <componentName>
- Editing nested fields uses dotted paths:
ent.set 0xabc transform.position.x 128
- Arrays and maps:
- Replace full array:
ent.set 0xabc inventory.items '["id":"ammo", "qty":50]' - Use
ent.modifywith operations:ent.modify 0xabc inventory.items push '"id":"med", "qty":1'
- Replace full array:
Progression & Testing
| Command | Effect |
|---------|--------|
| debugmission <missionID> | Completes a specific mission (use with caution) |
| listmissions | Shows all active mission IDs |
| spawnenemy <type> | Spawns an enemy ship (types: scout, cruiser, battleship) |
| destroytarget | Instantly destroys the targeted enemy/object | Objects / Spawning: You can spawn any object
The Complete Command List
Here are all the known console commands. Type them exactly as shown (case-sensitive).
unlock_all_technologies
- Effect: Instantly reveals and purchases every skill, weapon, and module in the tech tree.
- Warning: This can skip narrative beats. It is recommended to save before using this command.