Mr BrycE Posted May 30, 2012 Group: Members Topic Count: 125 Topics Per Day: 0.03 Content Count: 595 Reputation: 24 Joined: 02/23/12 Last Seen: April 1, 2018 Share Posted May 30, 2012 { bonus bAspdRate,100; bonus2 bSubRace,RC_NonBoss,15; bonus2 bSubRace,RC_Boss,15; if(BaseJob != Job_Assassin||BaseJob != Job_Monk) skill "TK_POWER",5; skill "TK_DODGE",1; },{},{} != , means not= ,right? i want to put the the script for all jobs except assassin and champs.. will someone make a script like that? Quote Link to comment Share on other sites More sharing options...
EvilPuncker Posted May 30, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 713 Reputation: 71 Joined: 11/08/11 Last Seen: December 25, 2024 Share Posted May 30, 2012 change || to && Quote Link to comment Share on other sites More sharing options...
jedwynne Posted May 30, 2012 Group: Members Topic Count: 18 Topics Per Day: 0.00 Content Count: 68 Reputation: 2 Joined: 03/10/12 Last Seen: July 12, 2012 Share Posted May 30, 2012 use AND(&&) instead of OR(||) LOGICAL OR 0&&0 = 0 0&&1 = 1 1&&0 = 1 1&&1 = 1 LOGICAL AND 0||0 = 0 0||1 = 0 1||0 = 0 1||1 = 1 { bonus bAspdRate,100; bonus2 bSubRace,RC_NonBoss,15; bonus2 bSubRace,RC_Boss,15; if(BaseJob != Job_Assassin&&BaseJob != Job_Monk) skill "TK_POWER",5; skill "TK_DODGE",1; },{},{} Quote Link to comment Share on other sites More sharing options...
Euphy Posted May 30, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted May 30, 2012 Did you want the entire script disabled for Assassins/Monks? If that's the case, { if(BaseJob == Job_Assassin || BaseJob == Job_Monk) end; bonus bAspdRate,100; bonus2 bSubRace,RC_NonBoss,15; bonus2 bSubRace,RC_Boss,15; skill "TK_POWER",5; skill "TK_DODGE",1; } Quote Link to comment Share on other sites More sharing options...
Mr BrycE Posted May 30, 2012 Group: Members Topic Count: 125 Topics Per Day: 0.03 Content Count: 595 Reputation: 24 Joined: 02/23/12 Last Seen: April 1, 2018 Author Share Posted May 30, 2012 thanks for the tips, i will try one of those... Quote Link to comment Share on other sites More sharing options...
Question
Mr BrycE
!= , means not= ,right?
i want to put the the script for all jobs except assassin and champs.. will someone make a script like that?
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.