Exports (Client Side)
Client-sided exports
ShowJobStage
Shows the job stage container with the given data
-- With Status
local data = {
job = "Ammunation Heist",
title = "Rob the container <br/> Code: 0W0W",
hasStatus = true,
statusMessage = "NPC's",
statusValue = "1/10"
}
-- Without Status
local data = {
job = "Ammunation Heist",
title = "Rob the container <br/> Code: 0W0W",
hasStatus = false
}
exports["bd-jobstatus"]:ShowJobStage(data)
data (table):
The job, title & others.
UpdateJobStage
Shows the job stage container with the given data
-- With Status
local data = {
job = "HouseRobbery Heist",
title = "Rob the place",
hasStatus = true,
statusMessage = "Robbed",
statusValue = "1/10"
}
-- Without Status
local data = {
job = "HouseRobbery Heist",
title = "Rob the place",
hasStatus = false
}
exports["bd-jobstatus"]:UpdateJobStage(data)
data (table):
The job, title & others.
HideJobStage
Hides the job stage container
exports["bd-jobstatus"]:HideJobStage()