TL;DR
New features, qs-advancedgarages integration fix, compatibility with newer ox_lib versions.
News app now has a useful feature to create alerts.
These alerts are similar to the emergency alerts you receive from the government in real life.
With the new payphone system, players that don’t own a phone can call other players using payphones
This is a useful feature for scenarios where having a phone is not possible such as a player serving a prison sentence
config/config.lua
+ Payphone = {
+ enabled = true,
+ label = "Payphone ($5/min)",
+ cost_per_minute = 5,
+ money_account = "cash",
+ models = {
+ -- I can only garantee animations for these 2 models
+ `p_phonebox_01b_s`,
+ `sf_prop_sf_phonebox_01b_s`,
+ },
+ spawn_locations = {
+ -- Optional spawn locations
+ { coords = vector4(46.11, -675.5, 43.22, 70.00), model = `p_phonebox_01b_s` },
+ { coords = vector4(47.16, -672.41, 43.22, 70.00), model = `sf_prop_sf_phonebox_01b_s` },
+ }
+ },
config/apps/news.lua
+ alerts_jobs = { -- What jobs can create alerts
+ { name = 'police', minimum_grade = 1 },
+ { name = 'ambulance', minimum_grade = 1 },
+ { name = 'reporter', minimum_grade = 0 },
+ },
Files changed/added