How To ?
How To Adjust The Feautures for mScoreboard Resouce
How To Hide Other UI Elements ? ( HUD etc. )
Search " Config.MenuOpen " in config and in there you can trigger hide event of your hud to show hud again search " Config.MenuClose " and trigger show event of hud.
How To Add New Jobs ?
Search " Config.Jobs " in config and you can use the template below to add a new job.
["ambulance"] = {
bg = './images/ambulance-container.png',
logo = './images/ambulance-logo.png',
textColor = '#FF636A',
playerCount = 0, -- dont touch
}
Note : Key must be the job name.
How To Add New Robberies ?
Search " Config.Robberies " in config and you can use the template below to add a new robbery.
["jewelry_robbery"] = {
bgImage = "./images/jewelry-robbery.png",
label = "Jewelry Robbery",
requiredJobs = {"police", "fbi", "swat"},
minPolice = 3,
coords = {
vector3(222.4, 453.4, 20.4),
vector3(1341.4, 5363.4, 100.4),
}
}
Note : Key must be unique.
How To Change Language
Go to " shared/language.lua " and you can find it there.
Last updated