Zaon Posted July 7, 2013 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 60 Reputation: 0 Joined: 07/30/12 Last Seen: April 19, 2018 Share Posted July 7, 2013 Just wondering how to disable certain items when you reach max level. I customized the novice set and I want to disable it when they reach the max level [255]. Is it possible? Quote Link to comment Share on other sites More sharing options...
Stolao Posted July 7, 2013 Group: Developer Topic Count: 48 Topics Per Day: 0.01 Content Count: 1443 Reputation: 344 Joined: 10/17/12 Last Seen: Sunday at 01:58 PM Share Posted July 7, 2013 can always add something like this to items on equipt script if(BaseLevel>254){ unequip EQI_HAND_R; dispbottom "Exceed this items level limit, Unable to equip."; } Quote Link to comment Share on other sites More sharing options...
Zaon Posted July 7, 2013 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 60 Reputation: 0 Joined: 07/30/12 Last Seen: April 19, 2018 Author Share Posted July 7, 2013 Hi, where do i find the variables for the equipment locations? Like EQI_HAND_R Quote Link to comment Share on other sites More sharing options...
Capuche Posted July 7, 2013 Group: Developer Topic Count: 10 Topics Per Day: 0.00 Content Count: 2407 Reputation: 616 Joined: 07/05/12 Last Seen: March 20 Share Posted July 7, 2013 In script_commands.txt (docs) EQI_HEAD_TOP (1) - Upper HeadearEQI_ARMOR (2) - Armor (jackets, robes)EQI_HAND_L (3) - Left hand (weapons, shields)EQI_HAND_R (4) - Right hand (weapons)EQI_GARMENT (5) - Garment (mufflers, hoods, manteaus)EQI_SHOES (6) - Footgear (shoes, boots)EQI_ACC_L (7) - Accessory 1EQI_ACC_R (8) - Accessory 2EQI_HEAD_MID (9) - Middle Headgear (masks, glasses)EQI_HEAD_LOW (10) - Lower Headgear (beards, some masks)EQI_COSTUME_HEAD_LOW (11) - Lower Costume HeadgearEQI_COSTUME_HEAD_MID (12) - Middle Costume HeadgearEQI_COSTUME_HEAD_TOP (13) - Upper Costume HeadgearEQI_COSTUME_GARMENT (14) - Costume Garment Quote Link to comment Share on other sites More sharing options...
Zaon Posted July 7, 2013 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 60 Reputation: 0 Joined: 07/30/12 Last Seen: April 19, 2018 Author Share Posted July 7, 2013 Thanks stolao and capuche! works now Quote Link to comment Share on other sites More sharing options...
Question
Zaon
Just wondering how to disable certain items when you reach max level.
I customized the novice set and I want to disable it when they reach the max level [255]. Is it possible?
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.