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
}
- Here you can select the coordinate you want by changing the number, but where is this list?
um-multicharacter > list > coordslist.lua
- 📍 [Beta] Coords List (opens in a new tab)
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
discordConfig.guild_id
set your guild id get_guild_id (opens in a new tab)discordConfig.bot_token
set your bot token get_token (opens in a new tab)
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