Quote:
Originally Posted by Pengting
[You must be logged in to view images. Log in or Register.]
Great program, I am having issues Malise. They don't show up? The mob name shows up as if it has been affected by the spell but the Malise timer and graphic doesn't show.
Does anyone else have that issue?
|
Quote:
Originally Posted by khaoswizard
[You must be logged in to view images. Log in or Register.]
Yes, I'm having the same issue with Malaisement, the lvl 34 shaman spell of the same line. Never bothered me much when soloing since it lasts so long, but it would be nice to see the timer when debuffing an enchanter's charmed pet.
|
I will fix this issue in my dev branch, but you can fix it locally yourself if you want! For some reason both malise and malisement have a max duration of 0 in spells_us.txt (this is the file I build the spell database from). Every spell has a secondary location which you can toggle the usage of within your nparse.config.json file.
The secondary max duration is 140 (ticks, minutes = ticks/10) which is 14 minutes @ level 65 -- exactly what the
Wiki says.
Goto the section for spells and make your "use_secondary" section like this to fix the issue:
nparse.config.json
Code:
"spells": {
...
stuff
...
"use_casting_window": true,
"use_secondary": [
"levitate",
"malise",
"malisement"
],
"use_secondary_all": false,
...
stuff
...