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

Начинающий
Статус
Оффлайн
Регистрация
14 Май 2023
Сообщения
200
Реакции[?]
3
Поинты[?]
4K
1724353043305.png
сори если задолбал, уж очень нужен этот лоадер
вообщем, эта дичь сначало выбивала 0x3
пофиксил удалением проверок на всякую хуетень
но теперь эта дичь
а, и ещё в один момент выбило на этот кусок кода1724353176935.png
кто-нибудь, знает как эту парашу починить? а то мучаюсь, чисто из-за имгуя
тема откуда взял: https://yougame.biz/threads/200413/
заранее спасибо
 
Пользователь
Статус
Оффлайн
Регистрация
5 Июл 2022
Сообщения
998
Реакции[?]
86
Поинты[?]
23K
Посмотреть вложение 283958
сори если задолбал, уж очень нужен этот лоадер
вообщем, эта дичь сначало выбивала 0x3
пофиксил удалением проверок на всякую хуетень
но теперь эта дичь
а, и ещё в один момент выбило на этот кусок кодаПосмотреть вложение 283959
кто-нибудь, знает как эту парашу починить? а то мучаюсь, чисто из-за имгуя
тема откуда взял: https://yougame.biz/threads/200413/
заранее спасибо
так мб ты условие покажешь?
 
Начинающий
Статус
Оффлайн
Регистрация
14 Май 2023
Сообщения
200
Реакции[?]
3
Поинты[?]
4K
так мб ты условие покажешь?
типо условие:
 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);
     }
 
profitprogrammer
Участник
Статус
Оффлайн
Регистрация
13 Дек 2020
Сообщения
904
Реакции[?]
187
Поинты[?]
66K
Бро, там не надо ничего вырезать. Просто подключить веб и все
 
Начинающий
Статус
Оффлайн
Регистрация
13 Май 2023
Сообщения
148
Реакции[?]
26
Поинты[?]
26K
типо условие:
 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
выведи на экран что в ней, может там не верная информация, кривая или битая.
 
Сверху Снизу