Documentation
  • ScriptForge Documentation
  • Links
    • Discord
    • Youtube
    • Store
  • Crypto money washer
    • Configuration file
      • 💸Wallet
      • 🪙Bitcoins
      • 📀Custom bitcoins
      • ✂️Money Cut
      • 💼Job
      • 📚Item
      • 📌Marker
      • 🖱️UI command
      • 💰Take Bag_of_cash
      • 🏛️Deposit Bag_of_cash
      • 🚨Police alert
      • 🌴E-drugs
      • 🖥️Server farm
      • ⚖️Black market
      • 🌐VPN
    • Installation guide
    • Extras
      • MLO
      • Utility
Powered by GitBook
On this page

Was this helpful?

  1. Crypto money washer
  2. Configuration file

Job

Job settings overview

Config.lua
Config.allowedjobs = true -- Enable job check before using the UI [ true \ false ]
Config.allowedjobsname = {"hacker", "unemployed"}   -- Allowed job names (You can find\add it in MySQL table Jobs)
Config.allowedjobstxt = "You need an allowed job to use this." -- Hint if missing job

Config.allowedjobs If true check the player job before using the UI, else if false disable the requirement. Config.allowedjobsname List of allowed job names. Can be any jobs.

If you are missing the hacker job in your server, run this sql query:

SQL.sql
INSERT INTO `jobs` (`name`, `label`) VALUES ('hacker', 'Hacker');
INSERT INTO `job_grades` (`job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES ('hacker', 0, 'recruit', 'Recruit', 0, '{}', '{}');
INSERT INTO `job_grades` (`job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES ('hacker', 1, 'boss', 'Boss', 0, '{}', '{}');

PreviousMoney CutNextItem

Was this helpful?

💼