I am attempting to make a green button
public async Task joinGame(CommandContext ctx, long lobbyid)
DiscordButtonComponent join_Game = new DiscordButtonComponent(ButtonStyle.Success, "join_game_button", "Join Game");
got the basic code and now trying to make it so that when players click on it it takes them to the game on steam. I am using a url steam://joinlobby/{appId}/{lobbyid}/{steamToken} which lets you join games from the link. I made it so that you have to put in a long because lobby id numbers are huge... 17 numbers long 9################. Is there anyway to make it so that when you push the button and of course it goes to the main Bot.cs it will take the long set in the JoinGame.cs (command file) to go to the Bot.cs and for the Bot.CS to actually open a link rather than having to use DiscordLinkButtonComponent, because that won't let me add colors.
Ty for any help