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

Jammer System

Guide to understand how jammer config works

Shared.Jammer = {
    state = true, -- to use jammer system or not 
    model = 'sm_prop_smug_jammer', -- prop to spawn for jammer
    distance = 30.0, -- range of jammer effective
    permission = {"police"}, -- permission how can setup jammer (job/gang)
    default = { -- default jammer setup location 

        --[[ template to add jammer locations
        {
            id = string, -- provide a unique of jammer tower
            coords = vector4, -- location of jammer
            range = number, -- range of jammer effectiveness
            allowedChannels = number[] -- bypass frequency in jammer 
            canRemove = false, -- best to set it to false (allow to remove jammer)
            canDamage = boolean -- jammer can be destroyed
        },]]
        
        -- example
        { 
            id = 'police', -- provide a unique of jammer tower
            coords = vec4(230, -1562, 28.6, 125), -- location of jammer
            range = 15, -- range of jammer effectiveness
            allowedChannels = { 98.0 }, -- bypass frequency in jammer
            canRemove = false, -- best to set it to false (allow to remove jammer)
            canDamage = false -- jammer can be destroyed
        }

    }
}

Last updated 1 year ago

๐ŸŽ
๐Ÿ“ป
๐Ÿ“’
๐Ÿ—ผ