FAQ
In this channel, you’ll be able to find frequently asked questions about this script and about our store
❓ Does the system of criminal organizations bring with it a drug system?
Yes, it includes the drug sales system; it doesn't currently include the farming system, but we do cover all drug sales
❓Can I restrict groups from accessing the administrative area?
Yes, you have a configuration in Setting.lua called Config.AllowedIdentifiers and Config.Groups where you can configure everything correctly with your permissions
❓How can I get him to give me the black money from drugs?
Go to Config/Drugs.lua and for each drug you have a paymentType setting; you'll need to configure cash if you want cash or black if you want black money
Additionally, if you use QB Core and use black_money as an item, you will need to make this change in the following path: jc_organizaciones/Editable/Server/Framework/SMain.lua
Replace this function:
function AddBlackMoney(xPlayer, amount)
if Config.Framework == "esx" then
xPlayer.addAccountMoney("black_money", amount)
elseif Config.Framework == "qb" then
xPlayer.Functions.AddItem("black_money", amount)
end
end❓ Who can create organizations?
Only the administrative team can create them for security and gameplay reasons; users will also be able to access many other things from each organization's intuitive tablet panel
❓ How is a territory created?
The territories are created with graffiti, then they can advance into the territory by selling drugs within those territories
❓ How do territories work?
They are placed with graffiti, and for each territory you can place a maximum of 5 graffiti (the script doesn't allow you to place more unless you change it in the config). Each graffiti counts for 10%, meaning you can only have 50% of the territory with graffiti; you'll have to get the other 50% by selling drugs, for example.
❓ Can new missions be created?
No, currently new missions cannot be created. We control the missions since the code is encrypted. However, there is a specific configuration for each mission
❓ Is there a system for logging actions?
Yes, we have a comprehensive configuration to add all types of system logs from criminal organizations.
❓ Can I have Config.Debug mode enabled (true)?
No, this mode is for the exclusive use of programmers and developers of the resource. For proper functioning in normal environments, this option should always be set to false.
❓ Can I restart the jc_organizaciones resource?
You can certainly perform a brief and precise test without players if you wish, but it wouldn't be advisable if you want the resource to function correctly without any problems.
❓ How can I change my notification system or help notify settings to use the ones I want?
To change notifications, go to the following paths:
jc_organizaciones/Editable/Client/Framework/CMain.lua
jc_organizaciones/Editable/Server/Framework/SMain.lua
To change the help notify settings, go to:
jc_organizaciones/Editable/Client/CMain.lua
❓ How many points does each level have?
Each level of each organization is composed of a total of 1000 points, and there is a maximum of 10 levels, therefore a maximum of 10,000 points
Last updated