01 / OVERVIEWWhat it does
- Type
- Modified Qbox spawn selector
- Best for
- Qbox servers with coordinate or custom-map spawns
- Optional
- qbx_properties destinations
- Game-world loading
- Waits up to 10 seconds for collision around the destination
This keeps the familiar Qbox menu for a player's last position, public spawn points, and optionally owned properties. Only what happens after the player chooses a normal map location has changed; the menu itself remains intact.
For a normal spawn point, the script briefly freezes the player and waits up to 10 seconds for collision around the destination to load before placing them. Collision is the part of the game world that tells FiveM where surfaces are. Property spawns still use qbx_properties and are unchanged.
02 / HOW IT WORKSWhat happens after a player chooses a location
Normal map locations wait for the world to load. Owned properties continue through qbx_properties.
- 01
Show the available choices
The menu combines enabled public locations, the player's last position, and owned properties when qbx_properties is running.
- 02
Wait for a normal map location
For a normal spawn point, the player is frozen while the script asks FiveM to load collision around the chosen position.
- 03
Place the player
When collision loads or the 10-second limit is reached, the script places the player at the chosen position and direction, then returns control.
- 04
Let qbx_properties handle properties
Owned-property choices continue through qbx_properties and do not use the normal map-location wait.
04 / SETUP OPTIONSWhat you can change
These are the main parts you can adjust for your server. The setup guide lists every option and example.
- Ordered public spawn labels
- Enabled location list
- Spawn positions and the direction the player faces
- Locale
- Optional qbx_properties destinations
See every setup option → 05 / REQUIREMENTSWhat it works with
- Server framework
- Qbox
- Required
- ox_lib and oxmysql
- Optional
- qbx_properties for owned-property spawns
- Database
- players table with stored position data
See all requirements and setup options →Technical details2 details+
- Runtime
- FiveM Lua
- Database
- oxmysql players and optional property data
07 / ORIGINAL PROJECTChanges from the original
Original projectQbox Project qbx_spawn
Base version0.1.1
This edition keeps the original menu and property entry while changing how normal map locations load and expanding the default location list.