Master Mind Development
DiscordTebexGithub
  • ๐Ÿ’ฐPaid Release
    • ๐Ÿ“ฆAirdrop
      • โคต๏ธInstallation
        • ๐Ÿ‘œAdd Item
      • ๐Ÿ“’Configuration
        • ๐Ÿ’ชCore
        • ๐Ÿ‘œInventory
        • ๐Ÿ‘€Target
        • ๐ŸŽฎMinigame
      • ๐Ÿ‘จโ€๐Ÿ’ปCustomization
        • ๐Ÿ”ฅExplosive Crate
        • ๐Ÿ“งMail
    • ๐ŸŽ๏ธDealership
      • โคต๏ธInstallation
        • ๐Ÿ‘œAdd Item
        • ๐Ÿ‘จโ€๐Ÿ’ปInitializing/Configuration
        • ๐Ÿ“ธGenerate Vehicle Images
      • ๐Ÿ“’Configuration
        • ๐Ÿ’ชCore
        • ๐Ÿ‘œInventory
        • ๐Ÿ‘€Target
        • ๐Ÿ““Miscellaneous
      • ๐ŸฌHow to Add Custom Shop
      • โš ๏ธImportant Notes
  • ๐ŸŽFREE RELEASE
    • ๐Ÿ“ปRadio
      • โคต๏ธInsallation
        • ๐ŸŒ‰Bridge Setup
        • ๐Ÿ‘œAdd Item
        • ๐Ÿ‘จโ€๐Ÿ’ปHow to build svelte ui file?
      • ๐Ÿ“’Configuration
        • ๐Ÿ—ผJammer System
        • ๐Ÿ”‹Battery
        • ๐Ÿ“ปChannel Name
        • ๐Ÿ“ปRestricted Radio Channel
      • ๐Ÿ‘จโ€๐Ÿ’ปExports
      • ๐Ÿ’ปBranch
    • ๐Ÿ”‘Car Keys
      • โคต๏ธInstallation
        • ๐Ÿ‘œAdd Item
      • ๐Ÿ“’Configuration
        • ๐Ÿ’ชCore
        • ๐Ÿ‘œInventory
        • ๐Ÿ‘œStack Key
      • ๐Ÿ‘จโ€๐Ÿ’ปUseful Exports
Powered by GitBook
On this page
  1. FREE RELEASE
  2. Radio
  3. Configuration

Channel Name

Guide to understand how to change channel name

If you provide a simple channel number frequency, it will change that specific channel

Example:

["1"] = "MRPD CH#1", -- change name of channel 1 only

["1.1"] = "MRPD CH#1.1", -- change name of channel 1.1 only

["1.2"] = "MRPD CH#1.2", -- change name of channel 1.2 only

If you provide a formatter for the channel, it will change all frequency that matches the channel formatter

Example:

["1.%"] = "MRPD CH#1", -- change every matches 1.% ex: 1.1, 1.2, etc.

["2.%"] = "MRPD CH#2", -- change every matches 1.% ex: 2.1, 2.2, etc.

["3.%"] = "MRPD CH#3", -- change every matches 1.% ex: 3.1, 3.2, etc.

Shared.RadioNames = {
    -- template
    --[channel number: string] = string: channel name,
    
    -- example
    ["1"] = "MRPD CH#1", -- change name of channel 1 only
    ["1.%"] = "MRPD CH#1" -- change name of channel 1.% (ex: 1.1, 1.2, ... etc.)
}

Last updated 1 year ago

๐ŸŽ
๐Ÿ“ป
๐Ÿ“’
๐Ÿ“ป