• Ищем качественного (не новичок) разработчиков Xenforo для этого форума! В идеале, чтобы ты был фулл стек программистом. Если у тебя есть что показать, то свяжись с нами по контактным данным: https://t.me/DREDD

Вопрос İn game msgbox

  • Автор темы Автор темы AloofTR
  • Дата начала Дата начала
Начинающий
Начинающий
Статус
Оффлайн
Регистрация
24 Апр 2019
Сообщения
29
Реакции
2
hello guys

how to make this massage box
 

Вложения

  • 1752616032207.png
    1752616032207.png
    278.8 KB · Просмотры: 32
  • 1752616123287.png
    1752616123287.png
    278.8 KB · Просмотры: 30
Последнее редактирование:
C++:
Expand Collapse Copy
class IGameUI
{
public:
    void msg_box(const char* pTitle, const char* pMessage, bool showOk, bool showCancel, const char* okCommand, const char* cancelCommand, const char* closedCommand, const char* pszCustomButtonText, const char* unknown) {

        using fn = void(__thiscall*)(IGameUI*, const char*, const char*,
            bool, bool,
            const char*, const char*,
            const char*,
            const char*, const char*);

        return CallVFunction<fn>(this, 19)(this,
            pTitle,
            pMessage,
            showOk,
            showCancel,
            okCommand,
            cancelCommand,
            closedCommand,
            pszCustomButtonText,
            unknown);
    }
}

C++:
Expand Collapse Copy
GameUI = (IGameUI*)Utils::CreateInterface("client.dll", "GameUI011");
 
Назад
Сверху Снизу