1 Attachment(s)
Simple Splash screen for anticheat
I want to share for Simple Splash screen for anticheat. In the future I wiil share a rootkit hideprocess it work all windows version and add ip-serial in anticheat.
Sorry in my english , it's very bad U-U
simple in antihack.cpp
extern "C" __declspec(dllexport) void main()
{
CSplash splash1(TEXT("MuGuard.\\logo.bmp"), RGB(128, 128, 128));
splash1.ShowSplash();
Sleep(5000);
splash1.CloseSplash();
Re: Simple Splash screen for anticheat
Re: Simple Splash screen for anticheat
Quote:
Originally Posted by
yostisak
In the future I wiil share a rootkit hideprocess it work all windows version and add ip-serial in anticheat.
Good, im waiting for that!
Re: Simple Splash screen for anticheat
Splash class coded by abhinaba back in 2004 but good that you posted it here, someone might need it.
Re: Simple Splash screen for anticheat
Don't use sleep command to wait for an action ;)
Re: Simple Splash screen for anticheat
can someone make a dll which will just show a splash screen for a 3 sec?
Re: Simple Splash screen for anticheat
give me the sshot u want, i will make it in a second.
Re: Simple Splash screen for anticheat
Re: Simple Splash screen for anticheat
the splashscreen... (image of what you want to be)
1 Attachment(s)
Re: Simple Splash screen for anticheat
)) thanks in advance, here it is
Re: Simple Splash screen for anticheat
Quote:
Originally Posted by
vcorp
Don't use sleep command to wait for an action ;)
so how to wait ?
1 Attachment(s)
Re: Simple Splash screen for anticheat
Quote:
Originally Posted by
buffon
)) thanks in advance, here it is
Just hook the dll and u r done ;)
Re: Simple Splash screen for anticheat
Quote:
Originally Posted by
boncha
so how to wait ?
this is a portion of code from my rally game manager. (written in delphi)
Code:
procedure Aspetta(ms: Cardinal);
var Start: Cardinal;
begin
Start := GetTickCount;
while ms + Start > GetTickCount do
Application.ProcessMessages;
end;
This way is better because sleep stop all during its waiting time.
i think in vc++ you can use something like this:
Code:
using namespace System;
using namespace System::Threading;
int main()
{
Thread::Sleep(2000);
}
Re: Simple Splash screen for anticheat
thanks but i tried to hook it manually with main funct and without, i had no effect. whats wrong?
Re: Simple Splash screen for anticheat
Wouldn't it be better to wait for a window to be active and then close the splash? o.o