vijay30393 Posted September 22, 2012 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 114 Reputation: 0 Joined: 05/10/12 Last Seen: April 18, 2020 Share Posted September 22, 2012 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. Quote Link to comment Share on other sites More sharing options...
Bin4ry Posted September 22, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share Posted September 22, 2012 Are you using Raising Dragon which allows you to have 15 spirits? Quote Link to comment Share on other sites More sharing options...
Emistry Posted September 22, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted September 22, 2012 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; Quote Link to comment Share on other sites More sharing options...
vijay30393 Posted September 22, 2012 Group: Members Topic Count: 35 Topics Per Day: 0.01 Content Count: 114 Reputation: 0 Joined: 05/10/12 Last Seen: April 18, 2020 Author Share Posted September 22, 2012 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). Quote Link to comment Share on other sites More sharing options...
Question
vijay30393
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.