This commit is contained in:
2022-05-14 18:58:48 +03:00
parent 1b28412cd5
commit 0d506d30c8
9 changed files with 44 additions and 24 deletions

View File

@@ -36,7 +36,11 @@ public class level : DBCommand
Title = "Leveling System",
Description = message.Author.Mention
};
embed.WithColor(Color.Blue);
Random r = new Random();
int _r = r.Next(0, 256);
int _g = r.Next(0, 256);
int _b = r.Next(0, 256);
embed.WithColor(new Color(_r, _g, _b));
embed.AddField("Level", cLv);
embed.AddField("Current EXP", cEXP);
embed.AddField("Required Exp to Level up", rEXP);