Latest
Version 1.10.0
Highlights
- Added prop placement with in-game editor to the station creator.
- Added license plate change feature in the garage menu with permission checks and DB sync.
- Added per-job blip configuration directly from the creator UI (sprite, color, scale, display, short range).
- Added garage vehicle grade restrictions — vehicles can now be locked behind job grades.
Notable Changes
- Map App now has a button to set waypoints to station markers.
- Added
tablet:openHomeevent for external scripts to open the tablet to the home screen. - Creator placement settings for fine-tuning marker/interaction point positions.
- Improved InputModal component with better validation and layout.
Other Changes
- Comprehensive translation update across all 8 languages (CN, ES, FI, FR, NL, PL, RS, DE).
- Fixed missing garage
plateEditorandstatuslocale keys in EN and DE. - Fixed merge conflicts in ES and FI locale files.
- Fixed missing translation keys in garage interface.
- Download sky_jobs_base from the CFX Portal.
- Create a backup.
- Replace the
/sourcefolder. - Replace the
/config/localesfolder. - If
Config.AutoExecuteQuery = false, run the SQL migration manually:
CREATE TABLE IF NOT EXISTS `sky_jobs_blips` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`job_key` VARCHAR(100) NOT NULL,
`sprite` INT NOT NULL DEFAULT 1,
`color` INT NOT NULL DEFAULT 0,
`scale` FLOAT NOT NULL DEFAULT 0.8,
`display` INT NOT NULL DEFAULT 4,
`short_range` TINYINT(1) NOT NULL DEFAULT 1,
`label` VARCHAR(255) NULL,
UNIQUE KEY `uniq_job` (`job_key`)
);