Quick Posted April 16, 2013 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 8 Reputation: 0 Joined: 04/14/13 Last Seen: May 10, 2013 Share Posted April 16, 2013 (edited) Good day guys! I can't seem to search( spend like 45 minutes of searching ) for any related topics for my scripts so yea can you help me out guys Rogue Talisman: Increase the damage dealt from Double Strafe by 2% You can divest through Full Protection by consuming Glistening Coat for each attempt ( only when the target has full protection ) Edited April 16, 2013 by Quick Quote Link to comment Share on other sites More sharing options...
R a g n a r o k Posted April 16, 2013 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 23 Reputation: 0 Joined: 01/21/13 Last Seen: June 17, 2017 Share Posted April 16, 2013 +1 me too Quote Link to comment Share on other sites More sharing options...
Quick Posted April 18, 2013 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 8 Reputation: 0 Joined: 04/14/13 Last Seen: May 10, 2013 Author Share Posted April 18, 2013 Bump! Quote Link to comment Share on other sites More sharing options...
Patskie Posted April 18, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share Posted April 18, 2013 On your src/map/battle.c Find : case MA_DOUBLE: skillratio += 10*(skill_lv-1); Add below : if (sd && sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_ROGUE) skillratio += 2; On your src/map/skill.c Find : //Special message when trying to use strip on FCP [Jobbie] if( sd && skill_id == ST_FULLSTRIP && tsc && tsc->data[SC_CP_WEAPON] && tsc->data[SC_CP_HELM] && tsc->data[SC_CP_ARMOR] && tsc->data[SC_CP_SHIELD]) { clif_gospel_info(sd, 0x28); break; } Add below : if ( sd && tsc && sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_ROGUE && rand()%100 < 20 && ( skill_id == RG_STRIPWEAPON && tsc->data[SC_CP_WEAPON] || skill_id == RG_STRIPSHIELD && tsc->data[SC_CP_SHIELD] || skill_id == RG_STRIPARMOR && tsc->data[SC_CP_ARMOR] || skill_id == RG_STRIPHELM && tsc->data[SC_CP_HELM] ) ) { int item_id = 7139; // Glistening Coat int ii; ARR_FIND( 0, MAX_INVENTORY, ii, sd->status.inventory[ii].nameid == item_id ); if ( ii < MAX_INVENTORY ) { pc_delitem( sd, ii, 1, 0, 0, LOG_TYPE_CONSUME); switch ( skill_id ) { case RG_STRIPWEAPON: status_change_end( bl, SC_CP_WEAPON, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPWEAPON, 100, skill_lv, d ); break; case RG_STRIPSHIELD: status_change_end( bl, SC_CP_SHIELD, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPSHIELD, 100, skill_lv, d ); break; case RG_STRIPARMOR: status_change_end( bl, SC_CP_ARMOR, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPARMOR, 100, skill_lv, d ); break; case RG_STRIPHELM: status_change_end( bl, SC_CP_HELM, INVALID_TIMER ); sc_start( NULL, bl, SC_STRIPHELM, 100, skill_lv, d ); break; } clif_skill_nodamage( src, bl, skill_id, skill_lv, i ); break; } } Note that rand()%100 < 20 is 20% chance. Remove them if you want. Hope this helps Quote Link to comment Share on other sites More sharing options...
Renji Abarai Posted April 18, 2013 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 90 Reputation: 0 Joined: 03/29/13 Last Seen: September 16, 2018 Share Posted April 18, 2013 (edited) i tried this but i'm getting errors help me pls Edited April 18, 2013 by Salmon Quote Link to comment Share on other sites More sharing options...
Patskie Posted April 18, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share Posted April 18, 2013 i tried this but i'm getting errors help me pls If you got error then you must post it. And what rAthena SVN are you using Quote Link to comment Share on other sites More sharing options...
Renji Abarai Posted April 19, 2013 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 90 Reputation: 0 Joined: 03/29/13 Last Seen: September 16, 2018 Share Posted April 19, 2013 i got these erros when i recompile Quote Link to comment Share on other sites More sharing options...
Patskie Posted April 19, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share Posted April 19, 2013 What SVN are you using? i believe there is an old way on how to write skill_id and skill_lv in source. Try replacing them by skillid and skilllv Quote Link to comment Share on other sites More sharing options...
Question
Quick
Good day guys!
I can't seem to search( spend like 45 minutes of searching ) for any related topics for my scripts so yea can you help me out guys
Rogue Talisman:
- Increase the damage dealt from Double Strafe by 2%
- You can divest through Full Protection by consuming Glistening Coat for each attempt ( only when the target has full protection )
Edited by QuickLink to comment
Share on other sites
7 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.