whine06 Posted March 10, 2012 Posted March 10, 2012 Rouge/ST Class when link can by pass FCP not FS , only single strip 5% and 1 glistening coat per attempt Knight/LK when Link can use skill lvl 10 Parrying with 1handed Sword and Onehand Quicken Star Gladiator when Link can use skills lvl 10 Parrying and Lord Of Vermilion increase damage on boss monster and holy monster 100% Sage/prof when Link add 30% maxHP Alchemist/Creator when link give more damage in Acid Terror 100% and Increase effectiveness of potion pitcher 50% Wizard/HW when link give 20% maxHP and Increase Magic Crasher Damage 150% Priest/HP when link increase damage of Holy Light by 400% and give 30% reflect damage on melee enemy Hunter/Sniper when link autocast Falcon Assault when attacking sorry if i have lots of request Thanks in advance ... Quote
-1 whine06 Posted March 12, 2012 Author Posted March 12, 2012 (edited) can someone re-script this coz i want 10% single strip only and not removing FCP just strip it directly i found it here : http://www.eathena.w...pic=264098&st=0 Index: skill.c =================================================================== --- skill.c (revision 14829) +++ skill.c (working copy) @@ -4510,7 +4510,38 @@ clif_gospel_info(sd, 0x28); break; } - + if ( sd && tsc && sd->sc.data[sC_SPIRIT] && sd->sc.data[sC_SPIRIT]->val2 == SL_ROGUE && + ( skillid == RG_STRIPWEAPON && tsc->data[sC_CP_WEAPON] || + skillid == RG_STRIPSHIELD && tsc->data[sC_CP_SHIELD] || + skillid == RG_STRIPARMOR && tsc->data[sC_CP_ARMOR] || + skillid == RG_STRIPHELM && tsc->data[sC_CP_HELM] ) ) { + int item_id = 501; // red potion + 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); + switch ( skillid ) { + case RG_STRIPWEAPON: + status_change_end( bl, SC_CP_WEAPON, INVALID_TIMER ); + sc_start( bl, SC_STRIPWEAPON, 100, skilllv, d ); + break; + case RG_STRIPSHIELD: + status_change_end( bl, SC_CP_SHIELD, INVALID_TIMER ); + sc_start( bl, SC_STRIPSHIELD, 100, skilllv, d ); + break; + case RG_STRIPARMOR: + status_change_end( bl, SC_CP_ARMOR, INVALID_TIMER ); + sc_start( bl, SC_STRIPARMOR, 100, skilllv, d ); + break; + case RG_STRIPHELM: + status_change_end( bl, SC_CP_HELM, INVALID_TIMER ); + sc_start( bl, SC_STRIPHELM, 100, skilllv, d ); + break; + } + clif_skill_nodamage( src, bl, skillid, skilllv, i ); + break; + } + } //Attempts to strip at rate i and duration d if( (i = skill_strip_equip(bl, location, i, skilllv, d)) || skillid != ST_FULLSTRIP ) clif_skill_nodamage(src,bl,skillid,skilllv,i); Edited March 12, 2012 by whine06 Quote
ngek202 Posted March 10, 2012 Posted March 10, 2012 are you looking for an Item for Soul Linking? if yes here: http://rathena.org/board/topic/57792-soul-link-scrolls-with-client-files/ Quote
Emistry Posted March 10, 2012 Posted March 10, 2012 @ngek ....didnt you read the post ? or you just blindly post here without looking the content but just the title of topic ? your script is just provide Soul Link effect...but not those effect that listed at above.... please check the content next time @topic starter next time make sure your title is specific to what you want... your topic title may misleading some members. Quote
whine06 Posted March 11, 2012 Author Posted March 11, 2012 (edited) @emistry sorry im newbie my fault .. thanks for correcting and move in the right place @topic anyone can help me .. ? Edited March 11, 2012 by whine06 Quote
Patskie Posted December 20, 2012 Posted December 20, 2012 (edited) up Edited December 20, 2012 by Traumatized Quote
AdventLyn Posted January 14, 2013 Posted January 14, 2013 Rouge/ST Class when link can by pass FCP not FS , only single strip 5% and 1 glistening coat per attempt Knight/LK when Link can use skill lvl 10 Parrying with 1handed Sword and Onehand Quicken Star Gladiator when Link can use skills lvl 10 Parrying and Lord Of Vermilion increase damage on boss monster and holy monster 100% Sage/prof when Link add 30% maxHP Alchemist/Creator when link give more damage in Acid Terror 100% and Increase effectiveness of potion pitcher 50% Wizard/HW when link give 20% maxHP and Increase Magic Crasher Damage 150% Priest/HP when link increase damage of Holy Light by 400% and give 30% reflect damage on melee enemy Hunter/Sniper when link autocast Falcon Assault when attacking sorry if i have lots of request Thanks in advance ... Quote
Question
whine06
Rouge/ST Class when link can by pass FCP not FS , only single strip 5% and 1 glistening coat per attempt
Knight/LK when Link can use skill lvl 10 Parrying with 1handed Sword and Onehand Quicken
Star Gladiator when Link can use skills lvl 10 Parrying and Lord Of Vermilion increase damage on boss monster and holy monster 100%
Sage/prof when Link add 30% maxHP
Alchemist/Creator when link give more damage in Acid Terror 100% and Increase effectiveness of potion pitcher 50%
Wizard/HW when link give 20% maxHP and Increase Magic Crasher Damage 150%
Priest/HP when link increase damage of Holy Light by 400% and give 30% reflect damage on melee enemy
Hunter/Sniper when link autocast Falcon Assault when attacking
sorry if i have lots of request
Thanks in advance ...
10 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.