suggestion

nulloverflow

New Member
Hey prodigy, just an idea

I notice every time you make a new release you change the name of the dll, not sure if this is to avoid vac detection or not, but if it is then id say put a textbox on your window and have the user specify the name of the dll. For example (basic c++ win32 code):

char dllname[255];
memset(dllname,'\0',255);
GetWIndowText(hwnd_edit,dllname,255);
CopyFile("old.dll","new.dll",TRUE);
DeleteFile("old.dll");

Only thing you really have to do is store the name of the current dll file in a txt or whatever, and load it when you start. Anyway, hope it helps.

-null
 

Jimster480

Administrator
Staff member
yea i know that the only thing is then you gotta change the loader name too, and some people who use SSW have problems with popup text boxes in hacks, which is y i took my credits MessageBox out of it.
 
Top Bottom