Src SoNiX v1 64 Bit.zip
10.5 MB
🌐 Join : @ImGuiModMenu ⭐
🌐 Join : @ImGuiModMenu ⭐
------------------------------------------
Share With Credits ⭐
🌐 Join : @ImGuiModMenu ⭐
------------------------------------------
Share With Credits ⭐
❤4
KILL LIMIT MESSAGE SHOW
...
void ShowMessage() {
std::u16string alertMsg = u"Bas kr kill - Bgmi Tere baap ka nhi h!";
std::u16string alertTitle = u"Kyo Re Matharchod";
MessageBoxExt(0, (char16_t *)alertMsg.c_str(), (char16_t *)alertTitle.c_str());
}
void CheckKillAlert() {
if (g_LocalPlayer == nullptr || g_LocalPlayer->STExtraPlayerState == nullptr) {
return;
}
int Kills = g_LocalPlayer->STExtraPlayerState->Kills;
static bool HasShownAlert = false;
if (Kills >= 10 && !HasShownAlert) {
std::thread(ShowMessage).detach();
HasShownAlert = true;
}
if (Kills == 0) {
HasShownAlert = false;
}}
...
❤2