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

mrlongshen

Noobies
Messages
1,126
Points
0
Age
36
Location
localhost 127.0.0.1
Emulator
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.

 
Last edited by a moderator:
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):

Code:
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;
 
Last edited by a moderator:
Back
Top