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 (0)No (0)
Photo

[Sura] Gentle Touch Change

Posted by Michi on 24 February 2013 - 07:14 PM

On iro the skill increase dmg from skill like asura but not in hercules can anyone confirm this on kro?

it works fine..its just the damage increase is not that high
using this formula
// ATK increase: ATK [{(Caster DEX / 4) + (Caster STR / 2)} x Skill Level / 5]
..but let me check if the increase is fixed damage or percentage...

ok found the problem it should be a fixed additional damage in the base ATK or the ATK before skill modifier..

:meow:

changed status to: Confirmed

Any news on this? Just wondering.

changed status to: Fixed

oh..its already fixed since re atk is added..

:meow:

Does it show in the status window? I don't see any ATK bonuses when I use it.

Does it show in the status window? I don't see any ATK bonuses when I use it.

officially it doesn't..

if( !viewable ){
  /* some statuses that are hidden in the status window */
  if(sc->data[SC_STRIKING])
   watk += sc->data[SC_STRIKING]->val2;
  if(sc->data[SC_GENTLETOUCH_CHANGE] && sc->data[SC_GENTLETOUCH_CHANGE]->val2)
   watk += sc->data[SC_GENTLETOUCH_CHANGE]->val2;
  return (unsigned short)cap_value(watk,0,USHRT_MAX);
}
:meow: