[HELP] Remove Eula

Results 1 to 7 of 7
  1. #1
    Account Upgraded | Title Enabled! dNi3L is offline
    MemberRank
    Nov 2014 Join Date
    IllinoisLocation
    237Posts

    [HELP] Remove Eula

    As title says..How would the EULA/TOS be removed and/or bypassed? I feel it serves no purpose and is an annoyance whenever I do a patch..any help appreciated..


  2. #2
    Member MrPancake is offline
    MemberRank
    Jan 2015 Join Date
    NotHitlerBunkerLocation
    52Posts

    Re: [HELP] Remove Eula

    Look in warz.sln and look for eula you will find what you are searching for :P

  3. #3
    Custom Title Enabled GigaToni is offline
    MemberRank
    Aug 2009 Join Date
    GER / FRLocation
    2,329Posts

    Re: [HELP] Remove Eula

    It's not WarZ.sln. It's RSUpdate.

  4. #4
    Member MrPancake is offline
    MemberRank
    Jan 2015 Join Date
    NotHitlerBunkerLocation
    52Posts

    Re: [HELP] Remove Eula

    Quote Originally Posted by GigaToni View Post
    It's not WarZ.sln. It's RSUpdate.
    Oh yea lol forgot :'D

  5. #5
    Account Upgraded | Title Enabled! dNi3L is offline
    MemberRank
    Nov 2014 Join Date
    IllinoisLocation
    237Posts

    Re: [HELP] Remove Eula

    Yes I know where it is in RSU..but being a newbie to the coding world how would you go about modifying the code to disable it?

  6. #6
    My Status --> LukasCCB is offline
    MemberRank
    Apr 2013 Join Date
    CracolandiaLocation
    1,190Posts

    Re: [HELP] Remove Eula

    Go to
    Code:
    /src/RSUpdate/RSUpdate.sln

    Serach and remove this code
    Code:
    if(eulaShowDialog(0) != IDOK) {
        return;
    }
       if(eulaShowDialog(1) != IDOK) {
        return;
    }
    Serach:
    Code:
    // show EULA if we have updated something
    or
    Code:
      if(updater.numUpdatedFiles_) {
        if(eulaShowDialog(0) != IDOK) {
          return;
        }
        if(eulaShowDialog(1) != IDOK) {
          return;
        }
      }

    Replace
    Code:
      if(updater.numUpdatedFiles_) {
    
      }

    Compile and Ready!!

  7. #7
    Account Upgraded | Title Enabled! dNi3L is offline
    MemberRank
    Nov 2014 Join Date
    IllinoisLocation
    237Posts

    Re: [HELP] Remove Eula

    @lukasccb worked like a charm..



Advertisement