30 lines
No EOL
1.2 KiB
Lua
30 lines
No EOL
1.2 KiB
Lua
ScriptUtility = {}
|
|
|
|
ScriptUtility.Debug = true -- enables debug poly & prints.
|
|
|
|
ScriptUtility.Utility = {
|
|
Notify = 'ox', -- this is the notification system you would like to use
|
|
TextUI = 'ox', -- this is the text ui you would like to use
|
|
Debug = false, -- this is the debug mode, it will print out debug information to the console
|
|
FuelSystem = 'custom', -- [ox_fuel, LegacyFuel, custom] go to bridge/util.lua and add custom exports under custom
|
|
}
|
|
|
|
ScriptUtility.UsingCrossHairByDefault = false -- If your server has the default GTA 5 crosshair enabled for all players by modifying the default qb-smallresources script, set this to true. If not, leave it as is.
|
|
|
|
ScriptUtility.InventoryInformation = {
|
|
inventoryWeight = 120000,
|
|
inventorySlots = 31,
|
|
}
|
|
|
|
-- You can enable and disable content through this config
|
|
ScriptUtility.ContentSettings = {
|
|
AnimalTracker = true, -- Removes animal_tracker
|
|
PlaceableBait = true, -- Removes ability to place bait
|
|
Crossbow = true, -- Removes arrow logic
|
|
}
|
|
|
|
-- Weapons Configurations
|
|
ScriptUtility.ValidWeapons = {
|
|
GetHashKey("weapon_crossbow"),
|
|
GetHashKey("weapon_huntingrifle")
|
|
} |