Подписывайтесь на наш Telegram и не пропускайте важные новости! Перейти

C++ Лоадер тупо оффаеться

Начинающий
Начинающий
Статус
Оффлайн
Регистрация
14 Май 2023
Сообщения
367
Реакции
10
1724353043305.png

сори если задолбал, уж очень нужен этот лоадер
вообщем, эта дичь сначало выбивала 0x3
пофиксил удалением проверок на всякую хуетень
но теперь эта дичь
а, и ещё в один момент выбило на этот кусок кода
1724353176935.png

кто-нибудь, знает как эту парашу починить? а то мучаюсь, чисто из-за имгуя
тема откуда взял: https://yougame.biz/threads/200413/
заранее спасибо
 
Посмотреть вложение 283958
сори если задолбал, уж очень нужен этот лоадер
вообщем, эта дичь сначало выбивала 0x3
пофиксил удалением проверок на всякую хуетень
но теперь эта дичь
а, и ещё в один момент выбило на этот кусок кодаПосмотреть вложение 283959
кто-нибудь, знает как эту парашу починить? а то мучаюсь, чисто из-за имгуя
тема откуда взял: https://yougame.biz/threads/200413/
заранее спасибо
так мб ты условие покажешь?
 
так мб ты условие покажешь?
типо условие:
Expand Collapse Copy
 for (int i = 0; i < (int)split_cheat_structure.size(); i++)
 {
     if ((int)split_cheat_structure.size() == 3)
     {
         if (split_cheat_structure[0] == xorstr_("Rust 1 Day"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = true;
                 Rust7Days = false;
                 Rust15Days = false;
                 Rust30Days = false;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
         if (split_cheat_structure[0] == xorstr_("Rust 7 Days"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = false;
                 Rust7Days = true;
                 Rust15Days = false;
                 Rust30Days = false;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
         if (split_cheat_structure[0] == xorstr_("Rust 15 Days"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = false;
                 Rust7Days = false;
                 Rust15Days = true;
                 Rust30Days = false;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
         if (split_cheat_structure[0] == xorstr_("Rust 30 days"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = false;
                 Rust7Days = false;
                 Rust15Days = false;
                 Rust30Days = true;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
     }
     else
     {
        li(MessageBoxA)(NULL, xorstr_("bro i dont know how help u"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
     }
 
типо условие:
Expand Collapse Copy
 for (int i = 0; i < (int)split_cheat_structure.size(); i++)
{
     if ((int)split_cheat_structure.size() == 3)
     {
         if (split_cheat_structure[0] == xorstr_("Rust 1 Day"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = true;
                 Rust7Days = false;
                 Rust15Days = false;
                 Rust30Days = false;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
         if (split_cheat_structure[0] == xorstr_("Rust 7 Days"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = false;
                 Rust7Days = true;
                 Rust15Days = false;
                 Rust30Days = false;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
         if (split_cheat_structure[0] == xorstr_("Rust 15 Days"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = false;
                 Rust7Days = false;
                 Rust15Days = true;
                 Rust30Days = false;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
         if (split_cheat_structure[0] == xorstr_("Rust 30 days"))
         {
             if (split_cheat_structure[1] == xorstr_("detected"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently detected, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             if (split_cheat_structure[1] == xorstr_("on update"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently on update, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("disabled"))
             {
                 li(MessageBoxA)(NULL, xorstr_("Cheat is currently disabled, sorry for the inconvenience."), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
             else if (split_cheat_structure[1] == xorstr_("undetected"))
             {
                 Rust1Day = false;
                 Rust7Days = false;
                 Rust15Days = false;
                 Rust30Days = true;
             }
             else
             {
                 li(MessageBoxA)(NULL, xorstr_("Unknown response"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
                 return 0xDEAD;
             }
         }
     }
     else
     {
        li(MessageBoxA)(NULL, xorstr_("bro i dont know how help u"), utilities::get_random_string(16).c_str(), MB_SYSTEMMODAL | MB_ICONERROR);
     }
split_cheat_structure
выведи на экран что в ней, может там не верная информация, кривая или битая.
 

Похожие темы

Назад
Сверху Снизу