Config

Here you can find all the configurations that you can set with our lootdrop script

Mio.Locals

Configure the different texts that should be output when notifying

Mio.Locals = {
  looterhalten = "You have collected the loot!",
  keinecrowbar = "You don't have the proper tool to break it open!",
  keinerechte = "You do not have permission to use this command!",
  textui  = "[E] Loot the loot drop",
  lootdropdeleted = "The nearest loot drop has been deleted.",
  lootdropnotfound = "No loot drop found nearby.",
  lootdropannounce = "A loot drop has been sighted!"
}

Mio.Base

Base Settings like Prop, time to loot, admin groups and commands

Mio.Debug = false -- Enable/disable debug mode (for error analysis)

Mio.Prop = "tr_prop_tr_container_01e" -- Prop used as loot drop
Mio.time = 10 -- Time in seconds a player needs to loot a loot drop
Mio.Groups = {"admin", "owner"} -- Groups that can manage loot drops

Mio.Blip = {
    enable = false, -- Enable/disable blip for loot drop
    sprite = 307, -- Icon for blip (https://docs.fivem.net/docs/game-references/blips/)
    color = 6, -- Color of the blip (https://docs.fivem.net/docs/game-references/blips/)
    scale = 1.5, -- Size of blip
    name = "Lootdrop" -- name of blip
}

Mio.OpenCommand = 'lootmenu' -- Command to open the loot drop menu
Mio.DeleteCommand = 'deleteld' -- Command to delete a loot drop

Mio.PlayerSettings

Settings for player to open lootdrops

Mio.Announce

set your own export for announce the lootdrop to every player on the server or use our announce through MIO NOTIFY

Mio.Notify

set your own notify export or use our MIO NOTIFY

Mio.TextUI

set your own textui export

Last updated