Go Back   EQEmulator Home > EQEmulator Forums > Development > Development::Tools

Development::Tools 3rd Party Tools for EQEMu (DB management tools, front ends, etc...)

Reply
 
Thread Tools Display Modes
  #1  
Old 10-03-2013, 09:42 AM
NatedogEZ's Avatar
NatedogEZ
Developer
 
Join Date: Dec 2012
Posts: 515
Default

I noticed there were few missing spell effects in the Spell editor when I grabbed the newest PEQ editor from the daily dump.


I decided to update the ones that were OLD "unknowns" that are now known to the correct effect name and added all the ones that were missing.

Placed "NI" at the from the effect if it wasn't implement as of 10 /3 /2013

Code:
--- "lib\spellenums.php"
+++ "lib\spellenums.php"
@@ -772,14 +772,14 @@
     332 => "Summon To Corpse",
     333 => "Effect On Fade",
     334 => "Bard AOE Dot",
-    335 => "Unknown335",
+    335 => "BlockNextSpellFocus",
     337 => "Percent XP Increase",
     338 => "Summon and Res All Corpses",
     339 => "Trigger On Cast",
     340 => "Lifeshard Chance",
     342 => "Immune to Fleeing",
     343 => "Interrupt Casting",
-    348 => "Unkown348",
+    348 => "LimitManaCost",
     350 => "Manaburn",
     351 => "Persistent Effect",
     352 => "Unknown352",
@@ -788,9 +788,9 @@
     355 => "Unknown355",
     358 => "Current Mana Once",
     360 => "Spell On Kill",
-    361 => "Unknown361",
+    361 => "SpellOnDeath",
     365 => "Spell On Death",
-    366 => "Unkown366",
+    366 => "NI ShieldEquipDmgMod",
     367 => "Add Body Type",
     368 => "Faction Mod",
     369 => "Corruption Counter",
@@ -803,7 +803,68 @@
     380 => "Knockdown",
     382 => "Block Damage Shield",
     383 => "Decrease Hitpoints",
-    384 => "Leap"
+    384 => "Leap",
+	385 => "LimitSpellGroup",
+	386 => "CastOnCurer",
+	387 => "CastOnCure",
+	388 => "NI SummonCorpseZone",
+	389 => "Forceful_Rejuv",
+	390 => "NI CastResistRestrict",
+	391 => "NI Unknown391",
+	392 => "AdditionalHeal2",
+	393 => "HealRate2",
+	394 => "NI Unknown394",
+	395 => "CriticalHealRate",
+	396 => "AdditionalHeal",
+	397 => "NI PetMeleeMitigation",
+	398 => "SwarmPetDuration",
+	399 => "Twincast",
+	400 => "HealGroupFromMana",
+	401 => "ManaDrainWithDmg",
+	402 => "EndDrainWithDmg",
+	403 => "NI ReluctantBene",
+	404 => "LimitExcludeSkill",
+	405 => "TwoHandBluntBlock",
+	406 => "CastonNumHitFade",
+	407 => "NI Unknown397",
+	408 => "LimitHPPercent",
+	409 => "LimitManaPercent",
+	410 => "LimitEndPercent",
+	411 => "LimitClass",
+	412 => "NI Unknown412",
+	413 => "IncreaseSpellPower",
+	414 => "LimitSpellSkill",
+	415 => "NI Unknown415",
+	416 => "ACv2",
+	417 => "ManaRegen_v2",
+	418 => "SkillDamageAmount2",
+	419 => "AddMeleeProc",
+	420 => "NI Unknown420",
+	421 => "IncreaseNumHits",
+	422 => "NI Unknown422",
+	423 => "NI Unknown423",
+	424 => "GravityEffect",
+	425 => "NI Display",
+	426 => "NI IncreaseExtTargetWindow",
+	427 => "SkillProc",
+	428 => "LimitToSkill",
+	429 => "SkillProc2",
+	430 => "NI Unknown430",
+	431 => "NI Unknown431",
+	432 => "NI Unknown432",
+	433 => "NI Uknonwn433",
+	434 => "CriticalHealChance2",
+	435 => "CriticalHealOverTime2",
+	436 => "NI Unknown432",
+	437 => "NI Anchor",
+	438 => "NI Unknown438",
+	439 => "NI IncreaseAssassinationLvl",
+	440 => "FinishingBlowLvl",
+	441 => "NI MovementSpeed2",
+	442 => "NI TriggerOnHPAmount",
+	443 => "NI Unknown443",
+	444 => "NI AggroLock",
+	445 => "NI AdditionalMercenary"
 );
 
 $sp_fields = array(
Reply With Quote
  #2  
Old 10-04-2013, 08:22 AM
NatedogEZ's Avatar
NatedogEZ
Developer
 
Join Date: Dec 2012
Posts: 515
Default

Found a few missing fields for item edit / add.

Allow for augtype up to 20




Code:
--- "templates\iframes\js.tmpl.php"
+++ "templates\iframes\js.tmpl.php"
@@ -112,5 +112,13 @@
 form.augtype_Type_10.checked = form.all_none5.checked ;
 form.augtype_Type_11.checked = form.all_none5.checked ;
 form.augtype_Type_12.checked = form.all_none5.checked ;
+form.augtype_Type_13.checked = form.all_none5.checked ;
+form.augtype_Type_14.checked = form.all_none5.checked ;
+form.augtype_Type_15.checked = form.all_none5.checked ;
+form.augtype_Type_16.checked = form.all_none5.checked ;
+form.augtype_Type_17.checked = form.all_none5.checked ;
+form.augtype_Type_18.checked = form.all_none5.checked ;
+form.augtype_Type_19.checked = form.all_none5.checked ;
+form.augtype_Type_20.checked = form.all_none5.checked ;
 }
 </script>


Code:
--- "templates\items\items.add.tmpl.php"
+++ "templates\items\items.add.tmpl.php"	
@@ -811,6 +811,18 @@
                     <input type="checkbox" name="augtype_Type_11" value=1024 <?echo ($augtype & 1024) ? "checked" : ""?>> Type 11<br>
                     <input type="checkbox" name="augtype_Type_12" value=2048 <?echo ($augtype & 2048) ? "checked" : ""?>> Type 12<br>
                   </td>
+				  <td valign="top" align="left"><br/>
+                    <input type="checkbox" name="augtype_Type_13" value=4096 <?echo ($augtype & 4096) ? "checked" : ""?>> Type 13<br/>
+                    <input type="checkbox" name="augtype_Type_14" value=8192 <?echo ($augtype & 8192) ? "checked" : ""?>> Type 14<br/>
+                    <input type="checkbox" name="augtype_Type_15" value=16384 <?echo ($augtype & 16384) ? "checked" : ""?>> Type 15<br/>
+                    <input type="checkbox" name="augtype_Type_16" value=32768 <?echo ($augtype & 32768) ? "checked" : ""?>> Type 16<br/>
+                  </td>
+				  <td valign="top" align="left"><br/>
+                    <input type="checkbox" name="augtype_Type_17" value=65536 <?echo ($augtype & 65536) ? "checked" : ""?>> Type 17<br/>
+                    <input type="checkbox" name="augtype_Type_18" value=131072 <?echo ($augtype & 131072) ? "checked" : ""?>> Type 18<br/>
+                    <input type="checkbox" name="augtype_Type_19" value=262144 <?echo ($augtype & 262144) ? "checked" : ""?>> Type 19<br/>
+                    <input type="checkbox" name="augtype_Type_20" value=524288 <?echo ($augtype & 524288) ? "checked" : ""?>> Type 20<br/>
+                  </td>
                   <td valign="top" align="left">
                     <br>
                     <input type="checkbox" name="all_none5" value="yes" onClick="Check5(document.item_edit)"> <b>All/None</b><br>


Code:
--- "templates\items\items.edit.tmpl.php"
+++ "templates\items\items.edit.tmpl.php"	
@@ -752,6 +752,18 @@
                     <input type="checkbox" name="augtype_Type_12" value=2048 <?echo ($augtype & 2048) ? "checked" : ""?>> Type 12<br/>
                   </td>
                   <td valign="top" align="left"><br/>
+                    <input type="checkbox" name="augtype_Type_13" value=4096 <?echo ($augtype & 4096) ? "checked" : ""?>> Type 13<br/>
+                    <input type="checkbox" name="augtype_Type_14" value=8192 <?echo ($augtype & 8192) ? "checked" : ""?>> Type 14<br/>
+                    <input type="checkbox" name="augtype_Type_15" value=16384 <?echo ($augtype & 16384) ? "checked" : ""?>> Type 15<br/>
+                    <input type="checkbox" name="augtype_Type_16" value=32768 <?echo ($augtype & 32768) ? "checked" : ""?>> Type 16<br/>
+                  </td>
+				  <td valign="top" align="left"><br/>
+                    <input type="checkbox" name="augtype_Type_17" value=65536 <?echo ($augtype & 65536) ? "checked" : ""?>> Type 17<br/>
+                    <input type="checkbox" name="augtype_Type_18" value=131072 <?echo ($augtype & 131072) ? "checked" : ""?>> Type 18<br/>
+                    <input type="checkbox" name="augtype_Type_19" value=262144 <?echo ($augtype & 262144) ? "checked" : ""?>> Type 19<br/>
+                    <input type="checkbox" name="augtype_Type_20" value=524288 <?echo ($augtype & 524288) ? "checked" : ""?>> Type 20<br/>
+                  </td>
+                  <td valign="top" align="left"><br/>
                     <input type="checkbox" name="all_none5" value="yes" onClick="Check5(document.item_edit)"> <b>All/None</b><br/>
                   </td>
                 </tr>

Code:
--- "lib\items.php"
+++ "lib\items.php"
@@ -358,6 +358,14 @@
   if (isset($_POST['augtype_Type_10'])) $augtype = $augtype+512;
   if (isset($_POST['augtype_Type_11'])) $augtype = $augtype+1024;
   if (isset($_POST['augtype_Type_12'])) $augtype = $augtype+2048;
+  if (isset($_POST['augtype_Type_13'])) $augtype = $augtype+4096;
+  if (isset($_POST['augtype_Type_14'])) $augtype = $augtype+8192;
+  if (isset($_POST['augtype_Type_15'])) $augtype = $augtype+16384;
+  if (isset($_POST['augtype_Type_16'])) $augtype = $augtype+32768;
+  if (isset($_POST['augtype_Type_17'])) $augtype = $augtype+65536;
+  if (isset($_POST['augtype_Type_18'])) $augtype = $augtype+131072;
+  if (isset($_POST['augtype_Type_19'])) $augtype = $augtype+262144;
+  if (isset($_POST['augtype_Type_20'])) $augtype = $augtype+524288;
   
   $fields = '';
   if ($item['slots'] != $slots) $fields .= "slots=\"$slots\", ";
@@ -682,6 +690,14 @@
   if (isset($_POST['augtype_Type_10'])) $augtype = $augtype+512;
   if (isset($_POST['augtype_Type_11'])) $augtype = $augtype+1024;
   if (isset($_POST['augtype_Type_12'])) $augtype = $augtype+2048;
+  if (isset($_POST['augtype_Type_13'])) $augtype = $augtype+4096;
+  if (isset($_POST['augtype_Type_14'])) $augtype = $augtype+8192;
+  if (isset($_POST['augtype_Type_15'])) $augtype = $augtype+16384;
+  if (isset($_POST['augtype_Type_16'])) $augtype = $augtype+32768;
+  if (isset($_POST['augtype_Type_17'])) $augtype = $augtype+65536;
+  if (isset($_POST['augtype_Type_18'])) $augtype = $augtype+131072;
+  if (isset($_POST['augtype_Type_19'])) $augtype = $augtype+262144;
+  if (isset($_POST['augtype_Type_20'])) $augtype = $augtype+524288;
   
   $fields = '';
   $fields .= "slots=\"$slots\", ";

Thank you for this wonderful tool


Created a random item with it

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

BB 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 01:53 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3