• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[HELP] Remove Eula

Experienced Elementalist
Joined
Nov 1, 2014
Messages
237
Reaction score
117
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..
 
Newbie Spellweaver
Joined
Jan 19, 2015
Messages
52
Reaction score
43
Look in warz.sln and look for eula you will find what you are searching for :p
 
Upvote 0
Experienced Elementalist
Joined
Nov 1, 2014
Messages
237
Reaction score
117
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?
 
Upvote 0
Joined
Apr 23, 2013
Messages
1,172
Reaction score
1,797
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!!
 
Upvote 0
Back
Top