Taoist: Amulet / Poison equip issues

Mu online season 21 - grand opening

Felicity

Dedicated Member
Dedicated Member
Jul 5, 2004
126
5
95
Needs changing so both poison and amulet can be equipped at same time.

Issue comes from when using poisons on hotbar to change from red<>green
Any skill which require amulet will auto-equip the amulet, however it ruins toggling between both red/green poisons on hotbar [the amulet gets toggled into the hotbar instead of either poison]

Alternatively just remove the amulet requirement for Taoist skills, seems totally pointless :cat:
 

Chriz

Captain Lurker
VIP
Mar 24, 2003
1,198
1
336
315
LOMCN
Best way imo is for the ammy to just be in the bag and not equipt at all.

Code:
        private UserItem GetAmulet(int count, int shape = 0)
        {
            for (int i = 0; i < Info.Equipment.Length; i++)
            {
                UserItem item = Info.Equipment[i];
                if (item != null && item.Info.Type == ItemType.Amulet && item.Info.Shape == shape && item.Count >= count)
                    return item;
            }

[COLOR="#008000"]            // allow amulet to be in bag
            for (int i = 0; i < Info.Inventory.Length; i++)
            {
                UserItem item = Info.Inventory[i];
                if (item != null && item.Info.Type == ItemType.Amulet && item.Info.Shape == shape && item.Count >= count)
                    return item;
            }[/COLOR]

            return null;
        }
 

Ludacris

Dedicated Member
Dedicated Member
Mar 20, 2014
221
1
45
came here to post this , a fix would be great .:encouragement:
 

SilvaRoberto

Dedicated Member
Dedicated Member
Feb 19, 2014
526
14
59
i cant back this up enough, hate to moan but need it changed personally or i will try another class
 

Xx69xX

Golden Oldie
Golden Oldie
Dec 2, 2005
2,152
159
250
Absolutly, we will be doing something about this today and will be active on next reboot.

-Apocalypse Team
 

Jicaa

Pooslice
Golden Oldie
Jul 9, 2003
2,386
36
184
Great, looking forward to this!

Possibly make red and green auto equip depending on what the target is poisoned with already? With an option to have red or green first?
 

Warrior

Loyal Member
Loyal Member
Apr 24, 2003
36
0
82
Great, looking forward to this!

Possibly make red and green auto equip depending on what the target is poisoned with already? With an option to have red or green first?

This is a must have like, if you could do it like that, that would be amazing.
 

Felicity

Dedicated Member
Dedicated Member
Jul 5, 2004
126
5
95
Or just chuck green and red in one go xd


Would make more sense to have both in one - all of this equip amulet/poisons is so tedious old school compared to other classes skill setup. It really gives no benefit / disadvantage by having amulet or not.
 

aRKY

Dedicated Member
Dedicated Member
Jul 31, 2009
136
11
45
Makes it way to easy if you have it choose poison for you.

Get better at multitasking on your tao rather than dumb it down too much.
 
Last edited: