How To Do

Here you can find out how to do some things.

How to enable SideJob - Other Job option

With this feature, you can enable people to use this system as a 2nd or 3rd profession by not using setJob functions by core.

Config.SideJob = true -- If you want to use the side job system, you can activate it here. If you want to use the main job system, you can disable it.

Send Trigger when a job is finished

When a profession is finished, you can send a Trigger/Export to another script using the function below with the finished profession information.

Config.JobSuccess = function(job, reward, index, currTime, usedExtraTime)
    print('Job Success', job, reward, index, currTime, usedExtraTime)
    -- Here your extra codes
end

Making a Level query when choosing a job

If you have a Level script on your server, you can make a query by finding the codes and file below. Thus, people will no longer be able to take that job without having the required level.

For this go to the following file path. wais-jobpack/client/editable.lua


Crane/Bucket Controls of Electrician Job

If you are doing the job in Multiplayer:

  • Get in the driver's seat.

  • Have your friend take the seat next to you.

  • Press H long in the driver's seat and lower the vehicle's feet to the ground.

  • Once the legs of the vehicle are on the ground, your friend will be given the option to switch to Crane/Bucket. He can start controlling it by pressing that button.


Run with a build version lower than 3258

You can run the jobpack on version 3095 or lower. To do so, follow these steps:

  • Find and delete the code gameBuild:3258 in fxmanifest.lua.

  • Go to the pizza_delivery table in the Config file and find the variable [“disabled”] = false. Change the value from false to true.


Have a job but nothing is happening / showing

The reason for this is that you have not set up the jobs or have set them up incorrectly.

  • For ESX, you need to read or add the jobs to the job and job_grades tables.

  • For QBCore || QBox, you need to define the jobs in Jobs.lua.

Last updated