Scripts
um-multicharacter
S- FAQ

FAQ

1.0

How can change the coordinates?

um-multicharacter > config > Config.Coords

Config.Coords = {
    Single = Coords.List[17], -- If random false [list/coordslist.lua]
    Random = false
}

1.1

How can change the slotlist (manuel)?

um-multicharacter > list > slotlist.lua

1.2

How can change the slotlist (discord perm)?

um-multicharacter > list > slotlist.lua

  • SlotList.DiscordPerm set status true
  • and organise the roles according to yourself

um-multicharacter > server > discord.lua

local discordConfig = {
    guild_id = '',
    bot_token = '',
}
  • Your created or existing discord bot must be on your server

1.3

How can hide hud?

um-multicharacter > config > Config.CustomHud

Config.CustomHud = function(bool)
    if bool then
        -- Example: exports['myhud']:SetDisplay(false)
        Debug('Hud is hidden', 'debug')
    else
        -- Example: exports['myhud']:SetDisplay(true)
        Debug('Hud is show', 'debug')
    end
end