shades
shades
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Build as a .exe Then when multi-loader is run it shows examples of work etc.
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
.exe files storing UIs etc.
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
At what place are you finding this.
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Multi-Loader, Stores multiple loaders then all can be run through one loader. But just trying to add discord rpc as a little extra.
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Yeah, Ive been trying to solve it for a while lol :thumbsdown:
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Any idea what can be the issue?
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Thats what ive currently got everything releated with the discord presence.
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Login.CS
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
DiscordPrescence.CS
using Discord;
using System;

namespace KeyAuth
{
public class DiscordPresence
{
private Discord.Discord _discord;
private Activity _activity;

public DiscordPresence()
{
_discord = new Discord.Discord(YourApplicationId, (UInt64)CreateFlags.Default);
_activity = new Activity
{
State = "Using KeyAuth",
Details = "Logging in",
Timestamps = new Timestamps
{
Start = DateTimeOffset.UtcNow.ToUnixTimeSeconds()
},
Assets = new Assets
{
LargeImage = "large_image_key", // Replace with your large image key
LargeText = "KeyAuth App",
}
};
UpdatePresence();
}

public void UpdatePresence()
{
_discord.ActivityManager.UpdateActivity(ref _activity, null);
}

public void Dispose()
{
_discord.Dispose();
}

public void RunCallbacks()
{
_discord.RunCallbacks();
}
}
}
using Discord;
using System;

namespace KeyAuth
{
public class DiscordPresence
{
private Discord.Discord _discord;
private Activity _activity;

public DiscordPresence()
{
_discord = new Discord.Discord(YourApplicationId, (UInt64)CreateFlags.Default);
_activity = new Activity
{
State = "Using KeyAuth",
Details = "Logging in",
Timestamps = new Timestamps
{
Start = DateTimeOffset.UtcNow.ToUnixTimeSeconds()
},
Assets = new Assets
{
LargeImage = "large_image_key", // Replace with your large image key
LargeText = "KeyAuth App",
}
};
UpdatePresence();
}

public void UpdatePresence()
{
_discord.ActivityManager.UpdateActivity(ref _activity, null);
}

public void Dispose()
{
_discord.Dispose();
}

public void RunCallbacks()
{
_discord.RunCallbacks();
}
}
}
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Sent over the screenshots what ive currently got.
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
No description
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
No description
25 replies
CC#
Created by shades on 10/29/2024 in #help
DiscordPresence Issue
Yeah, Ill send over what Ive currently got.
25 replies