Added new functions

This commit is contained in:
2023-11-16 22:40:27 +01:00
parent 1f2e43392e
commit 229231d7d2
5 changed files with 96 additions and 108 deletions

View File

@@ -1,11 +1,18 @@
const { skywarsLevel } = require('./functions/skywars.js')
const { bedwarsLevel } = require('./functions/bedwars.js')
const { hypixelLevel } = require('./functions/hypixel.js')
const { guildLevel } = require('./functions/guild.js')
const { guildLevel, scaledGEXP } = require('./functions/guild.js')
const { getUUID, getIGN, getPlayer, getGuild, getHeadURL } = require('./functions/account.js')
module.exports = {
skywarsLevel,
bedwarsLevel,
hypixelLevel,
guildLevel
guildLevel,
scaledGEXP,
getUUID,
getIGN,
getPlayer,
getGuild,
getHeadURL
}