Configuration
SA uses convars for config values. For information on how to correctly install the config.cfg
file, see here.
Value List
Name | Default Value |
---|---|
ic_sa_language | en-us |
ic_sa_kickCheaters | false |
ic_sa_secondsTillDoorsClose | 150 |
ic_sa_secondsTillLightsReset | 150 |
ic_sa_closeDoorsOnDriveThrough | true |
ic_sa_tones | See Below |
ic_sa_nuiVolume | 5 |
ic_sa_callScreenSettings | See Below |
ic_sa_enableAddon | false |
ic_sa_addonPaymentReference | "" |
ic_sa_ttsLanguage | en-us |
ic_sa_command | stationalert |
ic_sa_ttsVoice | Mary |
is_sa_ttsSpeechRate | -1 |
ic_sa_followUpAlertMessages | true |
ic_sa_repeatMessage | true |
ic_sa_endingTone | true |
ic_sa_manualInteractions | false |
ic_sa_slowerDoors | `true |
ic_sa_wallLightModels | See Below |
ic_sa_trafficLightModels | See Below |
ic_sa_unitIndicatorModels | See Below |
ic_sa_doorControlsModel | prop_ic_door_controls |
ic_sa_ceilingSpeakerModel | v_serv_metro_ceilingspeaker |
ic_sa_httpAccessToken | "" |
ic_sa_whitelistedIps | See Below |
ic_sa_debug | false |
Values Explained
Language
ic_sa_language
This value is the short code for the language you'd like to use.
You can check the list of available language by viewing this page.
If your language has not been translated yet, feel free to check out our Translation program, where you get rewarded for translating resources!
The default value is en-us
for English.
Kick Cheaters
ic_sa_kickCheaters
If this value is true
, the resource will kick any players it detects as "cheaters". Cheaters are determined by events sent to the server, and actions performed. False-positive as possible, but unlikely.
Regardless of this value, the resource will log events in the server console whenever it believes it has found a cheater.
Seconds Till Doors Close
ic_sa_secondsTillDoorsClose
This must be a whole number, more than or equal to -1
. Suggested value range: 140
- 160
.
This is the number of seconds after an Alert is activated, that any doors that were opened are automatically closed.
If value is -1
, doors will stay open until manually closed.
Seconds Till Lights Reset
ic_sa_secondsTillLightsReset
This must be a whole number, more than 0. Suggested value range: 125
- 150
.
This is the number of seconds after an Alert is activated, that Wall Lights and Unit Indicators will reset.
Self-Closing Doors
ic_sa_closeDoorsOnDriveThrough
This value determines with doors should close once a vehicle has driven through them.
Alert Tone Sounds
ic_sa_tones
These values define what tones can be played. Each entry contains "human-readable name", and a "file name".
The human-readable name can be anything, but the file name must be the name of the sound file including the file extension.
Audio files must be placed inside the ui/assets
folder.
Tones can be any length and any audio file extension.
Tones can also not be tones, but re-recorded turnout messages; for example, one tone for each type of appliance.
The default value for this option is:
setr ic_sa_tones {
"Tone 1": "alert1.mp3",
"Tone 2": "alert2.mp3",
"Tone 3": "alert3.mp3"
}
NUI Volume
ic_sa_nuiVolume
This value is used to determine how loud the in-game NUI should be.
Must be a whole number between 1
and 10
, where 10
is the loudest.
Default value is 5
.
Manual Interactions (Target/Third-Eye Resource Support)
ic_sa_manualInteractions
If this value is true
, "Press E ..." interaction pop-ups and keybindings will be disabled, and instead events will be fired that can be used in editable/client/targeting.lua
; to enable support for OxTarget, QBTarget, or any other target/third-eye resource, changes will need to be made in this file.
For OxTarget or QBTarget, simply uncomment the lines under the sections named either OxTarget or QBTarget.
For any other target/third-eye resource, use the provided event handlers and variables to add your own exports/events. Reach out in Discord if you need help adding other resources.
The events in editable/client/targeting.lua
will not fire unless ic_sa_manualInteractions
is true
.
Slower Doors
ic_sa_slowerDoors
When this value is true
, doors will open and closer slower than normal to be more realistic.
If you do not want the resource to change the speed of the doors, set this value to false
.
If this value is true
and your doors do not open like they should, or need to be bumped/hit to be open, change this value to false
and it should resolve the issue.
Alias Command
ic_sa_command
When this value is anything other than stationalert
, the value will be used to register an alias command.
This alias command can be used instead of the full stationalert
command.
For example, setting the value to sa
would allow the use of /sa <...>
for commands.
Default value is stationalert
.
HTTP Access Token
ic_sa_httpAccessToken
This is an optional config value that is required if server owners wish to use the included API.
This value is blank by default, and while blank, the API will reject all HTTP requests.
To enable the API you must provide a value to be used as a token.
API Whitelist
ic_sa_whitelistedIps
This is an optional config value that allows server owners to only allow HTTP requests from specific IP addresses.
To allow to requests from any IP address, set this value to []
.
The default value, 127.0.0.1
, should allow access from the local machine only on most systems.
Regardless of this config option, ic_sa_httpAccessToken
is required.
Default Wall Light Models
ic_sa_wallLightModels
These values determine which prop/model should be used for de/activated Wall Lights.
The default value for this option is:
setr ic_sa_wallLightModels {
"off": "hei_prop_wall_alarm_off",
"on": "prop_ic_wall_light"
}
Default Traffic Light Models
ic_sa_trafficLightModels
These values determine which prop/model should be used for Traffic Lights.
The default value for this option is:
setr ic_sa_trafficLightModels {
"Red": "prop_ic_traffic_light_r",
"Yellow": "prop_ic_traffic_light_y",
"Green": "prop_ic_traffic_light_g"
}
Default Unit Indicator Models
ic_sa_unitIndicatorModels
These values determine which prop/model should be used for Unit Indicators.
The default value for this option is:
setr ic_sa_trafficLightModels {
"None": "prop_ic_unit_indicator",
"Red": "prop_ic_unit_indicator_r",
"Green": "prop_ic_unit_indicator_g",
"Blue": "prop_ic_unit_indicator_b"
}
Default Door Controls Model
ic_sa_doorControlsModel
These values determine which prop/model should be used for Door Controls.
The default value for this option is:
setr ic_sa_doorControlsModel "prop_ic_door_controls"
Default Ceiling Speaker Model
ic_sa_ceilingSpeakerModel
These values determine which prop/model should be used for Ceiling Speakers.
The default value for this option is:
setr ic_sa_ceilingSpeakerModel "v_serv_metro_ceilingspeaker"
Debug
ic_sa_debug
If this value is true
, a ton of extra logs will be outputted to both the client and server consoles. Not suggested at all for production use, nor for when using the SA Tool.
Call Screen Settings Explained
The Call Screen is a TV that can be placed with the SA Tool that will display information about the Station and Alerts.
Logo URL
logo_url
This can be either a local path to an image within the resource, or a website.
To upload a logo, go to ui/assets
within inferno-station-alert
and upload your image file.
The logo provided in logo_url
will be used for all call screens, expect locations where a specific logo has been provided in the locations file.
To provide a logo for a specific station location, edit the .lua
location file of your choosing, then next to name
add logourl
. See the example below:
location { name = "Davis Fire Station", logourl = "/ui/assets/inferno_collection.png" }
Show Time on Screensaver
show_time
If this value is true
, the current time will be displayed on the screensaver.
Timezone
timezone
If show_time
is true
, this value will be used to set the timezone.
A full list of timezones can be found here.
Timezone Tag
timezone_tag
If show_time
is true
, this value will be used to set the format of the time.
A full list of timezone tags can be found here (see the tag
column).
TV Screen Model
tv_screen_model
The model to use for the Call Screen.
We don't suggest changing this unless you are familiar with DUIs and Render Targets.
Render Screen Model
render_screen_model
The model to use with the DUI Render Target.
We don't suggest changing this unless you are familiar with DUIs and Render Targets.
Render Target Name
render_target
The name of the DUI Render Target to use.
We don't suggest changing this unless you are familiar with DUIs and Render Targets.
Custom Call Screen
custom_urls
Set this value to true
if you wish to replace both the screensaver and alert screen.
Restarting SA will cause the Call Screens to all go black. This is because of how FiveM un/loads the replacement asset, and we cannot fix this. If you need to restart the resource a lot (i.e. because you are developing/testing a custom call screen), we suggest moving the xm_prop_x17_tv_ceiling_scn_02.ydr
file out of the stream
folder temporarily.
The below custom URLs can be:
- Set to a URL in
config.cfg
. - Left blank in the
config.cfg
.- Will default back to built-in URL.
- Be overridden via convar.
- To override via convar, make sure
custom_urls
is true in theconfig.cfg
, then set replicated convars for the following:custom_screensaver_url
custom_alert_url
custom_message_url
- Example:
setr custom_alert_url "https://google.com"
- To override via convar, make sure
Custom Screensaver URL
custom_screensaver_url
When custom_urls
is true
, the DUI will be directed to this URL for the screensaver.
The following query parameters are passed with the URL:
l
- Value oflogo_url
s
- Station nametz
- Value oftimezone
tt
- Value oftimezone_tag
d
- JSON array of door names and their state (open or closed)
Custom Alert URL
custom_alert_url
When custom_urls
is true
, the DUI will be directed to this URL for the alert screen.
The following query parameters are passed with the URL:
l
- Value oflogo_url
s
- Station namem
- Message provided with Alertd
- JSON array of door names and their state (open or closed)
Custom Message URL
custom_message_url
When custom_urls
is true
, the DUI will be directed to this URL for the message screen.
The following query parameters are passed with the URL:
l
- Value oflogo_url
s
- Station namem
- Messaged
- JSON array of door names and their state (open or closed)
Voice Turnout Addon Values Explained
The Voice Turnout Addon is an optional, subscription based, addon for SA.
You can purchase it from our Tebex Store here.
It is not a resource you download, but rather the Subscription Payment Reference is used like a password to access the TTS service.
The options below require a valid subscription, or they will not work.
Enable Voice Turnout Addon
ic_sa_enableAddon
This value must be set to true
to enable to Text-to-Speech features of SA.
Default value is false
; changing to true
without a valid subscription will result in an error.
Tebex Subscription Payment Reference
ic_sa_addonPaymentReference
This value is the Subscription specific Payment Reference, not the normal Payment Reference.
You can tell the two apart, as the Subscription Payment Reference starts with tbx-r-
and not tbx-
.
You can find the Subscription Payment Reference in three places:
- On the payment confirmation screen after completing your purchase.
- In your subscription confirmation email from Tebex after purchase.
- In your Tebex Payment History, located here.
Treat your Subscription Payment Reference like a password.
Do not post it publicly.
Do not share it with other people/server owners/developers.
Text-to-Speech usage is monitored, and abuse will result in consequences.
Text-to-Speech Language
ic_sa_ttsLanguage
This value determines which language the TTS should use.
The default value is en-us
for American English.
The following languages are available:
Language | Value |
---|---|
Arabic (Egypt) | ar-eg |
Arabic (Saudi Arabia) | ar-sa |
Bulgarian | bg-bg |
Catalan | ca-es |
Chinese (China) | zh-cn |
Chinese (Hong Kong) | zh-hk |
Chinese (Taiwan) | zh-tw |
Croatian | hr-hr |
Czech | cs-cz |
Danish | da-dk |
Dutch (Belgium) | nl-be |
Dutch (Netherlands) | nl-nl |
English (Australia) | en-au |
English (Canada) | en-ca |
English (Great Britain) | en-gb |
English (India) | en-in |
English (Ireland) | en-ie |
English (United States) | en-us |
Finnish | fi-fi |
French (Canada) | fr-ca |
French (France) | fr-fr |
French (Switzerland) | fr-ch |
German (Austria) | de-at |
German (Germany) | de-de |
German (Switzerland) | de-ch |
Greek | el-gr |
Hebrew | he-il |
Hindi | hi-in |
Hungarian | hu-hu |
Indonesian | id-id |
Italian | it-it |
Japanese | ja-jp |
Korean | ko-kr |
Malay | ms-my |
Norwegian | nb-no |
Polish | pl-pl |
Portuguese (Brazil) | pt-br |
Portuguese (Portugal) | pt-pt |
Romanian | ro-ro |
Russian | ru-ru |
Slovak | sk-sk |
Slovenian | sl-si |
Spanish (Mexico) | es-mx |
Spanish (Spain) | es-es |
Swedish | sv-se |
Tamil | ta-in |
Thai | th-th |
Turkish | tr-tr |
Vietnamese | vi-vn |
Text-to-Speech Voice
ic_sa_ttsVoice
This value determines which voice the TTS should use.
The default value is Mary
which works with en-us
.
Not all voices work with all languages.
The following voices are available:
Language name | Voice | Voice gender |
---|---|---|
Arabic (Egypt) | Oda | Female |
Arabic (Saudi Arabia) | Salim | Male |
Bulgarian | Dimo | Male |
Catalan | Rut | Female |
Chinese (China) | Luli | Female |
Shu | Female | |
Chow | Female | |
Wang | Male | |
Chinese (Hong Kong) | Jia | Female |
Xia | Female | |
Chen | Male | |
Chinese (Taiwan) | Akemi | Female |
Lin | Female | |
Lee | Male | |
Croatian | Nikola | Male |
Czech | Josef | Male |
Danish | Freja | Female |
Dutch (Belgium) | Daan | Male |
Dutch (Netherlands) | Lotte | Female |
Bram | Male | |
English (Australia) | Zoe | Female |
Isla | Female | |
Evie | Female | |
Jack | Male | |
English (Canada) | Rose | Female |
Clara | Female | |
Emma | Female | |
Mason | Male | |
English (Great Britain) | Alice | Female |
Nancy | Female | |
Lily | Female | |
Harry | Male | |
English (India) | Eka | Female |
Jai | Female | |
Ajit | Male | |
English (Ireland) | Oran | Male |
English (United States) | Linda | Female |
Amy | Female | |
Mary | Female | |
John | Male | |
Mike | Male | |
Finnish | Aada | Female |
French (Canada) | Emile | Female |
Olivia | Female | |
Logan | Female | |
Felix | Male | |
French (France) | Bette | Female |
Iva | Female | |
Zola | Female | |
Axel | Male | |
French (Switzerland) | Theo | Male |
German (Austria) | Lukas | Male |
German (Germany) | Hanna | Female |
Lina | Female | |
Jonas | Male | |
German (Switzerland) | Tim | Male |
Greek | Neo | Male |
Hebrew | Rami | Male |
Hindi | Puja | Female |
Kabir | Male | |
Hungarian | Mate | Male |
Indonesian | Intan | Male |
Italian | Bria | Female |
Mia | Female | |
Pietro | Male | |
Japanese | Hina | Female |
Airi | Female | |
Fumi | Female | |
Akira | Male | |
Korean | Nari | Female |
Malay | Aqil | Male |
Norwegian | Marte | Female |
Erik | Male | |
Polish | Julia | Female |
Jan | Male | |
Portuguese (Brazil) | Marcia | Female |
Ligia | Female | |
Yara | Female | |
Dinis | Male | |
Portuguese (Portugal) | Leonor | Female |
Romanian | Doru | Male |
Russian | Olga | Female |
Marina | Female | |
Peter | Male | |
Slovak | Beda | Male |
Slovenian | Vid | Male |
Spanish (Mexico) | Juana | Female |
Silvia | Female | |
Teresa | Female | |
Jose | Male | |
Spanish (Spain) | Camila | Female |
Sofia | Female | |
Luna | Female | |
Diego | Male | |
Swedish | Molly | Female |
Hugo | Male | |
Tamil | Sai | Male |
Thai | Ukrit | Male |
Turkish | Omer | Male |
Vietnamese | Chi | Male |
Text-to-Speech Rate
is_sa_ttsSpeechRate
This value determines how fast the TTS will be read.
The default value is -1
, valid values are between -10
and 10
.
Suggested values are between -2
and 0
.
Follow-Up Messages
ic_sa_followUpAlertMessages
If this value is true
, "90 seconds" and "120 seconds" will be read automatically.
This is to inform firefighters on station how long it has been since an Alert was activated.
Repeat TTS Message Twice
ic_sa_repeatMessage
If this value is true
, the TTS message will be repeated twice when it is read.
Repeat Tone At End Of TTS
ic_sa_repeatMessage
If this value is true
, the selected Tone for an Alert will be played again at the end of the TTS.
Permissions
There are several permissions for SA, they are as follows:
Use Door Controls
InfernoStationAlert.DoorControls
This permission allows players to interact with the Door Controls to open/close Doors.
By default, this permission is granted to all players.
Use Station Computer
InfernoStationAlert.Computer
This permission allows players to interact with the Station Computer to create Alerts.
By default, this permission is granted to all players.
Use All Station Broadcast
InfernoStationAlert.Broadcast
This permission allows players to use the Station Computer to create all station Broadcasts.
By default, this permission is only granted to admins (group.admin
).
Use Buzzer
InfernoStationAlert.Buzzer
This permission allows players to use the /stationalert buzzer
command to open/close Doors from outside the Station.
By default, this permission is granted to all players.
Create Alert via Command
InfernoStationAlert.Command
This permission allows players to use the /stationalert new
command to create Alerts anywhere via Command.
By default, this permission is only granted to admins (group.admin
).
Use SA Tool
InfernoStationAlert.Tool
This permission allows players to use the SA Tool.
By default, this permission is only granted to admins (group.admin
).
Default Config File
# Inferno Collection Station Alert
#
# Copyright (c) 2019-2025, Christopher M, Inferno Collection. All rights reserved.
############################################################################
### NOTICE ###
### Be sure to check the documentation before changing these values. ###
### https://docs.inferno-collection.com/station-alert/configuration/ ###
############################################################################
#####################
### Configuration ###
#####################
### General ###
###############
# Select language
setr ic_sa_language "en-us"
# Kick suspected cheaters
set ic_sa_kickCheaters "false"
# How many seconds after an alert should doors close
set ic_sa_secondsTillDoorsClose "150"
# How many seconds after an alert should lights reset
set ic_sa_secondsTillLightsReset "150"
# Close doors once driven through
setr ic_sa_closeDoorsOnDriveThrough "true"
# Labels and files names for tones
setr ic_sa_tones {
"Tone 1": "alert1.mp3",
"Tone 2": "alert2.mp3",
"Tone 3": "alert3.mp3"
}
### Call Screen ###
###################
setr ic_sa_callScreenSettings {
"logo_url": "/ui/assets/inferno_collection.png",
"show_time": "true",
"timezone": "Australia/Melbourne",
"timezone_tag": "en-AU",
"tv_screen_model": "xm_prop_x17_tv_ceiling_01",
"render_screen_model": "xm_prop_x17_tv_ceiling_scn_02",
"render_target": "prop_x17_tv_ceil_scn_02",
"custom_urls": "false",
"custom_screensaver_url": "",
"custom_alert_url": "",
"custom_message_url": ""
}
### SA Addon ###
################
# Enable use of the Station Alert Addon
# Requires subscription, see docs for details
set ic_sa_enableAddon "false"
# Tebex Subscription Payment Reference
set ic_sa_addonPaymentReference ""
# Text-to-Speech Language
set ic_sa_ttsLanguage "en-us"
# Text-to-Speech Voice
set ic_sa_ttsVoice "Mary"
# Text-to-Speech Speech Rate
set ic_sa_ttsSpeechRate "-1"
# Send "90 seconds" & "120 seconds" follow up messages
set ic_sa_followUpAlertMessages "true"
# Read the Text-to-Speech message twice
setr ic_sa_repeatMessage "true"
# Play the selected tone again after the Text-to-Speech message
setr ic_sa_endingTone "true"
### Advanced ###
################
# Don't display "Press E to..." interactions
setr ic_sa_manualInteractions "false"
# Slower Doors
setr ic_sa_slowerDoors "true"
# NUI Volume
setr ic_sa_nuiVolume "5"
# The model to use for the wall lights
setr ic_sa_wallLightModels {
"off": "hei_prop_wall_alarm_off",
"on": "prop_ic_wall_light"
}
# The model to use for the traffic lights
setr ic_sa_trafficLightModels {
"Red": "prop_ic_traffic_light_r",
"Yellow": "prop_ic_traffic_light_y",
"Green": "prop_ic_traffic_light_g"
}
# The model to use for the unit indicators
setr ic_sa_unitIndicatorModels {
"None": "prop_ic_unit_indicator",
"Red": "prop_ic_unit_indicator_r",
"Green": "prop_ic_unit_indicator_g",
"Blue": "prop_ic_unit_indicator_b",
"Magenta": "prop_ic_unit_indicator_m",
"Yellow": "prop_ic_unit_indicator_y"
}
# The model to use for the door controls
setr ic_sa_doorControlsModel "prop_ic_door_controls"
# The model to use for the ceiling speaker
setr ic_sa_ceilingSpeakerModel "v_serv_metro_ceilingspeaker"
# The model to use for the external speaker
setr ic_sa_exteriorSpeakerModel "h4_prop_h4_tannoy_01a"
# HTTP Access Token
set ic_sa_httpAccessToken ""
# List of whitelisted IPs to allow HTTP requests from
set ic_sa_whitelistedIps [
"127.0.0.1"
]
# Change command name
set ic_sa_command "stationalert"
# If the resource should run in debug mode
setr ic_sa_debug "false"
###################
### Permissions ###
###################
add_ace builtin.everyone "InfernoStationAlert.DoorControls" allow
add_ace builtin.everyone "InfernoStationAlert.Computer" allow
add_ace builtin.everyone "InfernoStationAlert.Buzzer" allow
add_ace group.admin "InfernoStationAlert.Tool" allow
add_ace group.admin "InfernoStationAlert.Command" allow
add_ace group.admin "InfernoStationAlert.Broadcast" allow