![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) main image](https://forum-cfx-re.akamaized.net/original/4X/f/6/2/f626808ee3b649357fc96f93847484a84fec4a5e.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 1](https://forum-cfx-re.akamaized.net/original/4X/f/6/2/f626808ee3b649357fc96f93847484a84fec4a5e.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 2](https://forum-cfx-re.akamaized.net/original/4X/5/5/4/554ad485999590cea518284d6c689b230e02c244.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 3](https://forum-cfx-re.akamaized.net/original/4X/2/7/f/27f2a8f998320fa690dac7fdb5ef4d930a6673f8.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 4](https://forum-cfx-re.akamaized.net/original/4X/6/0/4/604a7dbb356efe22c2674f59187e1e07e0287b69.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 5](https://forum-cfx-re.akamaized.net/original/4X/6/4/b/64b90f66e400b4f6629cc8274c4b29cc19a6223f.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 6](https://forum-cfx-re.akamaized.net/original/4X/5/7/d/57df7a15e02ddf94b6219114e6a4ddaf55b9a642.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 7](https://forum-cfx-re.akamaized.net/original/4X/7/d/e/7de7c77c26c692cf2bc1c8059b480f7966657617.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 8](https://forum-cfx-re.akamaized.net/original/4X/d/f/2/df24c48d333363d8efe476795819efec7baf7f22.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 9](https://forum-cfx-re.akamaized.net/original/4X/8/3/f/83f15c32deab8d5d0271ff20520c8c007e813afb.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 10](https://forum-cfx-re.akamaized.net/original/4X/0/7/1/071dcf0dbe60163ea279260ff7c46c4737779e60.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 11](https://forum-cfx-re.akamaized.net/original/4X/4/3/e/43e75f3cada18ea770e1159a21e6a26c99d6cd7e.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 12](https://forum-cfx-re.akamaized.net/original/4X/e/b/c/ebc015e22ca1507b3aab7e327c83748cb10cc509.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 13](https://forum-cfx-re.akamaized.net/original/4X/4/9/2/492ec08483f413b4ddccf2bbc8e491e11e1da174.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 14](https://forum-cfx-re.akamaized.net/original/4X/9/1/f/91fd8c80bb2939905a4ec51275e52e6dbb26ddf8.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 15](https://forum-cfx-re.akamaized.net/original/4X/8/c/2/8c265ca8dea2621ccc0e3103ce5fb60ffddb6beb.png)
![[ESX] MONO SOCIETY ( Boss Menu - Off Duty - MultijobMenu ) ( Service time count) thumbnail 16](https://forum-cfx-re.akamaized.net/optimized/4X/a/4/1/a41299d14ab2d56a6ef07bf3c37217f8e49f3310_2_260x499.jpeg)
Price
UnknownA script by MOONO
Price
UnknownPreview
Tebex 12.10€ - ESCROW
https://mono-scripts.tebex.io/package/5685270
THIS CODE HAS A “BRIDGE” TO BE REPLACED BY ESX_SOCIETY.**
If you are using mono_society, you can delete esx_society.
Automatically opens the menus of societies that use esx_society.
FEATURES
Multijob Menu
Command
Discord LOGS
Independent Logs for Each Job (server/discord.lua)
-- Export
local distance = 5 -- Minimum distance with another player
exports['mono_society']:OpenNearbyJobs(distance)
-- Example Command
RegisterCommand('mono_society:OpenNearbyJobs', function()
exports['mono_society']:OpenNearbyJobs(5)
end)
----- TriggerEvent
TriggerEvent('mono_society:BossMenu', { job = job })
----- Example to open police Boss Menu Client
TriggerEvent('mono_society:BossMenu', { job = 'police' })
-- Export
exports['mono_society']:GetPlayerInfo(PlayerId, job)
-- Example Command
RegisterCommand('infoplayer:mono_society', function(args)
local PlayerId = PlayerId() -- Id Player.
local job = 'police' -- Job we want information about.
local info = exports['mono_society']:GetPlayerInfo(PlayerId, job)
local labels = json.decode(info.labels)
-- Verify if the player has the necessary hours of work for some action.
if info.totaltime > '0:24:00:00' then
-- If the player has the hours.
print('You have the necessary hours, ' .. info.totaltime)
else
-- The player does not have the hours.
print('You lack hours, ' .. info.totaltime)
end
-- Check if the player is on duty, 1 = on duty, 0 = off duty
if info.estado == 1 then
-- Player is on duty
print('On duty' .. info.estado)
elseif info.estado == 0 then
-- Player is off duty
print('Off duty' .. info.estado)
end
-- VALUES
print('TOTAL TIME: ' .. info.totaltime) -- 00:00:00:00
print('SERVICE: ' .. info.estado) -- 1 = on duty, 0 = off duty
print('JOB NAME: ' .. info.job) -- police
print('JOB GRADE NAME: ' .. labels.grade_name) -- boss
print('JOB LABEL: ' .. labels.name_label) -- LSPD
print('JOB GRADE LABEL: ' .. labels.grade_label) -- Captain
end)
CONFIG
This code is very easy to manage, and everything is explained on how it works in config.lua. If you purchase this code, you will receive support from me at any time.
Tebex 12.10€ - ESCROW
https://mono-scripts.tebex.io/package/5685270
|------------------------------------|---------------------------------------------|
| Code is accessible | Some functions.
| Subscription-based | No
| Lines (approximately) | server 800+ / client 800+
| Requirements | ESX FrameWork, ox_lib
| Support | YES
|-----------------------------------------------------------------------------------|
My free scripts.
No approved reviews found for this script yet.