Jump to content
  • 0

what's wrong with this?


Mr BrycE

Question


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  595
  • Reputation:   23
  • Joined:  02/23/12
  • Last Seen:  

{ 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

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  713
  • Reputation:   70
  • Joined:  11/08/11
  • Last Seen:  

change || to &&

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  68
  • Reputation:   2
  • Joined:  03/10/12
  • Last Seen:  

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; },{},{}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

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; }

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  595
  • Reputation:   23
  • Joined:  02/23/12
  • Last Seen:  

thanks for the tips, i will try one of those...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...