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..
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..
Look in warz.sln and look for eula you will find what you are searching for :P
It's not WarZ.sln. It's RSUpdate.
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?
Go to
Code:/src/RSUpdate/RSUpdate.sln
Serach and remove this code
Serach:Code:if(eulaShowDialog(0) != IDOK) { return; } if(eulaShowDialog(1) != IDOK) { return; }
orCode:// show EULA if we have updated something
Code:if(updater.numUpdatedFiles_) { if(eulaShowDialog(0) != IDOK) { return; } if(eulaShowDialog(1) != IDOK) { return; } }
Replace
Code:if(updater.numUpdatedFiles_) { }
Compile and Ready!!
@lukasccbworked like a charm..