View Single Post
  #3  
Old 05-17-2008, 08:47 AM
AndMetal
Developer
 
Join Date: Mar 2007
Location: Ohio
Posts: 648
Default

From zone/questmgr.cpp:
Code:
  687 void QuestManager::pvp(const char *mode) {
  688 	if (!strcasecmp(mode,"on"))
  689 		if (initiator)
  690 			initiator->SetPVP(true);
  691 	else
  692 		if (initiator)
  693 			initiator->SetPVP(false);
  694 }
As long as it's something other than on (case insensitive), it should set to false. The only thing I can think of offhand is if it has to do with how the quest is called, referencing to initiator.
__________________
GM-Impossible of 'A work in progress'
A non-legit PEQ DB server
How to create your own non-legit server

My Contributions to the Wiki
Reply With Quote