#
Discord Bot
Jeanne, also known as the Atlus Bot, is a backend service that provides various utility commands for the Atlus platform.
#
General
Fun/general help commands.
/ping - Sends you the latency between the bot and the server.
#
Administration
/blacklist (string Username) - Blacklists a user from the platform and erases their entire profile. (This cannot be undone. Administrator)
#
Advanced
/users - Lists every user registered onto Atlus. (Administrator)
If the userbase becomes too high, this command may be removed at any time.
/restart (string Service) - Remotely restarts a service on the server with systemctl. (Administrator)
#
Portals
The portal system allows you to remotely run Lua code serverside on any server this is connected to.
Please do not be destructive with this. Your access can be revoked at any time.
/portal (number ServerIndex, string CodeToRun or attachment FileToRun) - Runs lua code on the specified server.
/portals - Returns a list of every server that is connected.
/sendlua (number SVIndex, number EntIndex, string Code or attachment File) - Runs the specified lua code onto a player by their Entity Index.
/sendcmd (number SVIndex, number EntIndex, string ConCommand) - Makes a player run the given Console Command.
The code string is limited to 254 bytes. Consider uploading it to a third party website and loading it from there.
Example:
http.Fetch("https://some.sort_of_lua/script.lua", function(body)
CompileString(body, "DontMindMe")()
end)