Jump to content
  • 0
Critica

how can i make equip items not applicable with 3rd jobs?

Question

I want to make an item bonus that decreases its effect every jobs

ex Helm +20 to all stats.

for

novice its +20

1st class it becomes +15

2nd class +10

trns class +5

3rd -no more bonus..

is this possible on bonus item?? tnxxxx pls help biggrin.gif

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

If you dont want 3rd jobs to beable to use an item, keep the uh..'upper' mask as "7" like older items

0xFFFFFFFF,7,2, <<<< Keep the items code like that

0xFFFFFFFF,8,2, <<<< For 3rd Jobs only

Edited by Pneuma
Link to comment
Share on other sites

you can try like this for the bonus

if( Class == 0 ) bonus bAllStats,20; else if( Class > 0 && Class <= 6 ) bonus bAllStats,15; else if( Class > 6 && Class <= 20 ) bonus bAllStats,10; else if( Upper == 1 ) bonus bAllStats,5; else end;

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...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.