[source] MSG BOX All three Boxes
DWORD MsgBox_OK_SHOP = 0x04186C1;// OK & Go to Ingame Shop
DWORD MsgBox_OK = 0x04186E8;// Only OK (standard)
DWORD MsgBox_OK_CANCEL = 0x04E065B;// OK & Cancel
found by me Angel-Piece
source:
void MessageBoxWr(char * msgtxt)
{
__asm
{
add eax,0
mov ecx, eax
push msgtxt
call MsgBox_XXX // <- write the name
pop ecx
}
}
