Get available servers
this.$api.community.get_servers()
Returns an array of available servers.
Get the user's server
this.$api.community.get_server()
Returns a string with the user's current server.
Check if the user is online or not
this.$api.community.is_online()
Returns a boolean status of the user's connection to the server.
Change the user's server
this.$api.community.set_server(server_name)
server_name
: (String) Server to connect to. Can be obtained using get_servers()
.