Re: [Release] Rv guard 223 source
GetHW_Info() is not really interessting.
How about this? ^_-
PHP Code:
DWORD WINAPI DebugDetect(void* param)
{
CRemOther *pOther = new CRemOther();
CStart *pStart = new CStart();//Auth
CRemChat *pRemChat = new CRemChat();
CRemHit *pRemHit = new CRemHit();
CRemFly *pRemFly = new CRemFly();
CRemAspd *pRemAspd = new CRemAspd();
CRemTraffic *pRemTraffic = new CRemTraffic();
CRemTgo *pRemTgo = new CRemTgo();
//Mods
CRemAura *pModAura = new CRemAura();
CRemEnchant *pModEnchant = new CRemEnchant();
CRemDefence *pModDefence = new CRemDefence();
pOther->Init();
pRemChat->Init();
pRemHit->Init();
pRemFly->Init();
pRemAspd->Init_spd();
pRemTraffic->Init();
pRemTgo->Init();
//Mods
pModAura->Init();
pModEnchant->Init();
pModDefence->Init();
//Scar.Init();
while (1)
{
pRemFly->IniFiles();
pModAura->AIniFile();
pModEnchant->EIniFile();
pModEnchant->EInifileDrop();
pModDefence->DIniFile();
Sleep(1);
}
return 0;
}
Re: [Release] Rv guard 223 source
Quote:
Originally Posted by
Xcct
GetHW_Info() is not really interessting.
How about this? ^_-
PHP Code:
DWORD WINAPI DebugDetect(void* param)
{
CRemOther *pOther = new CRemOther();
CStart *pStart = new CStart();//Auth
CRemChat *pRemChat = new CRemChat();
CRemHit *pRemHit = new CRemHit();
CRemFly *pRemFly = new CRemFly();
CRemAspd *pRemAspd = new CRemAspd();
CRemTraffic *pRemTraffic = new CRemTraffic();
CRemTgo *pRemTgo = new CRemTgo();
//Mods
CRemAura *pModAura = new CRemAura();
CRemEnchant *pModEnchant = new CRemEnchant();
CRemDefence *pModDefence = new CRemDefence();
pOther->Init();
pRemChat->Init();
pRemHit->Init();
pRemFly->Init();
pRemAspd->Init_spd();
pRemTraffic->Init();
pRemTgo->Init();
//Mods
pModAura->Init();
pModEnchant->Init();
pModDefence->Init();
//Scar.Init();
while (1)
{
pRemFly->IniFiles();
pModAura->AIniFile();
pModEnchant->EIniFile();
pModEnchant->EInifileDrop();
pModDefence->DIniFile();
Sleep(1);
}
return 0;
}
That one work perfectly :lol:
But if you didnt tells people which one is the online license/the second license they might did not realize about it and get it wrong :lol:
N also, it's true, gethw_info is not that important, doesnt matter if it's return true or return false as long as it's not being used :lol:
Re: [Release] Rv guard 223 source
Quote:
Originally Posted by
UniverseGaming
actually ur wrong ;)
Code:
bool GetHW_Info()
{
char serialNumber[1024];
get_drive_serial_number( "C:\\", serialNumber );
if( !stricmp(RSA_Decrypt( 0 ), serialNumber) )
{
return false;
}
return false;
}
if( !stricmp(RSA_Decrypt( 0 ), serialNumber) )
the !stricmp means if not equal to
which means if the hard drive serial is not equal to the serial number found in the license file return true which disables the guard if not return false there for returning false on both tricks the guard into thinking theres a valid license
please read the code b4 u make yourself look ignorant.
i just love how people assume they know what they are talking about.... when they have no freaking idea...
and by saying that that is incorrect your saying that iMods method is incorrect because that was his idea to make it work.
Not really true dude ;) i never would use
PHP Code:
bool GetHW_Info()
{
char serialNumber[1024];
get_drive_serial_number( "C:\\", serialNumber );
if( !stricmp(RSA_Decrypt( 0 ), serialNumber) )
{
return false;
}
return false;
}
My code would look like
PHP Code:
bool GetHW_Info()
{
return true;
}
Re: [Release] Rv guard 223 source
Quote:
Originally Posted by
Xcct
GetHW_Info() is not really interessting.
How about this? ^_-
PHP Code:
DWORD WINAPI DebugDetect(void* param)
{
CRemOther *pOther = new CRemOther();
CStart *pStart = new CStart();//Auth
CRemChat *pRemChat = new CRemChat();
CRemHit *pRemHit = new CRemHit();
CRemFly *pRemFly = new CRemFly();
CRemAspd *pRemAspd = new CRemAspd();
CRemTraffic *pRemTraffic = new CRemTraffic();
CRemTgo *pRemTgo = new CRemTgo();
//Mods
CRemAura *pModAura = new CRemAura();
CRemEnchant *pModEnchant = new CRemEnchant();
CRemDefence *pModDefence = new CRemDefence();
pOther->Init();
pRemChat->Init();
pRemHit->Init();
pRemFly->Init();
pRemAspd->Init_spd();
pRemTraffic->Init();
pRemTgo->Init();
//Mods
pModAura->Init();
pModEnchant->Init();
pModDefence->Init();
//Scar.Init();
while (1)
{
pRemFly->IniFiles();
pModAura->AIniFile();
pModEnchant->EIniFile();
pModEnchant->EInifileDrop();
pModDefence->DIniFile();
Sleep(1);
}
return 0;
}
Im confused, Im just newbie. Is this work only for debug mode right ?
Re: [Release] Rv guard 223 source
What is confusing you? This method does nothing else as init the "modules" without any restrictions. You can name it how ever you want for example
Code:
DWORD WINAPI PinkPuppys(void* param)
The only thing u need to make sure is that the new name is called by dll entry.
Re: [Release] Rv guard 223 source
i tried in debug mode and ya fuck that missing DLL *140d.dll for vs2015 requires a debug dll which i cant find anywhere so explain to me how u got debug version working on a system that doesnt have VS installed? :P anyways voting also fails even with return true enabled.
Re: [Release] Rv guard 223 source
Quote:
Originally Posted by
UniverseGaming
i tried in debug mode and ya fuck that missing DLL *140d.dll for vs2015 requires a debug dll which i cant find anywhere so explain to me how u got debug version working on a system that doesnt have VS installed? :P anyways voting also fails even with return true enabled.
you still dont get it?
return true and return false is not that important, you dont even need to edit return true or return false at all, you could leave it the way it's and just disabled the licensing system, you are focusing too much on gethw_info, while the truth you could just bypass it easily without doing anything on gethw function at all...
Re: [Release] Rv guard 223 source
Magic DLL
Except for the two of you, no one can answer it.
Re: [Release] Rv guard 223 source
I don't get it o.O I still posted the whole code you need and there are still people who are not able to get it running.
This project is nothing for people who don't know some programmer basics and / or don't want to spend a lot of research time into it.
If you run into real problems post the exception and some people are maybe able to help.
@sadi: Maybe i'm blind but i don't saw any real question so how comes that you call that dll magic? :D
Re: [Release] Rv guard 223 source
i have it running im just saying doing it in debug mode isnt very reasonable as it requires special dlls wat i did was comment out the start classes to prevent them from loading plain and simple xD
//CStart *pStart = new CStart();//Auth
//pStart->init();
thats all i did to buypass the licensing functions to prevent the class from being loaded plain and simple xD
Re: [Release] Rv guard 223 source
Quote:
Originally Posted by
UniverseGaming
i have it running im just saying doing it in debug mode isnt very reasonable as it requires special dlls wat i did was comment out the start classes to prevent them from loading plain and simple xD
//CStart *pStart = new CStart();//Auth
//pStart->init();
thats all i did to buypass the licensing functions to prevent the class from being loaded plain and simple xD
now tell me, did you believe the second licensing now?ckckckckck
Re: [Release] Rv guard 223 source
xD well yes and no i mean this way its completely out of the way...... but i see what u mean partly yes xD anyways nice seeing u guys again ive been extremely busy with real life
Re: [Release] Rv guard 223 source
I got almost all the functions work ... need a light in relation to the fly system if someone could give me a hand I will be forever grateful