View Single Post
  #8  
Old 11-04-2018, 08:38 AM
Splose
Banned
 
Join Date: Apr 2014
Posts: 279
Default

Quote:
Originally Posted by trustandfall View Post
Not super familiar with the databases at all, nor how to update them. I'll do some digging.

I do know how to get into the DB, and maneuver through it, just no idea where things like the Shadowknight spell set is located. I know how to find individual spells Thanks Demon.
Code:
select * from npc_spells_entries where spellid in (982,3087,24661,39081,39082,39181,39182);
There you can look at all the spell sets that have a harm touch in them and can set the recast_delay / priority accordingly.

EDIT: lol.. that query is for Death Touch not harm touch.. long night!

There are a bajillion ranks of harm touch that players can use but from what I can see just glancing at it looks like NPCs are only using spellid 88

Code:
select * from npc_spells_entries where spellid = 88;
Reply With Quote