Luman Studio
TebexDiscordYouTube
  • Documentation
  • FiveM Scripts
    • Squid Game
      • Doll Game
        • Installation
        • Customization
      • Dalgona Game
        • Installation
        • Customization
        • Manual Mode
      • Crystal Game
        • Installation
        • Customization
      • Mingle Game
        • Installation
        • Customization
      • Lobby MLO
        • Installation
        • Customization
  • Ghostbusters
    • Installation
    • Customization
  • Flatout Game
    • Ski Stunt
      • Installation
      • Customization
    • Cannon Stunt
      • Installation
      • Customization
  • Easter Game
    • Installation
    • Customization
  • RedM Scripts
    • Dragon Rider
      • Installation
      • Config and Permissions
      • More Dragons
      • Events
    • Bear Trap
      • Installation
      • Customization
    • Red Light
      • Installation
      • Customization
Powered by GitBook
On this page
  1. Ghostbusters

Customization

We provide advanced and flexible set of customization options:

Basic options
-------------------------
-- Basic Configuration --
-------------------------
Config.Fee = 100
Config.MinimumParticipants = 2
Config.RoutingBucket = {
    world = 0,
    game = 1,
}
Config.StartPoint = vec3(2125.75, 4802.47, 41.02)
Config.GameDuration = 120000 
Config.GameStartInterval = 10000
Config.Locale = "en"
Config.GameName = "Ghost Busters"
Config.StartPointSize = 7.5
Config.StartPointColor = {0, 255, 0, 125}
Config.StartPointBlip = {
    Id = 484,
    Color = 1,
    Scale = 0.75,
    Enabled = true,
}
Config.ShowWinnerMessageGlobally = false
Config.EnableMusic = false
Config.CarModel = 'ecto1'
Config.SlimerPedModel = 'a_f_m_fatcult_01'

--------------------------
-- Teleport Coordinates --
--------------------------
Config.SpawnCoords = {
    Busters = {
        vec3(2423.74, 4975.18, 45.94),
    },
    Slimer = {
        vec3(2437.05, 4976.14, 51.55),
    },
    GameSuccess = { 
        vec3(2078.17, 4780.24, 41.37),
    },
    GameFailed = { 
        vec3(2078.17, 4780.245, 41.37),
    }
}

--------------------
-- Player Clothes --
--------------------
Config.PlayerOutfits = {
    ["male"] = {
        {
            -- pants_1, pants_2
            [4] = {37, 1},
             -- shoes_1, shoes_2
            [6] = {1, 0},
            -- tshirt_1, tshirt_2
            [8] = {57, 0},
            -- torso_1, torso_2
            [11] = {244, 0},
            -- mask_1, mask_2
            [1] = {0, 0},
            -- arms, arms_2
            [3] = {61, 0},
            -- bags_1, bags_2
            [5] = {61, 0},
            -- chain_1, chain_2
            [7] = {0, 0},
            -- bproof_1, bproof_2
            [9] = {0, 0},
            -- decals_1, decals_2
            [10] = {63, 0},
        },
    },
    ["female"] = {
        {
            [4] = {49, 1},
            [6] = {36, 0},
            [8] = {15, 0},
            [11] = {252, 0},
            [1] = {0, 0},
            [3] = {15, 0},
            [5] = {61, 0},
            [7] = {0, 0},
            [9] = {0, 0},
            [10] = {72, 0},
        },
    }
}

Advanced options
------------------
-- Game Balance --
------------------
Config.BusterStrength = 60 -- Damage which is received by Slimer from 1 buster attack
Config.SlimersMaxAmount = 2
Config.SlimerHealth = 1000 -- Ghost Health (0/1000)
Config.SlimerHealthBoostValue = 20
Config.SlimerHealthBoostCoords = {
    vec3(2449.12, 4980.06, 58.02),
}
Config.BoosterActivityTime = 15000
Config.DecreaseSlimerHealthDuringTime = true
Config.RestrictSlimerFromTakingBoosterIfHealthIsFull = false
Config.FlashBoosterAreaWhenSlimerIsNear = false

-------------------------
-- Player Tick Options --
-------------------------
Config.InGameTick = function(playerPed)
    DisableControlAction(2, 37, true) -- Disable Weaponwheel
    DisableControlAction(0, 45, true) -- Disable reloading
    DisableControlAction(0, 24, true) -- Disable attacking
    DisableControlAction(0, 263, true) -- Disable melee attack 1
    DisableControlAction(0, 140, true) -- Disable light melee attack (r)
    DisableControlAction(0, 142, true) -- Disable left mouse button (pistol whack etc)
end

---------------------
-- Clothes options --
---------------------
Config.UsePedModelsInsteadOutfitsForPlayers = false
Config.PlayerPeds = {"u_m_y_zombie_01", "u_m_y_mani", "u_m_y_juggernaut_01", "u_m_m_streetart_01", "ig_rashcosvki", "ig_claypain"}

---------------------------
-- Game Location Options --
---------------------------
Config.GameZoneCenterCoords = vec3(2426.04, 4980.31, 45.92)
Config.GameZoneRadius = 280.0

PreviousInstallationNextFlatout Game

Last updated 2 months ago