Jump to content
  • 0
mrlongshen

Unequip after reach 1st job level and 2nd job and trans job

Question

I made an item

 

ifBaseLevel == 255 && JobLevel == 120 ) unequip 2;

 

How to make if base level and job level of 1st job is full (archer,magician,and all) its will unequip ?

and 

How to make if base level and job level of 2nd job is full (hunter,wizard and all) its will unequip ?

or

The item will unequip when level is range from 99~255, and job 50 for 1st job.

The item will unequip when level is range from 99~255 and job 70 for 2nd job.

and the item will unequip when level 255, job 120 at trans job.

Edited by mrlongshen

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0

I believe you can use

EquipLv: [min, max]

 

although I don't know if it will produce the expected behavior.

 

Another way would be using OnPCBaseLvUpEvent and OnPCJobLvUpEvent. Doing something like (not tested):

 

OnPCBaseLvUpEvent:OnPCJobLvUpEvent:        if (BaseLevel == 99 && JobLevel == 50 && Class == BaseClass) { // 1-1 Jobs        /* unequip */    }    else if (BaseLevel == 99 && JobLevel == 50 && Class != BaseClass && Upper == 0) { // 2-x Jobs (non-trans)        /* unequip */    }    end;
Edited by KirieZ

Share this post


Link to post
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.   Restore formatting

  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.

Loading...

×
×
  • Create New...

Important Information

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