Theraze
Active member
My guess was that it was trying to remove one of the hippy effects I had which doesn't actually get removed by DPN. Besides UR, my only 2 scripts that use DPN are BCA, which only casts DPN during Bugbear runs, and get_skill, which only includes it as it's a skill so that you can learn it through the gCLI.
Maybe TPTB changed one of the effects to not be cured by DPN anymore?
So that looks like:
Confused, Light-Headed (unlikely on those two, as I believe I have DN HP as well and it would have been used first)
Cunctatitis, Tetanus, Socialismydia, Apathy, Easily Embarrassed, Flared Nostrils, Prestidigysfunction, Tenuous Grip on Reality, The Colors...
Maybe TPTB changed one of the effects to not be cured by DPN anymore?
Code:
if(beset($effects[Apathy, Easily Embarrassed, Flared Nostrils, Prestidigysfunction, Tenuous Grip on Reality,
The Colors...])
skill_cure($skill[Disco Power Nap]);
Code:
if(beset($effects[Cunctatitis, Tetanus, Socialismydia]) && !use_hot_tub()) {
if(have_skill($skill[Disco Power Nap]))
skill_cure($skill[Disco Power Nap]);
Code:
if(beset($effects[Embarrassed, Sleepy]) && !use_hot_tub()
|| (my_primestat() == $stat[Mysticality] && beset($effects[Confused, Light-Headed]))) {
if(have_skill($skill[Disco Nap]))
skill_cure($skill[Disco Nap]);
else if(have_skill($skill[Disco Power Nap]))
skill_cure($skill[Disco Power Nap]);
Confused, Light-Headed (unlikely on those two, as I believe I have DN HP as well and it would have been used first)
Cunctatitis, Tetanus, Socialismydia, Apathy, Easily Embarrassed, Flared Nostrils, Prestidigysfunction, Tenuous Grip on Reality, The Colors...