Basic Configuration

Configuration of the basic script functions

Misc options

This file can be located in peuren_towjob/shared/sh_main.lua.

Config.GroupMemberLimit = 10 --How many players can be in a single group, to disable this option set it to false

Config.ApplyOutfit = true --When starting a job apply job clothes to players

Config.TabletCommand = false--Tablet open command or just set it to false, example: Config.TabletCommand = 'tablet'

Config.RequiredJob = false--Required job to access the tow job, Config.RequiredJob = "you job name here"

Config.TabletItem = 'towing_tablet'--If you want to disable this set it to Config.TabletItem = false

Config.PedRenderDistance = 50.0--The distance required to be to a tow job ped and vehicle to be able to see it

Outfits

This file can be located in peuren_towjob/shared/sh_main.lua.

Config.Outfits = {--Job outfits
    [`mp_m_freemode_01`] = {--Male
        tshirt_1 = 15,
        tshirt_2 = 0,
        arms     = 19,
        torso_1  = 22,
        torso_2  = 0,
        pants_1  = 90,
        pants_2  = 0,
        shoes_1 = 1,
        shoes_2 = 0,
        chain_1 = 0,
        chain_2 = 0,
        glasses_1 = 0,
        glasses_2 = 0,
        ears_1 = 0,
        ears_2 = 0,
    },
    [`mp_f_freemode_01`] = {--Female
        tshirt_1 = 14,
        tshirt_2 = 0,
        arms     = 15,
        torso_1  = 173,
        torso_2  = 0,
        pants_1  = 78,
        pants_2  = 2,
        shoes_1 = 77,
        shoes_2 = 0,
        chain_1 = 0,
        chain_2 = 0,
        glasses_1 = 0,
        glasses_2 = 0,
        ears_1 = 0,
        ears_2 = 0,
    },
}

Blips

This file can be located in peuren_towjob/shared/sh_main.lua.

Config.Blips = {
    center = {
        disable = false,--Disable this blip?
        sprite = 477,--Blip icon id
        color = 5,--Blip color id
        scale = 1.0,--Blip scale
        label = "Tow job",--Blip label
    },

    alertLocation = {
        disable = false,--Disable this blip?
        sprite = 380,--Blip icon id
        color = 46,--Blip color id
        scale = 1.0,--Blip scale
        label = "Customer",--Blip label
        route = true,
        radius = {}
    },

    mechanicLocation = {
        disable = false,--Disable this blip?
        sprite = 524,--Blip icon id
        color = 46,--Blip color id
        scale = 1.0,--Blip scale
        label = "Mechanic garage",--Blip label
        route = true,
        radius = {}
    }
}

Last updated