Config

Config = {}

Config.Locale = 'de'        -- Configure your language: locals en, de, fr
Config.WashRate = 0.8       -- What percentage does the user get after washing?
Config.MinAmount = 50       -- How much washing must the user perform at a minimum?
Config.Cooldown = 10        -- How long should the washing process take?

Config.Locations = {
  vector3(212.6990, -946.7010, 30.6868) -- Legion Square Laundromat,
}

Config.Marker = {
  enabled = true,

  type = 29, -- Marker Type (29 = $) https://wiki.rage.mp/wiki/Markers
  drawDistance = 25.0,

  size = {
    x = 1.0, -- length
    y = 1.0, -- Width
    z = 1.0  -- Height
  },

  color = {
    r = 170,
    g = 120,
    b = 255,
    a = 180
  },

  zOffset = 0.5,       -- Marker slightly above the ground (prevents flickering)
  interactDistance = 1.6 -- Press E
}

Config.DiscordWebhook = {
  enabled = false, -- true = on, false = disabled
  url = 'HERE_YOUR_DISCORD_WEBHOOK_URL', -- Your webhook URL here
  color = 10181046 -- optional (purple)
}

Zuletzt aktualisiert