Mr BrycE Posted May 30, 2012 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 Share Posted May 30, 2012 change || to && Quote Link to comment Share on other sites More sharing options...
jedwynne Posted May 30, 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 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 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...
{ 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?
Link to comment
Share on other sites