rosfus Posted July 24, 2013 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 75 Reputation: 3 Joined: 04/12/13 Last Seen: August 15, 2014 Share Posted July 24, 2013 i need to add all jobs 5 aspd forever. what can i do this? Quote Link to comment Share on other sites More sharing options...
Patskie Posted July 24, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: Sunday at 03:19 AM Share 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 Link to comment Share on other sites More sharing options...
DeadlySilence Posted July 24, 2013 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 181 Reputation: 53 Joined: 04/07/13 Last Seen: August 23, 2014 Share 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 Link to comment Share on other sites More sharing options...
rosfus Posted July 24, 2013 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 75 Reputation: 3 Joined: 04/12/13 Last Seen: August 15, 2014 Author Share 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 Link to comment Share on other sites More sharing options...
Brave Posted January 6, 2014 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 208 Reputation: 11 Joined: 05/31/12 Last Seen: May 15, 2016 Share Posted January 6, 2014 please answer this question trying to solve base aspd too thanks! Quote Link to comment Share on other sites More sharing options...
Evil Posted January 6, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 25 Reputation: 2 Joined: 12/25/11 Last Seen: February 19, 2014 Share 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 Link to comment Share on other sites More sharing options...
Frhysthia Posted January 14, 2014 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 52 Reputation: 2 Joined: 01/07/13 Last Seen: February 27, 2021 Share 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 Link to comment Share on other sites More sharing options...
Evil Posted January 18, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 25 Reputation: 2 Joined: 12/25/11 Last Seen: February 19, 2014 Share Posted January 18, 2014 nothing change. Recompiling server? Quote Link to comment Share on other sites More sharing options...
Frhysthia Posted January 19, 2014 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 52 Reputation: 2 Joined: 01/07/13 Last Seen: February 27, 2021 Share Posted January 19, 2014 nothing change. Recompiling server? yea i recompiled it a couple of times. and still not working Quote Link to comment Share on other sites More sharing options...
Question
rosfus
i need to add all jobs 5 aspd forever.
what can i do this?
Link to comment
Share on other sites
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.