Squishyyy Posted April 24, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 60 Reputation: 19 Joined: 11/20/11 Last Seen: March 9, 2024 Share Posted April 24, 2014 I'd like to make Ruwach be a continuous AoE that works on unhidden enemies and unhides hidden enemies. Yes, that sounds broken, but it's what I want. I've tried my best to do it myself, but I'm stuck and my src edits just aren't working. Quote Link to comment Share on other sites More sharing options...
Hyvraine Posted April 24, 2014 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 133 Reputation: 15 Joined: 12/23/11 Last Seen: December 20, 2023 Share Posted April 24, 2014 (edited) I'm not a coder, but shouldn't you just remove the if portion of the case SC_RUWACH in map/status.c? This one? if (tsc && (tsc->data[SC_HIDING] || tsc->data[SC_CLOAKING] || tsc->data[SC_CAMOUFLAGE] || tsc->data[SC_CLOAKINGEXCEED] || tsc->data[SC__INVISIBILITY])) { Or you could just maybe put this code outside the checking? if(battle_check_target( src, bl, BCT_ENEMY ) > 0) skill_attack(BF_MAGIC,src,src,bl,AL_RUWACH,1,tick,0); Edited April 24, 2014 by kenshn111 Quote Link to comment Share on other sites More sharing options...
Squishyyy Posted April 25, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 60 Reputation: 19 Joined: 11/20/11 Last Seen: March 9, 2024 Author Share Posted April 25, 2014 that's the portion that checks for hidden enemies I believe. I'll try it, but I think if I remove that, it won't unhide enemies anymore. I'd still like it to do that as well as work on unhidden enemies. I tried moving ruwach to meteor assault with the splash AoEs, and then adding the skill_attack after the } at the end of the if statement with the if (SC_CLOAKING ||...) thinking it might do both but it just crashed the map server. Quote Link to comment Share on other sites More sharing options...
Hyvraine Posted April 27, 2014 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 133 Reputation: 15 Joined: 12/23/11 Last Seen: December 20, 2023 Share Posted April 27, 2014 That's weird. Mine's working: case SC_RUWACH: /* Reveal hidden target and deal little dammages if ennemy */ if (tsc && (tsc->data[SC_HIDING] || tsc->data[SC_CLOAKING] || tsc->data[SC_CAMOUFLAGE] || tsc->data[SC_CLOAKINGEXCEED] || tsc->data[SC__INVISIBILITY])) { //this sc should hit only status_change_end(bl, SC_HIDING, INVALID_TIMER); status_change_end(bl, SC_CLOAKING, INVALID_TIMER); status_change_end(bl, SC_CAMOUFLAGE, INVALID_TIMER); status_change_end(bl, SC_CLOAKINGEXCEED, INVALID_TIMER); } if(battle_check_target( src, bl, BCT_ENEMY ) > 0) skill_attack(BF_MAGIC,src,src,bl,AL_RUWACH,1,tick,0); if( tsc && tsc->data[SC__SHADOWFORM] && (sce && sce->val4 >0 && sce->val4%2000 == 0) && // for every 2 seconds do the checking rnd()%100 < 100-tsc->data[SC__SHADOWFORM]->val1*10 ) // [100 - (Skill Level x 10)] % status_change_end(bl, SC__SHADOWFORM, INVALID_TIMER); break; Quote Link to comment Share on other sites More sharing options...
Squishyyy Posted April 28, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 60 Reputation: 19 Joined: 11/20/11 Last Seen: March 9, 2024 Author Share Posted April 28, 2014 Got it working, thank you! Quote Link to comment Share on other sites More sharing options...
Question
Squishyyy
I'd like to make Ruwach be a continuous AoE that works on unhidden enemies and unhides hidden enemies. Yes, that sounds broken, but it's what I want. I've tried my best to do it myself, but I'm stuck and my src edits just aren't working.
Link to comment
Share on other sites
4 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.