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

  • #007938

  • 0 - None Assigned

  • Fixed

Issue Confirmations

  • Yes (5)No (0)
Photo

Frenzy

Posted by SSky on 02 January 2014 - 04:13 AM

Frenzy requires Job level 50 before players can add the skill even if you're an RK already. After resetting skills you can't add frenzy skill anymore. But when you change your job level to 50, you can add it again.

pc.c

- if( sd->status.job_level < pc->skill_tree[c][i].joblv )
- f = 0; // job level requirement wasn't satisfied


+ if( sd->status.job_level < pc->skill_tree[c][i].joblv ) { //We need to get the actual class in this case
+ int class_ = pc_mapid2jobid(sd->class_, sd->status.sex);
+     class_ = pc_class2idx(class_);
+ if (class_ == c || (class_ != c && sd->status.job_level < pc->skill_tree[class_][i].joblv))
+ f = 0; // job level requirement wasn't satisfied
+ }

Still Get Error  When you change to Rune Knight  Skill frenzy(Berserk)  will gone.

if( sd->status.job_level <pc->skill_tree[c][i].joblv ) { //We need to get the actual class in this case
       int class_ = pc->mapid2jobid(sd->class_, sd->status.sex);
            class_ = pc_class2idx(class_);
if (class_ == c || (class_ != c && sd->status.job_level < pc->skill_tree[class_][i].joblv))
            f = 0; // job level requirement wasn't satisfied
}



Fixed @ e809003ebc015acc98728ba6f4515da173d8aabd
:meow:

changed status to: Fixed