Sign in to follow this  
Threap

[Fixed] Pvp Antigank CR bonus doesnt seem to be working.

Recommended Posts

in pvp if there are many people attacking you, you are meant to receive an Antigank Cr bonus. The bonus is 1 CR for every player above 1 that is attacking.

 

In the wurm unlimited code this appears in Combathandler.java in the method getCombatRating.

 

     if (this.creature.isPlayer())
     {
       int antiGankBonus = Math.max(0, this.creature.getAttackers() - 1);
       combatRating += antiGankBonus;
       this.creature.sendToLoggers("Adding " + antiGankBonus + " to combat rating due to attackers.");
     }

Around the time of the recent priest overhaul or possibly just before that, it seems this bonus is no longer working.

 

 

  • Like 1

Share this post


Link to post
Share on other sites

It was being applied just not consistently, due to how it was calculated you get different bonuses depending on the order you swung at them. As far as I can tell this has been an issue since it was added and is nothing new.  Added to the bugs list thanks for the report.

  • Like 1

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this