I compiled the server files Note: Missing Registered patch House of Thule
From
http://projecteqemu.googlecode.com/svn/
Downloaded Oct-2011
[WORLD__INIT] CURRENT_WORLD_VERSION:EQEmulator 0.8.0
[NET__IDENTIFY] Registered patch 6.2
[NET__IDENTIFY] Registered patch Titanium
[NET__IDENTIFY] Registered patch SoF
[NET__IDENTIFY] Registered patch SoD
[NET__IDENTIFY] Registered patch Underfoot
Added #include "HoT.h"
Added HoT::Register(into);
Added HoT::Reload();
Edit Patches.cpp Example: Z:\ServerFiles\trunk\EQEmuServer\common\patches
#include "../debug.h"
#include "patches.h"
#include "Client62.h"
#include "Titanium.h"
#include "Anniversary.h"
#include "Underfoot.h"
#include "SoF.h"
#include "SoD.h"
#include "HoT.h"
void RegisterAllPatches(EQStreamIdentifier &into) {
Client62::Register(into);
Titanium::Register(into);
SoF::Register(into);
SoD::Register(into);
Underfoot::Register(into);
HoT::Register(into);
}
void ReloadAllPatches() {
Client62::Reload();
Titanium::Reload();
SoF::Reload();
SoD::Reload();
Underfoot::Reload();
HoT::Reload();
}
I have no idea why it was remarked in the file patches.cpp so i added it back.
I'll be running some test on standalone server.