Config
Config = {}
Config.Distance = 1.5
Config.Keyboard = {
point = {
message = 'Finger point',
key = 'b'
},
handsup = {
message = 'Hands up',
key = 'x',
vehicle = false
},
ragdoll = {
message = 'Ragdoll',
key = 'u'
}
}
Config.Items = {'handcuffs', 'rope'}
Config.allowedWeapons = {
'WEAPON_KNIFE',
'WEAPON_BOTTLE',
'WEAPON_DAGGER',
'WEAPON_HATCHET',
'WEAPON_MACHETE',
'WEAPON_SWITCHBLADE'
}
Config.EnableHandcuffTimer = true -- Enable handcuff timer? will unrestrain player after the time ends.
Config.HandcuffTimer = 10 * 60000 -- 10 minutes.
Config.ShowNotificationText = "La personne doit être menottée où lever les bras"
Config.RequiredItem = "Vous avez besoin de menotte ou d'une corde"
Config.Unrestrained_timer = "Vous sentez que vos menottes deviennent fragiles"
Config.TyreBurst = "Pneu déjà crevé"
Config.search = "Fouiller"
Config.search_img = "fa-solid fa-person"
Config.handcuff = "Menotter"
Config.handcuff_img = "fa-solid fa-handcuffs"
Config.escort = "Escoter"
Config.escort_img = "fa-solid fa-people-pulling"
Config.putveh = "Mettre dans véhicule"
Config.putveh_img = "fa-solid fa-people-pulling"
Config.outveh = "Sortir du véhicule"
Config.outveh_img = "fa-solid fa-people-pulling"
Config.slash = "Crever le pneu"
Config.slash_img = "fa-solid fa-thumbtack"
Config.push = "Commencez à pousser"
Config.push_img = "fa-solid fa-arrow-up"
Config.stop_push = "Arrêtez de pousser"
Config.stop_push_img = "fa-solid fa-arrow-down"
Config.billing_title = "Facture"
Config.input = "Entrer une valeur"
Config.carry = "Porter"
Config.carry_img = "fa-solid fa-people-pulling"
Config.billing = "Faire une facture"
Config.billing_img = "fa-solid fa-euro-sign"
Config.Unemployed = "Vous êtes pas dans une entreprise"
Config.healthMin = 2000.0 -- Minimum health of vehicle to be able to push it.
Config.TurnLeftKey = 'A' -- Keys to turn the vehicle while pushing it.
Config.TurnRightKey = 'D' -- Keys to turn the vehicle while pushing it.
Config.allowedBilling = {police=0}
Config.allowedHandcuff = nil -- example job name and minimum grade to acces
Last updated