Jump to content
  • 0

Problem with Dangerous Soul Collect(Hyper sprite)


vijay30393

Question


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  114
  • Reputation:   0
  • Joined:  05/10/12
  • Last Seen:  

Problem with Dangerous Soul Collect(Hyper sprite)

Dangerous Soul Collect(Hyper sprite) will be casting if also i have 5 sprite's with me.

I need a code where the Dangerous Soul Collect(Hyper sprite) should not cast if i have 5 sprite's with me.

Could any one help me with the code, please leave a msg down, tanking you. :)

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


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

Are you using Raising Dragon which allows you to have 15 spirits?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2350
  • Joined:  10/28/11
  • Last Seen:  

not sure about this..but you can try...

trunk/src/map/skill.c

case CH_SOULCOLLECT:
 if(sd && sd->spiritball < 5) {	  <-------------------------------------------
  int limit = 5;
  if( sd->sc.data[sC_RAISINGDRAGON] )
limit += sd->sc.data[sC_RAISINGDRAGON]->val1;
  clif_skill_nodamage(src,bl,skillid,skilllv,1);
  for (i = 0; i < limit; i++)
pc_addspiritball(sd,skill_get_time(skillid,skilllv),limit);
 }
 break;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  114
  • Reputation:   0
  • Joined:  05/10/12
  • Last Seen:  

Emistry i added it, but still its using the same skill even after i have 5 spirt's with me.

@drristan nup, im just using Dangerous Soul Collect(Hyper sprite).

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