Does anybody know how to make a pop up box like "Are you sure you want to quit The Duel?"
i want to make "cannot access server" a pop-up box.
Does anybody know how to make a pop up box like "Are you sure you want to quit The Duel?"
i want to make "cannot access server" a pop-up box.
Learn ASM.
Prove.
Betrayed, you are half right and belette321 is half right.
from the classes, to asm. C++ is the easiest language (imo) to do this in. since them popup boxes being inside classes, you will have to use ASM in your C++ code. just use some checks.
kk there ya goCode:CDetour OnAdminAnnounceDet; void __stdcall OnAdminAnnounceHook (char* pszAnnounce, int nAnnounceType) { } //seperate thread if (!connected) { OnAnnounceDet.Org ("Could not connect!", 1); }
Thanks a lot!