Job Setup
This job is a requirement to be able to properly interact with the V2 functionality of this script
['hobo'] = {
label = 'Hobo',
defaultDuty = true,
offDutyPay = false,
grades = {
['0'] = {
name = 'Street Rat',
payment = 10
},
},
},['hobo'] = {
label = 'Hobo',
defaultDuty = true,
offDutyPay = false,
grades = {
[0] = {
name = 'Street Rat',
payment = 10
},
},
},INSERT IGNORE INTO `jobs` (`name`, `label`, `whitelisted`)
VALUES ('hobo', 'Hobo', 0);
INSERT INTO `job_grades` (`job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`)
SELECT 'hobo', 0, 'street_rat', 'Street Rat', 10, '{}', '{}' FROM DUAL
WHERE NOT EXISTS (SELECT 1 FROM `jobs` WHERE `name` = 'hobo' LIMIT 1);Last updated