Renovax Scripts
  • Hi
  • Yortis Series
    • Interactions
      • Instalation
      • Config
      • TEBEX
    • Food system
      • Instalation
      • Config
      • TEBEX
  • Golden Meow Series
    • Notification
      • Instalation
      • Showcase
      • TEBEX
  • Nobody
    • Electrician job
      • Config
      • Minigames
      • Instalation
      • TEBEX
Powered by GitBook
On this page
  • Minigames
  • Reward
  • Discord Logs
  • Station
  • Jobs
  • Config Code
  1. Nobody
  2. Electrician job

Config

There is all config

PreviousElectrician jobNextMinigames

Minigames

You can configure your own minigame. The Electrician job includes 2 installed minigames, but you can also use your own minigame in cl_edit.lua

Reward

You can customize how much money players make in a job

Discord Logs

Use Discord logs to track players who have completed job

Station

You can add more stations if needed, but the tasks at each in every station You can change the vehicle a player rent

Jobs

You can add more jobs and create your own locations and more.

Config Code

// ```lua
Config = {}

Config.Minigame = 'mxminigame' -- ox_lib = Ox Lib Skill Check, mxminigame = MX Fix Wiring, custom = Custom minigame in cl_edit.lua
                                                               -- Link in README.md or in docs


Config.RewardMin = 200
Config.RewardMax = 500
Config.DiscordWebhook = "your_discord_webhook"

Config.Station = {
    {
        pedcoords = vec4(242.7503, -1493.8263, 29.2916, 227.0450),
        zone = vec3(161.2, 172.7001, 105.9198),  
        model = 's_m_m_dockwork_01',
        carModel = 'utillitruck3',
        spawnPoint = vec3(245.9389, -1502.9315, 29.1431),
        deletePoint = vec3(245.9389, -1502.9315, 29.1431),
        heading = 235.8015
    }
}

Config.Jobs = {
    ['motel'] = {
        title = "Beach Motel",
        description = "Go and repair a broken vending machine.",
        coords = vec3(-1475.3960, -673.2315, 29.0420),
        icon = "fa-solid fa-plug",
        image = 'https://media.discordapp.net/attachments/1325495363787948075/1345743343056982138/image.png?ex=67c5a8a7&is=67c45727&hm=8bb8ed152d515d7d119489f96fc6575c83f496b77fe1d82254b1048a9e4c3185&=&format=webp&quality=lossless&width=1049&height=663'
    },
    ['repair_2'] = {
        title = "Fix Power Box",
        description = "Go and fix a power box in the city.",
        coords = vec3(313.4915, -1326.9407, 31.7706),
        icon = "fa-solid fa-bolt",
        image = ''
    }
}

```
MX FIX WIRING MINIGAME