FIXED Exodus Chest

xG00BERx

Journeyman III
Supporter
Every once in a while I will get one of these chests where it will have 10 items in it but it will say there are 11 in the containers overall Items. It is not 100% of the time its only sometimes -

1598416237074.png

My client is updated.
 

Attachments

  • ayo.png
    ayo.png
    315.7 KB · Views: 1

FireFly

Journeyman II
Supporter
Yeah it is not clinet issue or something- i also can't see last item in chest ;/ Maybe that is reason why so far only found one robe ;/
1598454246618.png
 

Dan

Staff Member
Administrator
Game Master
If there is a ritual item it goes right into your bag.

Code:
protected virtual void GenerateTreasure()
        {
            DropItem(new Gold(1500, 3000));

            Item item = null;

            for (int i = 0; i < Loot.GemTypes.Length; i++)
            {
                item = Activator.CreateInstance(Loot.GemTypes[i]) as Item;
                item.Amount = Utility.Random(1, 6);
                DropItem(item);
            }

            if (0.25 > Utility.RandomDouble())
            {
                item = new SmokeBomb(Utility.Random(3, 6));
                DropItem(item);
            }

            if (0.25 > Utility.RandomDouble())
            {
                switch (Utility.Random(2))
                {
                    case 0:
                        item = new ParasiticPotion(Utility.Random(1, 3)); break;
                    case 1:
                        item = new InvisibilityPotion(Utility.Random(1, 3)); break;
                }

                DropItem(item);
            }

            if (0.2 > Utility.RandomDouble())
            {
                item = Loot.RandomEssence();
                item.Amount = Utility.Random(3, 6);
                DropItem(item);
            }

            if (0.1 > Utility.RandomDouble())
            {
                switch (Utility.Random(4))
                {
                    case 0: DropItem(new Taint()); break;
                    case 1: DropItem(new Corruption()); break;
                    case 2: DropItem(new Blight()); break;
                    case 3: DropItem(new LuminescentFungi()); break;
                }
            }
        }

It has to be an item listed here. Anyone notice anything that they have never seen in the chests before? Talking about the basic items here, not ritual.
 

FireFly

Journeyman II
Supporter
Sorry @Dan but " it goes right into your bag. " was false- i unarm some chests and ritual robe same as ritual deed was inside chests and must be taken manually
 
OP
xG00BERx

xG00BERx

Journeyman III
Supporter
If you go the rogue route, they will BE IN the chest.

If you go the Warrior Route they drop in your backpack.
Warrior route is when you kill stuff. that is why I made the other bug report because lots of the mobs don't have a chance to even drop the ritual items like they should.
Refer to these links.
 

Noah

Apprentice III
The Legend
Supporter
Can Confirm. The box count is still off by 1. It appears that when a ritual item is in the box, the count is correct however! Im still testing this out as Im looking for more boxes.

case 0: DropItem(new Taint()); break;
case 1: DropItem(new Corruption()); break;
case 2: DropItem(new Blight()); break;

Have not gotten any of these 3 items in a chest, but I have gotten 1 tome ritual, and 2 luminescent fungi (2 separate boxes) along with the gems...
 

Noah

Apprentice III
The Legend
Supporter
1598662607166.png
Post automatically merged:

Just got a chest that did have 1 of the dagger ritual items in it, and a previous one had taint, but the count was off on both those boxes..
 

Dexter

Staff Member
Administrator
Game Master
Its smoke bomb. It does not have a constructor for amount, so it assumes its a serial being passed in.
 

Noah

Apprentice III
The Legend
Supporter
So should the boxes show the correct amount in them now? if so, its not fixed, as I just got a box with 9 items, and it says 10.

1598897679130.png
 

Dan

Staff Member
Administrator
Game Master
They all probably need to be "cycled" once. Any old ones still in the world may be bugged until looted and re-spawn.

If they are still spawning like that after done a few times, let me know.
 

PLAY NOW

Heritage

Address
play.trueuo.com
Port
2593
Uptime
1 hour
Players Online
9
Houses
851
Vendors
297
Gold
5,019,121,527gp
Top Bottom