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

  • #005650

  • 2 - Fair

  • Fixed

Issue Confirmations

  • Yes (0)No (0)
Photo

[GENETIC] GN_REMODELING

Posted by Hercules Bot on 26 April 2012 - 11:20 PM

Originally posted by zandotc
GN_REMODELING is not giving the 2500 + capacity in cart.

Revision 15979

Originally posted by Ind
I think the whole cart max weight thing should be rewritten for efficiency in order to add this bonus. instead of using a battle config perhaps this should be placed in user session data for variable values

Originally posted by Igniz
Temporal fix untill rathena devs work on this:

pc.c find:
if( (w = data->weight*amount) + sd->cart_weight > battle_config.max_cart_weight )
Reemplaze
if( (w = data->weight*amount) + sd->cart_weight > battle_config.max_cart_weight + pc_checkskill(sd, GN_REMODELING_CART)*5000 )
Find:
  clif_skillup(sd,skill_num);
  clif_updatestatus(sd,SP_SKILLPOINT);
Add below:
  if( skill_num == GN_REMODELING_CART )
   clif_updatestatus(sd,SP_CARTINFO);

clif.c
Find:
WFIFOL(fd,10)=battle_config.max_cart_weight;
Reemplaze:
WFIFOL(fd,10)=battle_config.max_cart_weight + (pc_checkskill(sd,GN_REMODELING_CART)*5000);


Originally posted by zandotc
Solved...
PERFECT!!!!! Thank You....

Originally posted by Igniz
/no1

Originally posted by Ind
Thank you all for the feedback, Igniz thanks for providing a temporary fix. Fixed in [rev=16042]

moved issue from Skills