Page 5 of 11
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 6:31 pm
by Azarael
When backlashing, the spell is lost entirely btw, it should cast even if you backlash - unless this is another thing that's changed between March 2009 and today, in which case blech.
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 6:44 pm
by nalgol
i thought when it backlashes it means the bw / sorc **** up and the spell exploded in there face or not?
i just checked its 20 % not 25 i lowert it a bit already so if you got 1k heal it will hit ja for 200 damage
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 6:46 pm
by sKrissy
Thanks so much guys!! For everything!! But i've got 1 question.. What about the White Lion?? Any changes made on the pet system?? It's my fav class of them all and i just love to play whit it

Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 6:55 pm
by Azarael
I'll wait for someone to confirm, but I played a BW at launch and you definitely didn't lose your spell then when you triggered an Explosion.
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 7:01 pm
by eisenhans
Azarael wrote:I'll wait for someone to confirm, but I played a BW at launch and you definitely didn't lose your spell then when you triggered an Explosion.
Correct. At least if I remember correctly. You suffered damage, but the spell was completed and hurled at the enemy in a phenomenal pyroclast of fire and suffering.
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 7:01 pm
by Bozzax
Backlash didn't make spells fail yes. Only had a % to do a self hit as well on ability use
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 7:11 pm
by nalgol
oh well its an easy fix afterall

Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 7:38 pm
by Sulorie
But the % on backlash is lower with less than 100 DM or is it constant?
Btw, crit chance was raised by 35% and crit bonus dmg by 100% with 100 DM.
The selfdamage is based on your rank and the DM value, without any mitigation.
Here a link with the correct values:
http://warhammeronline.wikia.com/wiki/Dark_magic
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 8:04 pm
by navis
woo hoo!! Fantastic job
Re: Changelog 28/10/2014 (Career Mechanics, Auction House)
Posted: Wed Oct 29, 2014 8:08 pm
by nalgol
Sulorie wrote:But the % on backlash is lower with less than 100 DM or is it constant?
Btw, crit chance was raised by 35% and crit bonus dmg by 100% with 100 DM.
The selfdamage is based on your rank and the DM value, without any mitigation.
Here a link with the correct values:
http://warhammeronline.wikia.com/wiki/Dark_magic
public Boolean isSOBWBacklash()
{
byte chance = 0;
if (CarrerRecurce <= 10)
chance = 4;
else if (CarrerRecurce > 10 && CarrerRecurce <=30)
chance = 8;
else if (CarrerRecurce > 30 && CarrerRecurce <= 70)
chance = 15;
else if (CarrerRecurce > 70 && CarrerRecurce <= 90)
chance = 25;
else if (CarrerRecurce > 90 )
chance = 35;
if (new Random().Next(0, 100) < chance )
return true;
return false;