 Issue Information
Issue Information
				- 
						
						#005650 
- 
								
								
								2 - Fair 
- 
								
								
								Fixed 
 Issue Confirmations
Issue Confirmations
					- 
							Yes (0)No (0)
								
									
								
									
								
									
								
								Originally posted by zandotc
GN_REMODELING is not giving the 2500 + capacity in cart.
Revision 15979
							
							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
												
											
										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:
clif.c
Find:
												
											
										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....
												
											
										Solved...
PERFECT!!!!! Thank You....
												Originally posted by Igniz
 
												
												
												
											
										 
												
												
												Originally posted by Ind
Thank you all for the feedback, Igniz thanks for providing a temporary fix. Fixed in [rev=16042]
												
											
										Thank you all for the feedback, Igniz thanks for providing a temporary fix. Fixed in [rev=16042]


 0
 0 
					
 
  
								
							









