gearsConfig

config.lua
Config                            = {}

Config.Debug = true

-- framework is automatically detected but you can find all functions on bridge/ folder

Config.Locale = 'en' -- en/fi

Config.MaxGroup = 2 -- maximum players in one group

-- Reward settings
Config.Reward = {
    min = 300, -- minimum reward per fusebox
    max = 450, -- maximum reward per fusebox
}

-- Group reward settings
Config.SplitRewardForGroup = true -- if true, total reward is split between group members, if false each member gets full reward
Config.GroupBoost = 1.2 -- multiplier for group rewards (1.2 = 20% bonus)

Config.Center = {
	coords = vector4(-559.4611, -1804.3436, 21.6093, 335.1649),
	model = 's_m_m_dockwork_01',
	blip = {
		enabled = true,
		sprite = 354,
		color = 26,
		scale = 1.2,
		name = "Sähkötyö"
	},
	vehicleSpawn = {
		coords = vector4(-556.0381, -1792.8374, 22.3336, 332.1740),
		model = 'boxville',
	}
}

Config.UI = {

	showEarnedMoney = true,


}

-- Minigame settings
Config.Minigame = {
	duration = 30, -- Duration in seconds for the pipe minigame before fail
}

-- Outfit settings
Config.Outfit = {
	enabled = true, -- Enable outfit change when job starts
	male = {
		mask_1 = 0,
		mask_2 = 0,
		arms_1 = 0,
		arms_2 = 0,
		pants_1 = 9,
		pants_2 = 7,
		bag_1 = 0,
		bag_2 = 0,
		shoes_1 = 25,
		shoes_2 = 0,
		tshirt_1 = 59,
		tshirt_2 = 1,
		torso_1 = 56,
		torso_2 = 0,
	},
	female = {
		mask_1 = 0,
		mask_2 = 0,
		arms_1 = 6,
		arms_2 = 0,
		pants_1 = 30,
		pants_2 = 0,
		bag_1 = 0,
		bag_2 = 0,
		shoes_1 = 24,
		shoes_2 = 0,
		tshirt_1 = 15,
		tshirt_2 = 0,
		torso_1 = 109,
		torso_2 = 2,
	}
}


-- Electric job locations
Config.Points = {
	-- Each point is a location with multiple fuseboxes
	{
		center = vec3(-597.9613, 209.7794, 73.1749), -- Center point for the zone
		radius = 50.0, -- Radius for point zone activation
		fuseboxes = {
			vec4(-597.9613, 209.7794, 73.1749, 0.0000),
			vec4(-610.1917, 209.7916, 73.1681, 0.0000),
			vec4(-582.7914, 216.9728, 74.7987, 266.5000),
			vec4(-582.9752, 198.4397, 70.4988, 271.0000),
		}
	},
	
	-- purchased version includes ~20 preconfigured locations

}l

Last updated