zerio-bossmenu

This integration was created for version 1.2.4. I haven’t tested it on newer versions. If it doesn’t work for you, or if you have a better way to integrate it, feel free to contact me on Discord.

zerio-bossmenu

Go to zerio-bossmenu/server/functions.lua Find these functions and edit them like this :

		HirePlayer = function(identifier, jobname, gradenumber)
			if GetResourceState("nb_multijob") == "started" then
				exports["nb_multijob"]:addJob(identifier, jobname, tonumber(gradenumber))
			end
		end,

		FirePlayer = function(identifier, jobname)
			if GetResourceState("nb_multijob") == "started" then
				exports["nb_multijob"]:removeJob(identifier, jobname)
			end
		end,

		UpdateRank = function(identifier, jobname, newgrade)
			if GetResourceState("nb_multijob") == "started" then
				exports["nb_multijob"]:updateJobGrade(identifier, jobname, tonumber(newgrade))
			end
		end,

Last updated