handle

suspend fun handle(event: ChatInputCommandInteractionCreateEvent, userProfiles: MutableMap<String, String>)

Handles the execution of the "highscore" command.

This method fetches the highscores for the specified player from the RuneScape Hiscores API and responds to the user with the formatted results.

The method first checks if the command includes a specific player name. If not, it attempts to use the player's RuneScape username linked to their Discord profile (stored in the userProfiles map). If neither is available, the command will respond with an error message.

Parameters

event

The event triggered by the "highscore" command.

userProfiles

A mutable map linking Discord user IDs to their linked RuneScape usernames.