Jump to content
  • 0

Single Strip through FCP with Item Required


Linkin Park

Question


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  227
  • Reputation:   11
  • Joined:  11/16/11
  • Last Seen:  

Hi,

Attached below is a modified codes for the strip skills way back 2008. I think this was made by DZeroX if I'm not mistaken.

Basically what it does is allow the Stalker with Soul Link to strip an enemy's weapon, armor, shield or headgear even the enemy has FCP. It requires 1 "Coat Remover" item to strip. There's still a chance that the strip will fail though and the item will be consumed.

I don't think this will work with the current code so I attached it here and asking someone if they can modify it to be compatible with the current code.

Thank you :)

stripskill.rar

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  227
  • Reputation:   11
  • Joined:  11/16/11
  • Last Seen:  

bumps~

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  42
  • Topics Per Day:  0.01
  • Content Count:  227
  • Reputation:   11
  • Joined:  11/16/11
  • Last Seen:  

bumps~

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  782
  • Reputation:   82
  • Joined:  01/01/12
  • Last Seen:  

In skill_require_db.txt

476,0,0,22:24:26:28:30,0,0,0,99,0,0,none,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 //ST_FULLSTRIP##

Change red to your Coat Remover ID, green to amount.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  2044
  • Reputation:   682
  • Joined:  10/09/12
  • Last Seen:  

@darristan,

if I understand his request correctly, just changing in the skill_require_db still can't bypass FCP strip

http://www.eathena.ws/board/index.php?s=&showtopic=264098&view=findpost&p=1496777

I think answer is something like this

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  782
  • Reputation:   82
  • Joined:  01/01/12
  • Last Seen:  

Oops. I didn't read the request properly :P

Try replace skill.c line 6079 into this:

 if( sd && skillid == ST_FULLSTRIP && tsc && tsc->data[sC_CP_WEAPON] && tsc->data[sC_CP_HELM] && tsc->data[sC_CP_ARMOR] && tsc->data[sC_CP_SHIELD])
 {
  if(sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_ROGUE) {
if( (i = skill_strip_equip(bl, location, i, skilllv, d)) || (skillid != ST_FULLSTRIP && skillid != GC_WEAPONCRUSH ) )
 clif_skill_nodamage(src,bl,skillid,skilllv,i);
break;
  }
  clif_gospel_info(sd, 0x28);
  break;
 }

This will check if target has any of Chemical Protection buff then check if user has Soul Link buff.

If no, return fail message.

If yes, attempt to strip like normal full strip behavior.

Edited by darristan
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...