Vehicle GPS System
Important: Keybinds
To use all available keybinds, download and install ug_keybinds
from your Keymaster.
This resource contains all keybinds used across our scripts.
You can enable or disable individual keybinds in the configuration.
Disabled keybinds will not appear in the keybinds list.
Script Installation Guide
Installing this package is very simple. Follow the steps below:
Step 1: Download
Download the script from your Keymaster.
Step 2: Extract
Extract the package locally.
Step 3: Upload
Upload the script to your server files.
Export
This script provides one export you can use in other scripts:
Clear
last_coords
of a vehicleexports('clearLastCoords', plate)
Using this export will remove the saved coordinates of the specified vehicle. After this, the vehicle cannot be spawned until driven to save new coordinates.
Required data base setup for script to work:
esx
ALTER TABLE `owned_vehicles` ADD COLUMN `last_coords` LONGTEXT DEFAULT NULL;
qb / qbox
ALTER TABLE `player_vehicles` ADD COLUMN `last_coords` LONGTEXT DEFAULT NULL;
Last updated