donkeyg Posted July 8, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Share Posted July 8, 2012 i have edited my 3rd job classes instant cast is 170 dex, but how to make the 2nd job classes instant cast is 150? Quote Link to comment Share on other sites More sharing options...
Limestone Posted July 8, 2012 Group: Members Topic Count: 155 Topics Per Day: 0.03 Content Count: 647 Reputation: 16 Joined: 11/21/11 Last Seen: December 28, 2022 Share Posted July 8, 2012 (edited) in pre-re.. the cast rate dex scale for the jobs is 150, so i would say that 3rd jobs are not applicable in pre-re servers. if you want pre-re emulator but has a seperate cast rate dex for trans jobs and 3rd jobs, i recommend you use 3CeAM. Edited July 8, 2012 by Rage Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 8, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 8, 2012 but im not pre-re, im renewal svn Quote Link to comment Share on other sites More sharing options...
Limestone Posted July 8, 2012 Group: Members Topic Count: 155 Topics Per Day: 0.03 Content Count: 647 Reputation: 16 Joined: 11/21/11 Last Seen: December 28, 2022 Share Posted July 8, 2012 in renewal, the casting time of the skills are fixed, even if you set it to 150, it's still fixed cast. Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 8, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 8, 2012 hmm.. don understand, can explain more clearly please Quote Link to comment Share on other sites More sharing options...
Wafflebutt Posted July 8, 2012 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 234 Reputation: 19 Joined: 06/15/12 Last Seen: November 28, 2023 Share Posted July 8, 2012 Renewal has 2 cast times. 1 Fixed cast time and 1 Variable cast time The fixed cast time can only be reduced by items that reduce fixed cast time, but cannot reduce it fully. Variable cast time is the dex dependent cast time. You can reduce the var cast time fully by having dex for instant cast (170). You would still have the fixed cast time tho. Meaning that you can´t have instant cast in renewal. Only Pre Re. Short: Fixed cast time -> Not reduced by dex and cannot reach 0 Var cast time -> reduced by dex can reach 0 total cast time = fixed + var cast Lets say you have 170 dex. You are casting Storm Gust lvl 10 (15 sec cast time) 15 sec are the total cast time 20% of the 15 sec are fixed cast time (3sec) Leaving 12 sec as var cast time. Since you have 170 dex / instant cast, you reduce the variable cast time fully to 0. Total casttime = var cast (0) + fix (3) = 3sec Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 11, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 11, 2012 wah=.= don understand=_= so.. the conclusion is no way to make it 150 dex cast for trans classes of renewal svn? Renewal has 2 cast times. 1 Fixed cast time and 1 Variable cast time The fixed cast time can only be reduced by items that reduce fixed cast time, but cannot reduce it fully. Variable cast time is the dex dependent cast time. You can reduce the var cast time fully by having dex for instant cast (170). You would still have the fixed cast time tho. Meaning that you can´t have instant cast in renewal. Only Pre Re. Short: Fixed cast time -> Not reduced by dex and cannot reach 0 Var cast time -> reduced by dex can reach 0 total cast time = fixed + var cast Lets say you have 170 dex. You are casting Storm Gust lvl 10 (15 sec cast time) 15 sec are the total cast time 20% of the 15 sec are fixed cast time (3sec) Leaving 12 sec as var cast time. Since you have 170 dex / instant cast, you reduce the variable cast time fully to 0. Total casttime = var cast (0) + fix (3) = 3sec so.. the conclusion is no way to make it 150 dex cast for trans classes of renewal svn? bump Quote Link to comment Share on other sites More sharing options...
clydelion Posted July 11, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 754 Reputation: 186 Joined: 05/22/12 Last Seen: October 15, 2022 Share Posted July 11, 2012 try this out.. Index: skill.c =================================================================== --- skill.c (revision 16356) +++ skill.c (working copy) @@ -13011,7 +13011,9 @@ struct status_change *sc = status_get_sc(bl); struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 ); Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 11, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 11, 2012 error #_# Quote Link to comment Share on other sites More sharing options...
clydelion Posted July 11, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 754 Reputation: 186 Joined: 05/22/12 Last Seen: October 15, 2022 Share Posted July 11, 2012 what revision are you? compiled successfully for me. Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 11, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 11, 2012 try this out.. Index: skill.c =================================================================== --- skill.c (revision 16356) +++ skill.c (working copy) @@ -13011,7 +13011,9 @@ struct status_change *sc = status_get_sc(bl); struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 ); sorry , i mean i cant even found these word in my skill.c == Quote Link to comment Share on other sites More sharing options...
clydelion Posted July 11, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 754 Reputation: 186 Joined: 05/22/12 Last Seen: October 15, 2022 Share Posted July 11, 2012 that's why I'm asking, on what revision are you? 3ceam? eathena? rathena? what revision number? Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 11, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 11, 2012 Rathena the latest 16328 if no wrong Quote Link to comment Share on other sites More sharing options...
clydelion Posted July 11, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 754 Reputation: 186 Joined: 05/22/12 Last Seen: October 15, 2022 Share Posted July 11, 2012 I don't know why you can find it. I can see it right here. anyway if you manage to find it.. here's a new diff for that exact revision.. Index: skill.c =================================================================== --- skill.c (revision 16328) +++ skill.c (working copy) @@ -13000,8 +13000,11 @@ *------------------------------------------*/ int skill_castfix_sc (struct block_list *bl, int time, int skill_id, int skill_lv) { struct status_change *sc = status_get_sc(bl); + struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd && sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 ); Quote Link to comment Share on other sites More sharing options...
donkeyg Posted July 12, 2012 Group: Members Topic Count: 344 Topics Per Day: 0.07 Content Count: 1060 Reputation: 1 Joined: 02/13/12 Last Seen: November 14, 2016 Author Share Posted July 12, 2012 I don't know why you can find it. I can see it right here. anyway if you manage to find it.. here's a new diff for that exact revision.. Index: skill.c =================================================================== --- skill.c (revision 16328) +++ skill.c (working copy) @@ -13000,8 +13000,11 @@ *------------------------------------------*/ int skill_castfix_sc (struct block_list *bl, int time, int skill_id, int skill_lv) { struct status_change *sc = status_get_sc(bl); + struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd && sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 ); yes, got it.. compiled my server, but stil the same, 2nd classes stil need 170dex just uncast Quote Link to comment Share on other sites More sharing options...
clydelion Posted July 12, 2012 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 754 Reputation: 186 Joined: 05/22/12 Last Seen: October 15, 2022 Share Posted July 12, 2012 ohhh.. that diff removes the fixed delay for non-3rd class characters. Quote Link to comment Share on other sites More sharing options...
iubantot Posted June 1, 2013 Group: Members Topic Count: 117 Topics Per Day: 0.03 Content Count: 312 Reputation: 34 Joined: 10/15/12 Last Seen: 6 hours ago Share Posted June 1, 2013 I don't know why you can find it. I can see it right here. anyway if you manage to find it.. here's a new diff for that exact revision.. Index: skill.c =================================================================== --- skill.c (revision 16328) +++ skill.c (working copy) @@ -13000,8 +13000,11 @@ *------------------------------------------*/ int skill_castfix_sc (struct block_list *bl, int time, int skill_id, int skill_lv) { struct status_change *sc = status_get_sc(bl); + struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd && sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 ); may i have a diff for latest svn? im using rathena rev 17339 Quote Link to comment Share on other sites More sharing options...
iubantot Posted March 27, 2014 Group: Members Topic Count: 117 Topics Per Day: 0.03 Content Count: 312 Reputation: 34 Joined: 10/15/12 Last Seen: 6 hours ago Share Posted March 27, 2014 I don't know why you can find it. I can see it right here. anyway if you manage to find it.. here's a new diff for that exact revision.. Index: skill.c =================================================================== --- skill.c (revision 16328) +++ skill.c (working copy) @@ -13000,8 +13000,11 @@ *------------------------------------------*/ int skill_castfix_sc (struct block_list *bl, int time, int skill_id, int skill_lv) { struct status_change *sc = status_get_sc(bl); + struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd && sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 ); how to use this on the latest revision ? the remove fix cast times for all non 3rd job skills? Quote Link to comment Share on other sites More sharing options...
Question
donkeyg
i have edited my 3rd job classes instant cast is 170 dex, but how to make the 2nd job classes instant cast is 150?
Link to comment
Share on other sites
17 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.