rosfus Posted July 24, 2013 Posted July 24, 2013 i need to add all jobs 5 aspd forever. what can i do this? Quote
Patskie Posted July 24, 2013 Posted July 24, 2013 trunk/conf/battle/player.conf didn't get you from a single glance. You mean set the attack speed? A script that will add +5 attack speed? What? // Maximum atk speed. (Default 190, Highest allowed 199) max_aspd: 190 Quote
DeadlySilence Posted July 24, 2013 Posted July 24, 2013 I think he wants to add 5 ASPD to all characters permanently. So, if your character had 160, he wants 165. Quote
rosfus Posted July 24, 2013 Author Posted July 24, 2013 I think he wants to add 5 ASPD to all characters permanently. So, if your character had 160, he wants 165. yes, right sorry my poor english Quote
Brave Posted January 6, 2014 Posted January 6, 2014 please answer this question trying to solve base aspd too thanks! Quote
Evil Posted January 6, 2014 Posted January 6, 2014 (edited) http://svn.code.sf.net/p/rathena/svn/trunk/src/map/status.c // Basic ASPD value i = status_base_amotion_pc(sd,status); status->amotion = cap_value(i,((sd->class_&JOBL_THIRD) ? battle_config.max_third_aspd : battle_config.max_aspd),2000); edit to: // Basic ASPD value i = status_base_amotion_pc(sd,status); status->amotion = cap_value(i-50,((sd->class_&JOBL_THIRD) ? battle_config.max_third_aspd : battle_config.max_aspd),2000); please tested and say result. Edited January 6, 2014 by Evil Quote
Frhysthia Posted January 14, 2014 Posted January 14, 2014 http://svn.code.sf.net/p/rathena/svn/trunk/src/map/status.c // Basic ASPD value i = status_base_amotion_pc(sd,status); status->amotion = cap_value(i,((sd->class_&JOBL_THIRD) ? battle_config.max_third_aspd : battle_config.max_aspd),2000); edit to: // Basic ASPD value i = status_base_amotion_pc(sd,status); status->amotion = cap_value(i-50,((sd->class_&JOBL_THIRD) ? battle_config.max_third_aspd : battle_config.max_aspd),2000); please tested and say result. nothing change. Quote
Frhysthia Posted January 19, 2014 Posted January 19, 2014 nothing change. Recompiling server? yea i recompiled it a couple of times. and still not working Quote
Question
rosfus
i need to add all jobs 5 aspd forever.
what can i do this?
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.