-----------------For support, scripts, and more----------------
--------------- https://discord.gg/wasabiscripts -------------
---------------------------------------------------------------
Config = {}
------------------------------------------------------------------------------
-- Text UI's, notifications, frameworks, and other integrations can be made --
-- via dependency "wasabi_bridge" in the "customize" directory! --
------------------------------------------------------------------------------
Config.CheckForUpdates = true -- Recommended
Config.UIColor = '#1e8544' -- Color for UI elements
Config.toggleLockKey =
'U' -- Which key to register as toggle of vehicle locks?
Config.toggleSound = { audioName = 'BUTTON', audioRef = 'MP_PROPERTIES_ELEVATOR_DOORS' } -- Sound to play when locking/unlocking vehicle. Leave empty for no sound. Ref:gtaforums.com/topic/795622-audio-for-mods
Config.lockDistance = 10.0 -- Distance in which one can unlock their closest car?
Config.progressBar = false -- If true will use progress bar rather than progress circle.
Config.lockNPCVehicles = false -- Lock all NPC cars?
Config.robPedKeys = { -- Ability to rob peds at gun point for their keys
enabled = true, -- Enable robbing peds for their car keys?
timeToRob = 4, -- Duration(In seconds) to rob ped when approaching at gunpoint
label = 'Stealing Keys. . .'
}
Config.notifyPolice = {
enabled = true, -- Chance of notifying police when lockpicking, hotwiring, and/or robbing peds
hotwire = 50, -- Chance % of notifying police when hotwiring (50 = 50% chance)
lockpick = 30, -- Chance % of notifying police when lockpicking (30 = 30% chance)
robPed = 70, -- Chance % of notifying police when robbing ped (70 = 70% chance)
blip = {
enabled = true, -- Enable blip on map for police when notified?
sprite = 161, -- Blip sprite
color = 1, -- Blip color
scale = 0.7, -- Blip scale
short = false, -- Short blip
flashing = true, -- Blip flashing
duration = 20 -- Duration of blip on map (In seconds)
},
policeJobs = { -- Jobs that are considered police to notify
'police',
'sheriff',
-- 'highway'
}
}
Config.metadataKeys = { -- Metadata keys options (Requires inventory integrated into wasabi_bridge)
enabled = false, -- Enable metadata keys feature?
keyItem = 'carkeys', -- Item to use as car key
}
Config.givingKeys = { -- Giving keys options (only with metadata keys disabled)
enabled = true, -- Enable giving keys feature?
command = 'givekey', -- Desired command to give key
removeKey = true, -- Remove the key to vehicle from person giving key
menuPosition =
'bottom-right' -- Choose where player selection menu is positioned. Options : 'top-left' or 'top-right' or 'bottom-left' or 'bottom-right'
}
Config.manageKeys = { -- Manage keys in hand via menu (only with metadata keys disabled)
enabled = true, -- Enable this feature
command = 'managekeys', -- Command to open menu for opening key management menu (Set to false if not desired)
allowRemove = true, -- Allow removal of keys that were given
menuPosition =
'bottom-right' -- Choose where key selection menu is positioned. Options : 'top-left' or 'top-right' or 'bottom-left' or 'bottom-right'
}
Config.noKeysNeeded = { -- Vehicle models that don't require keys
'BMX',
'BMXST',
'CRUISER',
'FIXTER',
'SCORCHER',
'TRIBIKE',
'TRIBIKE2',
'TRIBIKE3',
-- Add more here if desired
}
Config.WhitelistedPlates = { -- Vehicle plates that don't require keys
'ADMIN',
-- Add more plates as desired
}
|