Jump to content
  • 0

Star gladiator union without link


ArchMaiden

Question


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  01/07/13
  • Last Seen:  

how to remove the required spirit of Star Gladiator - Union ?

i already tried it in battle.c , but it seems dont work..

thanks ! :D

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  01/07/13
  • Last Seen:  

somebody knows ? :(

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

maybe this way.. haha

skill.c at line 12732 (svn17101)

case SG_FUSION:
+/*
if (sc && sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_STAR)
break;
//Auron insists we should implement SP consumption when you are not Soul Linked. [skotlex]
//Only invoke on skill begin cast (instant cast skill). [Kevin]
if( require.sp > 0 )
{
if (status->sp < (unsigned int)require.sp)
clif_skill_fail(sd,skill_id,USESKILL_FAIL_SP_INSUFFICIENT,0);
else
status_zap(&sd->bl, 0, require.sp);
}
return 0;
+*/
+break;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  01/07/13
  • Last Seen:  

maybe this way.. haha

skill.c at line 12732 (svn17101)

case SG_FUSION:
+/*
if (sc && sc->data[sC_SPIRIT] && sc->data[sC_SPIRIT]->val2 == SL_STAR)
break;
//Auron insists we should implement SP consumption when you are not Soul Linked. [skotlex]
//Only invoke on skill begin cast (instant cast skill). [Kevin]
if( require.sp > 0 )
{
if (status->sp < (unsigned int)require.sp)
clif_skill_fail(sd,skill_id,USESKILL_FAIL_SP_INSUFFICIENT,0);
else
status_zap(&sd->bl, 0, require.sp);
}
return 0;
+*/
+break;

I just need to copy this to my skill.c ?

Link to comment
Share on other sites


  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

no, you must read which the correct lines that have to change, need to be added and need to become comments..

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...