Shindu Posted April 30, 2014 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 28 Reputation: 0 Joined: 12/09/13 Last Seen: May 2, 2014 Share Posted April 30, 2014 Hey, so i have this; - script battle#base -1,{ OnTouch: sc_end sc_all; } schg_cas06,1,1,6 duplicate(battle#base) battle#1 -1,1000,1000 I want it to dispell everything except bles and agi. I also want it to link only soul linkers and stalkers after the dispell. Can someone please help with this? Quote Link to comment Share on other sites More sharing options...
Shindu Posted April 30, 2014 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 28 Reputation: 0 Joined: 12/09/13 Last Seen: May 2, 2014 Author Share Posted April 30, 2014 okay this is what i have; - script battle_castle#bbase -1,{ OnTouch: sc_end sc_all; percentheal 100,100; specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; dispbottom "AGI/BLESS Complete - HP/SP Fully Regenerated 100%"; if(Class == 4049) sc_start4 SC_SPIRIT,240000,5,461,0,0; else if(Class == 4018) sc_start4 SC_SPIRIT,240000,5,456,0,0; end; } I got the bless, agi and heal but i didint get the soul link. nvm, its working - script battle_castle#bbase -1,{ OnTouch: sc_end sc_all; percentheal 100,100; sc_start SC_BLESSING,240000,10; sc_start SC_INCREASEAGI,240000,10; dispbottom "AGI/BLESS Complete - HP/SP Fully Regenerated 100%"; switch( Class ) { case /*Job_Stalker */4018: set(.@SL,456); break; case /*Job_Soul_Linker */4049: set(.@SL,461); } if(!.@SL) end; sc_start4 sc_spirit, 240000, 5, .@SL, 0, 0; skilleffect .@SL, 5; end; } Quote Link to comment Share on other sites More sharing options...
sandbox Posted April 30, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: Wednesday at 09:36 AM Share Posted April 30, 2014 schg_cas06,1,1,6 script battle#base -1,1,1,{ OnTouch: sc_end sc_all; sc_start SC_BLESSING,240000,10; sc_start SC_INCAGI,240000,10; if(Class == 4049) sc_start4 SC_SPIRIT,240000,5,461,0,0; else if(Class == 4018) sc_start4 SC_SPIRIT,240000,5,456,0,0; end; } Try Quote Link to comment Share on other sites More sharing options...
lipew Posted April 30, 2014 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 23 Reputation: 0 Joined: 04/18/14 Last Seen: December 12, 2014 Share Posted April 30, 2014 Hey, so i have this; - script battle#base -1,{ OnTouch: sc_end sc_all; } schg_cas06,1,1,6 duplicate(battle#base) battle#1 -1,1000,1000 I want it to dispell everything except bles and agi. I also want it to link only soul linkers and stalkers after the dispell. Can someone please help with this? Just saying.. You used a "OnTouch" command, so, how can a character touch something that don't even exist? (=/ don't get it...) schg_cas06,1,1,6 script battle#base -1 <- ,1,1,{ -> OnTouch: sc_end sc_all; Quote Link to comment Share on other sites More sharing options...
Question
Shindu
Hey, so i have this;
I want it to dispell everything except bles and agi.
I also want it to link only soul linkers and stalkers after the dispell.
Can someone please help with this?
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.