Phial of undeath
Moderator: Moderator
Phial of undeath
Can the Phial of undeath be flipped using *remove curse* to be +5 to stats rather than -5???
Live long and prosper, and for any vampires out there I have a cure for your condition to start living...
http://www.youtube.com/watch?v=GowMI4wvmU4
Lonnie Courtney Clay
http://www.youtube.com/watch?v=GowMI4wvmU4
Lonnie Courtney Clay
-
- Uruivellas
- Posts: 718
- Joined: Tue Dec 13, 2005 12:35 am
I read the curses spoiler on AFC. I am going to donate that nasty thing to Mathom house!
Live long and prosper, and for any vampires out there I have a cure for your condition to start living...
http://www.youtube.com/watch?v=GowMI4wvmU4
Lonnie Courtney Clay
http://www.youtube.com/watch?v=GowMI4wvmU4
Lonnie Courtney Clay
-
- Spiderkin
- Posts: 482
- Joined: Sat Mar 18, 2006 12:48 pm
Artifacts cannot be flipped. The relevant code is in src/spells2.c, remove_curse_aux():
Code: Select all
if ((randint(55-p_ptr->lev) == 1) && !artifact_p(o_ptr))
{
if (o_ptr->to_a < 0) o_ptr->to_a = -o_ptr->to_a;
if (o_ptr->to_h < 0) o_ptr->to_h = -o_ptr->to_h;
if (o_ptr->to_d < 0) o_ptr->to_d = -o_ptr->to_d;
if (o_ptr->pval < 0) o_ptr->pval = -o_ptr->pval;
}
a couple years ago I would occassionally find randart body armour that the game thought was only a 'good' item. I could tell because the inventory slot would be white instead of blue (for ego) or gold (for artifact). As luck would have it, I eventually found a randart like that which had the life bonus and the hideous combat penalties. So I got it cursed by some monster and actually managed to flip the combat penalties to bonuses.
True it was exploiting a bug, but I failed my saving throw to resist doing it.
True it was exploiting a bug, but I failed my saving throw to resist doing it.

Combine that with a randart ring with 12 attacks and you could take out Morgy with a broken dagger...Wastrel wrote:a couple years ago I would occassionally find randart body armour that the game thought was only a 'good' item. I could tell because the inventory slot would be white instead of blue (for ego) or gold (for artifact). As luck would have it, I eventually found a randart like that which had the life bonus and the hideous combat penalties. So I got it cursed by some monster and actually managed to flip the combat penalties to bonuses.
True it was exploiting a bug, but I failed my saving throw to resist doing it.
So.. that's why I never find them. No I'm out to save Middle Earth, not rob merchants. On the other hand, I mow down pretty much every townsfolk that gets in my way, so my characters aren't 100% heros. (I really, really prefer the townsfolk behavior in the T3 ToME module)Yottle wrote:I assume that you don't normally scum speed ring shops for artifacts?Wastrel wrote:Am I the only person who never finds such rings?Yottle wrote:Combine that with a randart ring with 12 attacks and you could take out Morgy with a broken dagger...