PDA

View Full Version : PoP item graphic problems (EQAdmin)


YummyMorsel
02-22-2003, 01:39 PM
I've been having some trouble trying to use the newer models... It seems that after I select a pop item visual, and click commit changes, it changes to some number, has never been anything over 200. Any help would be appreciated.

Windcatcher
02-23-2003, 09:33 AM
AHHHHHHH! Found it! I was sctatching my had at this one for a while...

I := StrToIntDef(Copy(St,3,3),0);

This should be:

I := StrToIntDef(Copy(St,3,Length(St)),0);

It's in the code that reads it back from the DB. Ok, expect a new version shortly...

WC