Venomenon Posted January 9, 2013 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 51 Reputation: 0 Joined: 11/21/11 Last Seen: July 6, 2024 Share Posted January 9, 2013 (edited) Hi. Just want to ask how can i make it that Tarot card of Fate not remove pushcarts. Here's the effect of it on skill.c case 2: // all buffs removed status_change_clear_buffs(bl,1); break; Thanks and more power! Edited January 9, 2013 by Venomenon Quote Link to comment Share on other sites More sharing options...
Cydh Posted January 13, 2013 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted January 13, 2013 (edited) on skill.c find this skill case case CG_TAROTCARD:{ ... } find eff = rnd() % 14; becomes eff = rnd() % 15; then, on these lines case 13: // atk,matk,hit,flee,def reduced sc_start(bl,SC_INCATKRATE,100,-20,skill_get_time2(skillid,skilllv)); sc_start(bl,SC_INCMATKRATE,100,-20,skill_get_time2(skillid,skilllv)); sc_start(bl,SC_INCHITRATE,100,-20,skill_get_time2(skillid,skilllv)); sc_start(bl,SC_INCFLEERATE,100,-20,skill_get_time2(skillid,skilllv)); sc_start(bl,SC_INCDEFRATE,100,-20,skill_get_time2(skillid,skilllv)); break; default: break; add some lines, before default: case 14: pc_setcart(dstsd,0); break; I didn't try this yet Edited January 13, 2013 by cydh Quote Link to comment Share on other sites More sharing options...
Question
Venomenon
Hi. Just want to ask how can i make it that Tarot card of Fate not remove pushcarts.
Here's the effect of it on skill.c
Thanks and more power!
Edited by VenomenonLink to comment
Share on other sites
1 answer 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.