[Release] Rv guard 223 source

Page 8 of 8 FirstFirst 12345678
Results 106 to 118 of 118
  1. #106
    Member Xcct is offline
    MemberRank
    Jan 2011 Join Date
    58Posts

    wink Re: [Release] Rv guard 223 source

    GetHW_Info() is not really interessting.
    How about this? ^_-

    PHP Code:
    DWORD WINAPI DebugDetect(voidparam)
    {
        
    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;


  2. #107
    Newbe likertuban is online now
    ModeratorRank
    Apr 2012 Join Date
    2,334Posts

    Re: [Release] Rv guard 223 source

    Quote Originally Posted by Xcct View Post
    GetHW_Info() is not really interessting.
    How about this? ^_-

    PHP Code:
    DWORD WINAPI DebugDetect(voidparam)
    {
        
    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
    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

    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

  3. #108
    Member Xcct is offline
    MemberRank
    Jan 2011 Join Date
    58Posts

    Re: [Release] Rv guard 223 source

    Quote Originally Posted by UniverseGaming View Post
    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), serialNumber) )
        {
           return 
    false
        }
        return 
    false;

    My code would look like
    PHP Code:
    bool GetHW_Info()
    {
       return 
    true


  4. #109
    I'm your Worst Nightmare! Meet Your Maker is offline
    MemberRank
    Nov 2012 Join Date
    EarthLocation
    449Posts

    Re: [Release] Rv guard 223 source

    Quote Originally Posted by Xcct View Post
    GetHW_Info() is not really interessting.
    How about this? ^_-

    PHP Code:
    DWORD WINAPI DebugDetect(voidparam)
    {
        
    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 ?

  5. #110
    Member Xcct is offline
    MemberRank
    Jan 2011 Join Date
    58Posts

    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.

  6. #111
    Non omnis moriar UniverseGaming is offline
    MemberRank
    May 2014 Join Date
    307Posts

    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.

  7. #112
    Newbe likertuban is online now
    ModeratorRank
    Apr 2012 Join Date
    2,334Posts

    Re: [Release] Rv guard 223 source

    Quote Originally Posted by UniverseGaming View Post
    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...

  8. #113
    Account Upgraded | Title Enabled! sadi is offline
    MemberRank
    Oct 2012 Join Date
    251Posts

    Re: [Release] Rv guard 223 source

    Magic DLL
    Except for the two of you, no one can answer it.

  9. #114
    Member Xcct is offline
    MemberRank
    Jan 2011 Join Date
    58Posts

    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

  10. #115
    Non omnis moriar UniverseGaming is offline
    MemberRank
    May 2014 Join Date
    307Posts

    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

  11. #116
    Newbe likertuban is online now
    ModeratorRank
    Apr 2012 Join Date
    2,334Posts

    Re: [Release] Rv guard 223 source

    Quote Originally Posted by UniverseGaming View Post
    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

  12. #117
    Non omnis moriar UniverseGaming is offline
    MemberRank
    May 2014 Join Date
    307Posts

    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

  13. #118
    Enthusiast Clebson da Sul is offline
    MemberRank
    Dec 2014 Join Date
    31Posts

    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



Page 8 of 8 FirstFirst 12345678

Advertisement