πAdditional Features
Currency Configuration
Overview
The YSeries phone system allows you to customize currency display and formatting to match your server's economy and regional preferences.
Currency Settings
Configure currency in config/config.misc.lua:
Config.CurrencyFormat = "{amount}$" -- How currency is displayed
Config.CurrencySymbol = "$" -- Currency symbol
Config.CurrencyLabel = 'usd' -- Currency identifierCurrency Format Examples
Euro
Config.CurrencyFormat = "{amount} β¬"
Config.CurrencySymbol = "β¬"
Config.CurrencyLabel = 'eur'
-- Output: 1.250,00 β¬Custom Currency
Cell Broadcast System
Overview
Cell broadcast technology allows emergency alerts and public messages to be sent to all mobile users on the server, simulating real-world emergency alert systems.
Basic Usage
Via Export
Via Command (In-Game)
Implementation Examples
Emergency Alert
Custom Sound Configuration
Replacing Default Sound
You can replace the default cell broadcast sound:
Location:
/ui/build/sounds/notifications/apps/cellBroadcast.mp3Format: MP3 recommended
Duration: Keep under 3 seconds for better user experience
Volume: Ensure it's attention-grabbing but not jarring
Death/Revive Handling
Overview
The phone system can be configured to restrict phone usage when players are dead or unconscious, adding realism to the roleplay experience.
Basic Configuration
Configure death handling in client/custom/functions/death.lua:
Last updated