The previous patch to GetPVP didn't check if there was a watermap loaded for a zone and will crash the zone if there isn't. This should work better:
Code:
--- /tmp/EQEmu-0.7.0-1115/zone/client.h 2008-06-15 00:07:57.000000000 +0100
+++ client.h 2008-06-22 17:18:17.000000000 +0100
@@ -36,6 +36,7 @@
#include "mob.h"
#include "npc.h"
#include "zone.h"
+#include "watermap.h"
#include "AA.h"
#include "../common/seperator.h"
#include "../common/Item.h"
@@ -275,7 +276,8 @@
void SetGM(bool toggle);
void SetPVP(bool toggle);
- inline bool GetPVP() const { return zone->GetZoneID() == 77 ? true : m_pp.pvp; }
+ inline bool GetPVP() const { if(zone->watermap != NULL) return zone->watermap->InPVPArea(x_pos, y_pos, z_pos) ? true : m_pp.pvp;
+ else return m_pp.pvp; }
inline bool GetGM() const { return (bool) m_pp.gm; }
inline void SetBaseClass(uint32 i) { m_pp.class_=i; }
and thanks for hosting the files Angelox.