Reborn bug

02/18/2010 03:50 5supertao#1
How come when I reborn, it deleted my gourd after I relog... AND if I set it in reborn to take of the gourd after reborn.. its in my inventory... then I relog and its gone! y?
02/18/2010 04:01 Arcо#2
Code:
            if (Equips.RightHand.ID != 0)
            {
                Inventory.Add(Equips.Get(5));
                EquipStats(5, false);
                Game.World.Spawn(this, false);
                Equips.UnEquip(5, this);
            }
Change righthand to the gourd thingymajig idk what its called.
02/18/2010 04:42 CIRASH#3
Quote:
Originally Posted by .Arco View Post
Code:
            if (Equips.RightHand.ID != 0)
            {
                Inventory.Add(Equips.Get(5));
                EquipStats(5, false);
                Game.World.Spawn(this, false);
                Equips.UnEquip(5, this);
            }
Change righthand to the gourd thingymajig idk what its called.
I believe youd also need to change
Code:
Inventory.Add(Equips.Get(5));
to
Code:
Inventory.Add(Equips.Get(8));
anyways i think 8 is the gourd slot. cause i know 9 is garment. good luck
02/18/2010 05:19 Arcо#4
Quote:
Originally Posted by CIRASH View Post
I believe youd also need to change
Code:
Inventory.Add(Equips.Get(5));
to
Code:
Inventory.Add(Equips.Get(8));
anyways i think 8 is the gourd slot. cause i know 9 is garment. good luck
Nah I don't think so because my rebirth script is like that and it work.