ByYoSe Docs
BoutiqueSupportYoutube
  • 👋Documentation ByYoSe
  • ⚙️SCRIPTS - FIVEM
    • ByYoSe Crime Missions
      • Configuration
    • ByYoSe GoFast
      • Configuration
    • ByYoSe Truck Driver
      • Configuration
    • ByYoSe Bag Pick
      • Configuration
    • ByYoSe Mortier
      • Configuration
  • ⚙️ADDONS - GMOD
    • ByYoSe Shop InGame
      • Configuration
    • ByYoSe Dirty Money
      • Configuration
Propulsé par GitBook
Sur cette page
  1. SCRIPTS - FIVEM
  2. ByYoSe Bag Pick

Configuration

ByYoSe = {}
ByYoSe.Config = {}

ByYoSe.Config.License = "" -- Your license is available on your account or was obtained when you purchased the script.

ByYoSe.Config.Locale = 'fr' -- locale for the script (fr, en)

ByYoSe.Config.Notify = 'ESX' --okokNotify or ESX

ByYoSe.Config.Job = {
    'police',
    'gendarme'
}

ByYoSe.Config.RewardRob = {
    {
        item = "money",
        amount = 5
    },
    {
        item = "money",
        amount = 10
    },
    {
        item = "money",
        amount = 15
    },
    {
        item = "money",
        amount = 20
    },
    {
        item = "money",
        amount = 25
    },
    {
        item = "money",
        amount = 30
    },
    {
        item = "money",
        amount = 35
    },
    {
        item = "money",
        amount = 40
    },
}

ByYoSe.Config.Language = {}

ByYoSe.Config.Language['fr'] = {
    text = 'Appuyez sur E pour voler le sac',
    call_police = "Un individu a été témoin de l'agression d'une femme par une personne cherchant à dérober son sac à main.",
    blip_text = "Agression en cours",
    search = "Pressez la touche [G] afin d'effectuer une fouille du sac.",
    search_progress = "Fouille en cours..."
}

ByYoSe.Config.Language['en'] = {
    text = 'Press E to snatch the bag',
    call_police = "A bystander witnessed a woman being assaulted by an individual attempting to steal her handbag.",
    blip_text = "Assault in progress",
    search = "Press the [G] key to conduct a search of the bag.",
    search_progress = "Searching in progress..."
}

function getSetence(id)
    return ByYoSe.Config.Language[ByYoSe.Config.Locale][id]
end 
PrécédentByYoSe Bag PickSuivantByYoSe Mortier

Dernière mise à jour il y a 1 an

⚙️