Welp I Noticed purges notify a long time ago [thought it was a custom XNotify from the server] But i found out a while ago They were not they were actually custom notifys. I found that DOPEE... SO i made My own Version :D Now I'm giving it to you guys :D -- This has already been added to my menu, Celestial. If you want to see how this looks first, I suggest trying out my menu. It's FREE FOR ALL
OR
https://media.discordapp.net/attachments...height=330
OR
https://media.discordapp.net/attachments...height=330
Code:
if (Elite_Notify) {
Start_Numberz++;
GRAPHICS::DRAW_RECT(0.47f, 0.90f, 0.23f, 0.05f, BannerRect.R, BannerRect.G, BannerRect.B, 255);
DrawSprite("shared", "info_icon_32", 0.38f, 0.90f, 0.045f, 0.05f, 0.0f, 255, 255, 255, 255);
drawText(Elite_Message, 6, 0.41f, 0.88f, 0.55f, 0.55f, 255, 255, 255, 255, false);
drawText(Elite_Message2, 6, 0.41f + 0.13f, 0.88f, 0.55f, 0.55f, 255, 255, 255, 255, false);
if (Start_Numberz > End_Numberz) {
Elite_Notify = false;
Start_Numberz = 0;
}
}
bool Elite_Notify = false;
int Start_Numberz = 0;
int End_Numberz = 255;
char* Elite_Message;
char* Elite_Message2;
void AddBool(char* option, bool* toggle) {
AddOption(option);
if (*toggle) {
}
else {
}
if (CurrentOption == OptionCount && OptionPress) {
*toggle = !*toggle;
Elite_Message = option;
Elite_Message2 = *toggle ? "~italic~~g~Enabled" : "~italic~~r~Disabled";
Elite_Notify = true;
}
}