Config Guide - KaosDrip/Xensis GitHub Wiki

Here is a page that fully explains how to fill out and customize the config, so you know how to get the most out of your bot!


Email & Password

First thing that is essential to fill out, is the email and password.

"email": "",
"password": "",

To fill this out, make sure you have another epic games account. This could be any alternate account, it doesn't matter if they have skins or not. If you don't have an alternate account, create one from Epic Game's Website

After you have an account, your config should look like this, except with your information:

"email": "[email protected]",
"password": "passwordhere",

Default Cosmetics

These next options are already filled out, but are fully customizable for your choosing.

Make sure to keep these fields looking how they did before you change anything, for example, the cid, bid, and pid are this by default:

"cid": "CID_028_Athena_Commando_F",  - Renegade Raider CID
"bid": "BID_004_BlackKnight",        - Black Shield BID
"pid": "Pickaxe_Lockjaw",            - Raider's Revenge PID

If you wanted to change any of these for the bot's default cosmetic loadout, just replace the ID's to your liking. Here is a page of all cosmetic ID's: Fortnite ID's

What it'd look like after changing ID's:

"cid": "CID_017_Athena_Commando_M",
"bid": "BID_023_Pinkbear",
"pid": "Pickaxe_ID_011_Medieval",

Banner & Level

"banner": "otherbanner28",
"banner_color": "defaultcolor22",
"level": "999",
"bp_tier": "999",

To change the Bot's banner and banner color, I'd recommend testing out banner ID's and banner colors to see what you'd like. To test this, simply just whisper the bot either: !banner 3 - which would be actually defaultcolor3, for the ID, and just test out some colors for the bot. To test Banner ID's, whisper the bot !banner otherbanner(#), or !banner standardbanner(#). For example, just go through and whisper the bot: !banner otherbanner1, !banner otherbanner2, etc. Doing this, you could try to find which ID's you'd like for the bot, and which color you'd like. Let's say I went through and tested some, and I want standardbanner17 and defaultcolor5, I'd make my "banner" and "banner_color" look like:

"banner": "standardbanner17",
"banner_color": "defaultcolor5",

Then for the level of the bot, just set "level" as the seasonal level you want your bot and "bp_tier" as the battle pass tier you'd want your bot as.

"level": "170",
"bp_tier": "100",

Status

The "status" is the message that shows underneath a user's name in the friends list (usually: Battle Royale Lobby - 1 / 16). You could make this message anything you want, for example, you could change default:

"status": "Xensis Lobby Bot - discord.gg/88r2ShB",

To

"status": "Message Here",

Platform

The Platform is the platform the bot plays on. (Playstation, PC, Xbox, Nintendo Switch, Mobile). For this, the available platforms to use for the bot are:

"PSN" - Playstation "XBL" - Xbox "IOS" - Mobile "WIN" - PC "NTS" - Nintendo Switch (Not sure if this is the correct platform id)

So if I wanted to make default:

"platform": "PSN",

To be PC, I'd make it look like:

"platform": "WIN",

Friend Accept & Join on Invite

By default this looks like:

"friendaccept": "True",
"joinoninvite": "True",

This means, the bot will accept ALL friend requests it receives and join EVERY invite from every player that invites it.

  • To change any of these, make the value "True", or "False":
"friendaccept": "True",
  • This means it will accept every friend request it receives, as:
"friendaccept": "False",
  • Would mean it doesn't accept any friend request, unless the person that tries to add it, is in the "FullAccess" list.
  • To change "joinoninvite", it's the same thing, make it either "True", or "False":
"joinoninvite": "True",
  • Means it will join every person that that tries to invite it.
"joinoninvite": "False",
  • Would mean it doesn't join any user's invite UNLESS they are on the "FullAccess" list.

Admin Password

The Admin Password is the password user's will need to know in order to add themselves to the "FullAccess" / 'admin' list.

To add themselves, they just have to whisper the bot: !admin add, then it will prompt for a password. This is the password they need to put in.

By default the Admin Password is 0001:

"AdminPassword": "0001"

Example: If I wanted to add myself to the admin list, I'd whisper the bot, !admin add. The bot will respond back with: Password?. Then I would respond back to the bot 0001.

If you wanted to change this Password other than what it is by default (which I'd recommend), then just change '0001' in the config, to what you'd like. If I wanted to change mine to '1234', then I'd make my config look like:

"AdminPassword": "1234"