I attempted to add a "shoe" and "pants" layer by following along with the
http://www.vbgore.com/Mounts_and_Shields article and manipulating other layers.
After frying my brain from editing the code, fixing some typo's and missing data base lines i got the server to run and the client... Not so much.
when you click connect it goes to a black screen and comes up with this:
Code:
'Set the apperances
CharList(CharIndex).Body = BodyData(Body)
CharList(CharIndex).Legs = LegsData(Legs) '<-- subscript out of range
CharList(CharIndex).Boots = BootsData(Boots)
CharList(CharIndex).DefBody = BodyData(DefBody) '<---then this
CharList(CharIndex).Head = HeadData(Head)
CharList(CharIndex).Hair = HairData(Hair)
CharList(CharIndex).Weapon = WeaponData(Weapon)
CharList(CharIndex).Wings = WingData(Wings)
CharList(CharIndex).Mount = MountData(Mount)
CharList(CharIndex).Shield = ShieldData(Shield)
CharList(CharIndex).Heading = Heading
CharList(CharIndex).HeadHeading = Heading
CharList(CharIndex).HealthPercent = HP
CharList(CharIndex).ManaPercent = MP
CharList(CharIndex).LastHP = HP
CharList(CharIndex).LastMP = MP
CharList(CharIndex).Speed = Speed
CharList(CharIndex).NPCChatIndex = ChatID
CharList(CharIndex).CharType = CharType
but the weird thing was that i moved the line
" CharList(CharIndex).Legs = LegsData(Legs)"
and put it farther down the list to see if anything else came up as error and the boots data seemed to pass but defaultbody data was the new error.
If anyone knows what this error leads to or what other code im missing causing this i would very appreciate the help. It might be easier to just start over with some help of better Knowledge lol.