Peuren
  • 🏠Home
  • Store
  • Discord
  • 🛠️PEUREN_LIB
    • 📩Installation
    • ⚙️Configuration
  • 🔏PEUREN_BURGLARY
    • 📩Installation
    • ⚙️Configuration
      • Basic Configuration
      • Dealers
      • Skills
      • Pawnshop
      • Shells
      • Rewards
  • 🎣PEUREN_FISHING
    • 📩Installation
    • ⚙️Configuration
      • Fishing Rods
      • Baits
      • Skills
      • Shops
  • 🚘PEUREN_CHOPSHOP
    • 📩Installation
    • ⚙️Configuration
      • Basic Configuration
      • Dealers
      • Skills
      • Pawnshops
      • Locations
      • Rewards
  • 💰 PEUREN_GRUPPE6
    • 📩Installation
    • ⚙️Configuration
      • Locations
      • Job ranks
      • Job center
      • Basic Configuration
    • 💻Exports and Events
      • UI
      • Job rank
  • 📫 PEUREN_DELIVERIES
    • 📩Installation
    • ⚙️Configuration
      • Locations
      • Job ranks
      • Job center
      • Basic Configuration
    • 💻Exports and Events
      • UI
      • Job rank
  • 🚜 PEUREN_FARMERJOB
    • 📩Installation
    • ⚙️Configuration
      • Job center
      • Basic Configuration
      • Job ranks
    • 💻Exports and Events
      • UI
      • Job rank
  • ⛏️ PEUREN_MINERJOB
    • 📩Installation
    • ⚙️Configuration
      • Job center
      • Basic Configuration
      • Job ranks
    • 💻Exports and Events
      • UI
      • Job rank
  • 💀PEUREN_GANGS
    • 📩Installation
    • ⚙️Configuration
      • Config
      • Dealers
      • Contracts
      • Graffities
      • Upgrades
      • Zones
    • 💻Exports
  • PEUREN_GARBAGEJOB
    • 📩Installation
    • ⚙️Configuration
      • Job center
      • Basic Configuration
      • Recycling job
      • Collection job
  • 🥦PEUREN_DRUGS
    • 📩Installation
    • ⚙️Configuration
      • Config
      • Cocaine & Crack
      • Meth
      • Weed
      • Oxy
      • Drug labs
      • Effects
      • Burner phone contacts
      • Money laundering
      • Burner phone
      • Selling
      • Props
      • Reputation
      • Skills
Powered by GitBook
On this page
  • Key binds
  • Outfits
  • Blips
  1. 🚜 PEUREN_FARMERJOB
  2. Configuration

Basic Configuration

Configuration of the basic script functions

Key binds

This file can be located in peuren_farmerjob/shared/sh_main.lua.

Config.Keybinds = {
    placeObject = 73,--Keybind to place the bag on the ground
}

Outfits

This file can be located in peuren_farmerjob/shared/sh_main.lua.

Config.Outfits = {
    [`mp_m_freemode_01`] = {--Male clothes
        tshirt_1 = 15,
        tshirt_2 = 0,
        arms     = 19,
        torso_1  = 22,
        torso_2  = 0,
        pants_1  = 90,
        pants_2  = 0,
        shoes_1 = 1,
        shoes_2 = 0,
        chain_1 = 0,
        chain_2 = 0,
        glasses_1 = 0,
        glasses_2 = 0,
        ears_1 = 0,
        ears_2 = 0,
    },
    [`mp_f_freemode_01`] = {--Female clothes
        tshirt_1 = 14,
        tshirt_2 = 0,
        arms     = 15,
        torso_1  = 173,
        torso_2  = 0,
        pants_1  = 78,
        pants_2  = 2,
        shoes_1 = 77,
        shoes_2 = 0,
        chain_1 = 0,
        chain_2 = 0,
        glasses_1 = 0,
        glasses_2 = 0,
        ears_1 = 0,
        ears_2 = 0,
    },
}

Blips

This file can be located in peuren_farmerjob/shared/sh_main.lua.

Config.Blips = {
    center = {
        sprite = 478,--Blip icon id
        color = 5,--Blip color id
        scale = 1.0,--Blip scale
        label = "Farmer job site",--Blip label
        radius = {
            enabled = false,--If radius is enabled, players will have to find the car in that radius, otherwise it will add a blip directly on the car
            sprite = 9,--Radius id
            color = 18,--Radius color id
            offsets = math.random(-170.0, 170.0),--Radius offset,
            radius = 250--Radius size,
        }
    },    

    deliver = {
        sprite = 480,--Blip icon id
        color = 5,--Blip color id
        scale = 1.0,--Blip scale
        label = "Deliver the produce",--Blip label
        radius = {
            enabled = false,--If radius is enabled, players will have to find the car in that radius, otherwise it will add a blip directly on the car
            sprite = 9,--Radius id
            color = 18,--Radius color id
            offsets = math.random(-170.0, 170.0),--Radius offset,
            radius = 250--Radius size,
        }
    },

    Task = {
        sprite = 285,--Blip icon id
        color = 5,--Blip color id
        scale = 1.0,--Blip scale
        label = "Job task",--Blip label
        radius = {
            enabled = false,--If radius is enabled, players will have to find the car in that radius, otherwise it will add a blip directly on the car
            sprite = 9,--Radius id
            color = 18,--Radius color id
            offsets = math.random(-170.0, 170.0),--Radius offset,
            radius = 250--Radius size,
        }
    }
}
PreviousJob centerNextJob ranks

Last updated 1 year ago

⚙️