├── .gitignore ├── .gitmodules ├── Dockerfile ├── README.md ├── apiTools ├── apiTools.js ├── lbProxy.js ├── leaderboardGrabber.js ├── mysticLogging.js ├── playerDocRequest.js ├── playerRequest.js ├── rateLimiter.js └── scammerGrabber.js ├── discordBot ├── Command.js ├── Permission.js ├── TradeCenter.json ├── botAdminCommands │ ├── eval.js │ └── index.js ├── commands │ ├── color.js │ ├── index.js │ ├── invite.js │ ├── pitpanda.js │ ├── profile.js │ ├── scammer.js │ ├── scammerlist.js │ └── verify.js ├── index.js ├── pitPandaAdminCommands │ ├── index.js │ ├── pitpandatag.js │ └── special.js ├── staffCommands │ ├── embed.js │ ├── flag.js │ ├── index.js │ └── whois.js └── utils.js ├── enchants.json ├── imageApi └── index.js ├── index.js ├── indexer ├── index.js ├── old.js.save └── prestigeOrderLB.js ├── microTools ├── randomstuffs │ ├── hatColors.js │ └── hatColors2.js └── resetRateLimit.js ├── minecraftItems.json ├── models ├── ApiKey.js ├── ApiStat.js ├── DiscordUser.js ├── HypixelUsage.js ├── Mystic │ ├── EnchantSchema.js │ ├── ItemSchema.js │ └── index.js └── Player │ ├── FlagSchema.js │ ├── ProfileDisplaySchema.js │ ├── index.js │ └── leaderboardFields.js ├── package.json ├── redis └── scripts │ └── rateLimitManager.lua ├── routes ├── Add.js ├── Bot │ ├── index.js │ └── profile.js ├── ChatTriggers.js ├── Custom │ ├── PlayerItems.js │ ├── Rainmeter.js │ ├── Wonderpants.js │ └── index.js ├── DiscordToDocs.js ├── Dump.js ├── Friends.js ├── Images.js ├── Indexer.js ├── Item.js ├── ItemSearch.js ├── KeyGen.js ├── KeyInfo.js ├── Leaderboard.js ├── NewMystics.js ├── PlayerDoc.js ├── Players.js ├── Position.js ├── RandomPlayers.js ├── Username.js └── index.js ├── setup.js ├── structures ├── Item.js ├── Pit.js ├── Prestige.js ├── Progress.js ├── SimpleItem.js ├── UnlockCollection.js └── UnlockEntry.js └── utils ├── ImageHelpers.js ├── RedisClient.js └── TextHelpers.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/README.md -------------------------------------------------------------------------------- /apiTools/apiTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/apiTools.js -------------------------------------------------------------------------------- /apiTools/lbProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/lbProxy.js -------------------------------------------------------------------------------- /apiTools/leaderboardGrabber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/leaderboardGrabber.js -------------------------------------------------------------------------------- /apiTools/mysticLogging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/mysticLogging.js -------------------------------------------------------------------------------- /apiTools/playerDocRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/playerDocRequest.js -------------------------------------------------------------------------------- /apiTools/playerRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/playerRequest.js -------------------------------------------------------------------------------- /apiTools/rateLimiter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/rateLimiter.js -------------------------------------------------------------------------------- /apiTools/scammerGrabber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/apiTools/scammerGrabber.js -------------------------------------------------------------------------------- /discordBot/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/Command.js -------------------------------------------------------------------------------- /discordBot/Permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/Permission.js -------------------------------------------------------------------------------- /discordBot/TradeCenter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/TradeCenter.json -------------------------------------------------------------------------------- /discordBot/botAdminCommands/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/botAdminCommands/eval.js -------------------------------------------------------------------------------- /discordBot/botAdminCommands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/botAdminCommands/index.js -------------------------------------------------------------------------------- /discordBot/commands/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/color.js -------------------------------------------------------------------------------- /discordBot/commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/index.js -------------------------------------------------------------------------------- /discordBot/commands/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/invite.js -------------------------------------------------------------------------------- /discordBot/commands/pitpanda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/pitpanda.js -------------------------------------------------------------------------------- /discordBot/commands/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/profile.js -------------------------------------------------------------------------------- /discordBot/commands/scammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/scammer.js -------------------------------------------------------------------------------- /discordBot/commands/scammerlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/scammerlist.js -------------------------------------------------------------------------------- /discordBot/commands/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/commands/verify.js -------------------------------------------------------------------------------- /discordBot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/index.js -------------------------------------------------------------------------------- /discordBot/pitPandaAdminCommands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/pitPandaAdminCommands/index.js -------------------------------------------------------------------------------- /discordBot/pitPandaAdminCommands/pitpandatag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/pitPandaAdminCommands/pitpandatag.js -------------------------------------------------------------------------------- /discordBot/pitPandaAdminCommands/special.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/pitPandaAdminCommands/special.js -------------------------------------------------------------------------------- /discordBot/staffCommands/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/staffCommands/embed.js -------------------------------------------------------------------------------- /discordBot/staffCommands/flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/staffCommands/flag.js -------------------------------------------------------------------------------- /discordBot/staffCommands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/staffCommands/index.js -------------------------------------------------------------------------------- /discordBot/staffCommands/whois.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/staffCommands/whois.js -------------------------------------------------------------------------------- /discordBot/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/discordBot/utils.js -------------------------------------------------------------------------------- /enchants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/enchants.json -------------------------------------------------------------------------------- /imageApi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/imageApi/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/index.js -------------------------------------------------------------------------------- /indexer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/indexer/index.js -------------------------------------------------------------------------------- /indexer/old.js.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/indexer/old.js.save -------------------------------------------------------------------------------- /indexer/prestigeOrderLB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/indexer/prestigeOrderLB.js -------------------------------------------------------------------------------- /microTools/randomstuffs/hatColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/microTools/randomstuffs/hatColors.js -------------------------------------------------------------------------------- /microTools/randomstuffs/hatColors2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/microTools/randomstuffs/hatColors2.js -------------------------------------------------------------------------------- /microTools/resetRateLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/microTools/resetRateLimit.js -------------------------------------------------------------------------------- /minecraftItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/minecraftItems.json -------------------------------------------------------------------------------- /models/ApiKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/ApiKey.js -------------------------------------------------------------------------------- /models/ApiStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/ApiStat.js -------------------------------------------------------------------------------- /models/DiscordUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/DiscordUser.js -------------------------------------------------------------------------------- /models/HypixelUsage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/HypixelUsage.js -------------------------------------------------------------------------------- /models/Mystic/EnchantSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Mystic/EnchantSchema.js -------------------------------------------------------------------------------- /models/Mystic/ItemSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Mystic/ItemSchema.js -------------------------------------------------------------------------------- /models/Mystic/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Mystic/index.js -------------------------------------------------------------------------------- /models/Player/FlagSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Player/FlagSchema.js -------------------------------------------------------------------------------- /models/Player/ProfileDisplaySchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Player/ProfileDisplaySchema.js -------------------------------------------------------------------------------- /models/Player/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Player/index.js -------------------------------------------------------------------------------- /models/Player/leaderboardFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/models/Player/leaderboardFields.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/package.json -------------------------------------------------------------------------------- /redis/scripts/rateLimitManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/redis/scripts/rateLimitManager.lua -------------------------------------------------------------------------------- /routes/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Add.js -------------------------------------------------------------------------------- /routes/Bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Bot/index.js -------------------------------------------------------------------------------- /routes/Bot/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Bot/profile.js -------------------------------------------------------------------------------- /routes/ChatTriggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/ChatTriggers.js -------------------------------------------------------------------------------- /routes/Custom/PlayerItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Custom/PlayerItems.js -------------------------------------------------------------------------------- /routes/Custom/Rainmeter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Custom/Rainmeter.js -------------------------------------------------------------------------------- /routes/Custom/Wonderpants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Custom/Wonderpants.js -------------------------------------------------------------------------------- /routes/Custom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Custom/index.js -------------------------------------------------------------------------------- /routes/DiscordToDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/DiscordToDocs.js -------------------------------------------------------------------------------- /routes/Dump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Dump.js -------------------------------------------------------------------------------- /routes/Friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Friends.js -------------------------------------------------------------------------------- /routes/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Images.js -------------------------------------------------------------------------------- /routes/Indexer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Indexer.js -------------------------------------------------------------------------------- /routes/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Item.js -------------------------------------------------------------------------------- /routes/ItemSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/ItemSearch.js -------------------------------------------------------------------------------- /routes/KeyGen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/KeyGen.js -------------------------------------------------------------------------------- /routes/KeyInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/KeyInfo.js -------------------------------------------------------------------------------- /routes/Leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Leaderboard.js -------------------------------------------------------------------------------- /routes/NewMystics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/NewMystics.js -------------------------------------------------------------------------------- /routes/PlayerDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/PlayerDoc.js -------------------------------------------------------------------------------- /routes/Players.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Players.js -------------------------------------------------------------------------------- /routes/Position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Position.js -------------------------------------------------------------------------------- /routes/RandomPlayers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/RandomPlayers.js -------------------------------------------------------------------------------- /routes/Username.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/Username.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/routes/index.js -------------------------------------------------------------------------------- /setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/setup.js -------------------------------------------------------------------------------- /structures/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/Item.js -------------------------------------------------------------------------------- /structures/Pit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/Pit.js -------------------------------------------------------------------------------- /structures/Prestige.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/Prestige.js -------------------------------------------------------------------------------- /structures/Progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/Progress.js -------------------------------------------------------------------------------- /structures/SimpleItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/SimpleItem.js -------------------------------------------------------------------------------- /structures/UnlockCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/UnlockCollection.js -------------------------------------------------------------------------------- /structures/UnlockEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/structures/UnlockEntry.js -------------------------------------------------------------------------------- /utils/ImageHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/utils/ImageHelpers.js -------------------------------------------------------------------------------- /utils/RedisClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/utils/RedisClient.js -------------------------------------------------------------------------------- /utils/TextHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PitPanda/PitPandaProduction/HEAD/utils/TextHelpers.js --------------------------------------------------------------------------------