Admin Commands Reference
Administrative reference for the landscaping job builder tools.
Permissions
All builder commands require admin permission. Add this line to your server.cfg to give your admin group access:
add_ace group.admin admin allowStandard QBCore/QBX/ESX admins pass the check automatically. Without admin permission, the commands respond with a "no permission" message.
Command List
| Command | Description |
|---|---|
/mowerlocation <name> | Start creating a landscaping office |
/mowervehicle | Save the current office vehicle spawn |
/moweryard <name> | Start a yard and open the visual editor |
/mowerpatch | Add a single patch by dialog to the active yard |
/mowerundo | Remove the most recently added patch |
/mowerfinishyard | Save the active yard |
/mowerexport | Export merged session data to exported_locations.lua |
/mowercancel | Cancel the active setup |
/mowerimport | Import current runtime locations and yards into the session |
/mowerlist | List current session contents |
/mowerremoveyard <name> | Remove a yard from the current session by exact name |
Office Creation
/mowerlocation <name>
Starts an office setup using your current player position and heading.
Saved fields:
namecoordsheading
This does not finish the office until /mowervehicle is used.
/mowervehicle
Captures your current position and heading as the office vehicle spawn and saves the office to the in-memory builder session.
Saved field:
vehicleSpawn
Yard Creation
/moweryard <name>
Starts a new yard and opens the visual editor.
The session stores:
namecoordspatchesobstacles
/mowerpatch
Opens a grass model picker dialog and adds one patch at your current location.
This uses the active Config.GrassProps list for validation.
/mowerundo
Removes the most recently added patch from the yard you are building. It is meant for patches placed with /mowerpatch — while the visual editor is open, use the editor's own undo (Ctrl+Z or Backspace) instead so the on-screen preview stays in sync.
/mowerfinishyard
Saves the active yard if it has at least one patch, closes the editor, and stores the yard in the current builder session.
The yard tier is determined from patch count at save time.
Session Commands
/mowerimport
Loads the offices and yards currently live on the server into your builder session. Anything already in the session with the same name is left untouched.
Run this first if you want to review, remove, or build on top of the existing data.
/mowerlist
Prints current session contents in chat, including:
- location names
- yard names
- patch count
- obstacle count
- calculated tier
/mowerremoveyard <name>
Removes a yard from the builder session. The name must match exactly, including capitalization.
This only changes your builder session — to remove a yard from the live game, export afterwards and update shared/config/locations.lua with the result.
Export Behavior
/mowerexport
The export command does the following:
- saves any office you are still in the middle of creating
- saves any yard you are still building, as long as it has at least one patch
- pulls in the offices and yards already live on the server, so nothing existing gets lost
- writes everything to a file called
exported_locations.luainside the resource folder - confirms in chat how many offices and yards were exported
Important notes:
- entries are matched by name — if a session entry and an existing entry share a name, the session entry is kept
- exporting does not change anything on the live server by itself; see "Applying your export" below
Applying your export
The game keeps using the yards in shared/config/locations.lua until you update that file. To make your exported yards live:
- Open
exported_locations.lua(in theoxide-landscapingjobfolder on your server). - Copy its contents over the matching tables in
shared/config/locations.lua. - Restart the resource.
/mowercancel
Clears any in-progress office or yard setup for the calling admin, closes the visual editor, and removes preview state.
Visual Yard Editor
The visual editor opens automatically through /moweryard.
Modes
- patch mode
- obstacle mode
Switch modes with Tab.
Placement Controls
| Control | Action |
|---|---|
W/A/S/D | Move camera |
Mouse | Look around |
Shift | Move up |
Ctrl | Move down |
Scroll | Change speed |
E | Next model |
Q | Previous model |
Tab | Toggle patch / obstacle mode |
Left Click | Lock placement and enter precision mode |
Ctrl+Z / Backspace | Undo last placement in editor |
Enter | Save yard |
ESC | Exit editor without saving the yard automatically |
Precision Controls
| Control | Action |
|---|---|
Mouse X | Rotate heading |
Scroll Up | Raise Z |
Scroll Down | Lower Z |
Left Click | Confirm placement |
Right Click | Cancel precision placement |
Recommended Workflow
Run /mowerimport to load the existing offices and yards into your session.
Build new yards (or new offices) with the visual editor.
Use /mowerlist to double-check names and counts.
Use /mowerexport to write everything to exported_locations.lua.
Copy the exported data into shared/config/locations.lua.
Restart the resource so the new yards go live.
Builder Design Tips
- Keep office vehicle spawns clear and accessible.
- Use natural patch spacing instead of rigid grids.
- Add only enough obstacles to create interaction, not clutter.
- Test mower access paths before treating a yard as finished.
- Keep exact yard names consistent if you rely on export deduplication by name.