Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Server Code Submissions

Reply
 
Thread Tools Display Modes
  #1  
Old 01-15-2012, 08:04 PM
dpjaf4t
Fire Beetle
 
Join Date: May 2010
Posts: 8
Default Nonworking Disciplines fix

This would allow several disciplines that have not been working, like Warder's Wrath (RNG lvl 69), to be learnable. These were all being rejected because of their names ...

In both zone/questmgr.cpp, at lines 647-653, and zone/effects.cpp, at lines 500-506, replace this:

Code:
	if(!(
		item->Name[0] == 'T' &&
		item->Name[1] == 'o' &&
		item->Name[2] == 'm' &&
		item->Name[3] == 'e' &&
		item->Name[4] == ' '
		)) {
with this:

Code:
      if(!(
		item->Name[0] == 'T' &&
		item->Name[1] == 'o' &&
		item->Name[2] == 'm' &&
		item->Name[3] == 'e' &&
		item->Name[4] == ' '
		) && !(
		item->Name[0] == 'S' &&
		item->Name[1] == 'k' &&
		item->Name[2] == 'i' &&
		item->Name[3] == 'l' &&
		item->Name[4] == 'l' &&
		item->Name[5] == ':' &&
		item->Name[6] == ' '
		)) {
Line numbers are as of codebase rev2097. Works when tested locally. My first code submission, don't flog me too hard please.
Reply With Quote
  #2  
Old 02-26-2012, 07:12 AM
dpjaf4t
Fire Beetle
 
Join Date: May 2010
Posts: 8
Default

Can't see where to edit the original post, probably too early in the day. Better diff format:

Code:
Index: trunk/EQEmuServer/zone/effects.cpp
===================================================================
--- trunk/EQEmuServer/zone/effects.cpp	(revision 2103)
+++ trunk/EQEmuServer/zone/effects.cpp	(working copy)
@@ -503,6 +503,14 @@
 		item->Name[2] == 'm' &&
 		item->Name[3] == 'e' &&
 		item->Name[4] == ' '
+		) && !(
+		item->Name[0] == 'S' &&
+		item->Name[1] == 'k' &&
+		item->Name[2] == 'i' &&
+		item->Name[3] == 'l' &&
+		item->Name[4] == 'l' &&
+		item->Name[5] == ':' &&
+		item->Name[6] == ' '
 		)) {
 		Message(13, "This item is not a tome.");
 		//summon them the item back...
Index: trunk/EQEmuServer/zone/questmgr.cpp
===================================================================
--- trunk/EQEmuServer/zone/questmgr.cpp	(revision 2103)
+++ trunk/EQEmuServer/zone/questmgr.cpp	(working copy)
@@ -650,6 +650,14 @@
 		item->Name[2] == 'm' &&
 		item->Name[3] == 'e' &&
 		item->Name[4] == ' '
+		) && !(
+		item->Name[0] == 'S' &&
+		item->Name[1] == 'k' &&
+		item->Name[2] == 'i' &&
+		item->Name[3] == 'l' &&
+		item->Name[4] == 'l' &&
+		item->Name[5] == ':' &&
+		item->Name[6] == ' '
 		)) {
 		return(false);
 	}
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:24 AM.


 

EQEmulator is a trademark of The EQEmulator Team.
Everquest is a registered trademark of Sony Computer Entertainment America Inc.
EQEmulator is not associated with Sony, SOE, & Affiliates, in any way.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3
All material copyright of their respective artists.
All other materials Copyright© http://www.eqemulator.net.