RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Razer could not find your backpack

ajvextra

Wanderer
Yes, having the same issue ever since the last patch. Unable to equip anything. Also does not recognize backpack so it isn't counting resources so unable to use potions, etc. Was working perfectly prior. Anybody else?
 

Wobba

Wanderer
Others are having the same issue. It has lost the backpack ID. Might need to decompile the .exe and find the entry for it and change it ourselves?
 

Wobba

Wanderer
Anyone want to tell me if I am shooting in the right direction with modifying the backpack and other paperdoll item ID's?

using System;

namespace Assistant
{
public enum Layer : byte
{
Invalid = 0,
FirstValid = 1,
RightHand = 1,
LeftHand = 2,
Shoes = 3,
Pants = 4,
Shirt = 5,
Head = 6,
Gloves = 7,
Ring = 8,
Unused_x9 = 9,
Neck = 10,
Hair = 11,
Waist = 12,
InnerTorso = 13,
Bracelet = 14,
Unused_xF = 15,
FacialHair = 16,
MiddleTorso = 17,
Earrings = 18,
Arms = 19,
Cloak = 20,
Backpack = 21,
OuterTorso = 22,
OuterLegs = 23,
InnerLegs = 24,
LastUserValid = 24,
Mount = 25,
ShopBuy = 26,
ShopResale = 27,
ShopSell = 28,
Bank = 29,
LastValid = 29
}
}
 
Top