questionFAQ

In this channel, you’ll be able to find frequently asked questions about this script and about our store

❓ Can I modify any part of the resource's design?

Yes, the entire NUI section is fully editable

❓ How do I add my system for organizations or illegal groups so that when they click on Faction, their tablet opens?

It's very simple, go to the path jc_pausemenu/Editable/Client/CMain.lua and there you will find a function called OpenIlegalFraction() and you must add your export to open what you need. By default, it is automatically adapted to our system of illegals

function OpenIlegalFraction()
    if GetResourceState('jc_organizaciones') == 'started' then
        exports['jc_organizaciones']:OpenTabletOrgs()
    end

end

❓ How do I add my work system so that it opens on your work tablet?

It's very simple: go to the path jc_pausemenu/Editable/Client/CMain.lua and you'll find a function called OpenCurrentlyJob(). You need to add your export to open what you need

function OpenCurrentlyJob()
    print('[PauseMenu] Open Job Panel')
end

How can I make the battle pass button work so that a battle pass opens?

It's very simple: go to the path jc_pausemenu/Editable/Client/CMain.lua and you'll find a function called OpenBattlepass(). You need to add your export to open your battle pass or whatever you need

function OpenBattlepass()
    print('[PauseMenu] Open Battle Pass')
end

❓ How can I make the shop button open another shop or resource?

It's very simple: go to the path jc_pausemenu/Editable/Client/CMain.lua and you'll find a function called OpenShop(). You need to add your export to open your store or whatever you need

Last updated