Initial addition of the RoF2 client from May 10th 2013 (currently available on Steam as the F2P client).

RoF2 is disabled by default, but you can enable by editing /common/patches/patches.cpp (see comments)
This commit is contained in:
Trevius
2014-12-04 02:13:01 -06:00
parent 65dcfd55a7
commit af42af7869
16 changed files with 15286 additions and 3 deletions
+3 -1
View File
@@ -8,7 +8,7 @@
#include "sof.h"
#include "sod.h"
#include "rof.h"
//#include "rof2.h"
#include "rof2.h"
void RegisterAllPatches(EQStreamIdentifier &into) {
Client62::Register(into);
@@ -17,6 +17,7 @@ void RegisterAllPatches(EQStreamIdentifier &into) {
SoD::Register(into);
Underfoot::Register(into);
RoF::Register(into);
// Uncomment the line below to enable RoF2 Client
//RoF2::Register(into);
}
@@ -27,5 +28,6 @@ void ReloadAllPatches() {
SoD::Reload();
Underfoot::Reload();
RoF::Reload();
// Uncomment the line below to enable RoF2 Client
//RoF2::Reload();
}