Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

Issue Confirmations

  • Yes (1)No (0)
Photo

Gate of Hell (Over powered)

Posted by kyeme on 20 February 2014 - 05:50 AM

Please kindly check the damage of Sura's Gate Of Hell, it's kind of over powered. Thanks

Shura - No items (Full HP)
Posted Image

Warlock w/ items
Posted Image

I think this is not normal

find src/map/battle.c

find:
   case SR_GATEOFHELL:
            ATK_ADD (sstatus->max_hp - status_get_hp(src));
            if(sc && sc->data[SC_COMBOATTACK] && sc->data[SC_COMBOATTACK]->val1 == SR_FALLENEMPIRE){
                ATK_ADD (sstatus->max_sp * (1 + skill_lv * 2 / 10)) + 40 * status->get_lv(src) );
            }else{
                ATK_ADD (sstatus->sp * (1 + skill_lv * 2 / 10)) + 10 * status->get_lv(src) );
            }
            break;
    }



change to:

   case SR_GATEOFHELL:
            ATK_ADD (sstatus->max_hp - status_get_hp(src));
            if(sc && sc->data[SC_COMBOATTACK] && sc->data[SC_COMBOATTACK]->val1 == SR_FALLENEMPIRE){
                ATK_ADD ( ((int64)sstatus->max_sp * (1 + skill_lv * 2 / 10)) + 40 * status->get_lv(src) );
            }else{
                ATK_ADD ( ((int64)sstatus->sp * (1 + skill_lv * 2 / 10)) + 10 * status->get_lv(src) );
            }
            break;
    }




i not sure that will be good for you or not :) .

Maybe because you don't have anything equipped. GOH deal more DAMAGE if your HP is low.

Also, GOH should ignore FLEE.. in the current one it misses to the character with High Flee

I can confirm this one

test on aegis damage looks good, but I confirm for flee. High flee reduce damage.

and by the way, there are 2 types of Gate of Hell in RO.

Level 1-5 : Considered as MELEE and cannot be blocked by PNEUMA and can be reduced by melee defense.
Level 6-10: Considered as RANGE and can be blocked by PNEUMA and any range defense.

On screenshot, how many Level of Gates of Hell did the attacker do?

changed status to: Fixed

Fix in : https://github.com/H...69872e0b7b65da3

Mega thanks to Ind, I forgot to put in the changelog  :(

My damage comparison

Aegis Server - Lvl 10 Gate of Hell Damage result:
  • no weapon
  • ATK: 118 + 0
  • Sura HP: 21,112 <-- FULL HP
  • Str: 41 + 16
  • Dex: 99 +17
  • Vit: 50+ 5
  • 1.6k per HIT upto 2.3k per HIT
Hercules Server - Lvl 10 Gate of Hell Damage result:
Same Stats and no weapon
FULL HP
  • 2.7k per HIT upto 3.1k per HIT
Target:
Arch Bishop with Cranial Guard, Immune Muffler, Feather Beret equipped.

~~~
Additional bug: On Aegis, Gate of Hell bypasses Assumptio reduction buff.

For the damage it's not a skill formula problem. The problem come from the max HP/SP of hercules. But if you got the exact same max HP/SP damage are the same ^^

I will get a look for assumptio

For the damage it's not a skill formula problem. The problem come from the max HP/SP of hercules. But if you got the exact same max HP/SP damage are the same ^^

I will get a look for assumptio

I'm keeping my HP/SP on the same count both in Aegis and here in Hercules and still, it is overpowered here in Hercules.

Hercules
Posted Image

Posted Image

Aegis
Posted Image

Posted Image

I use GOH lvl 10 for both and as you can see I have exact same max hp/sp on herc and on aegis (it's a beta hp/sp patch I use for hercules)

As you can see damage are almoste identical =)

Hercules
Posted Image

Posted Image

Aegis
Posted Image

Posted Image

I use GOH lvl 10 for both and as you can see I have exact same max hp/sp on herc and on aegis (it's a beta hp/sp patch I use for hercules)

As you can see damage are almoste identical =)


The reason why our damage comparison is different is because I equipped a Cranial Guard.

The bug here is that Thara Frog Card is not working properly.

So it's not a GOH problem you should make a bug report for racial reduction =)