Thread: FYI
View Single Post
  #6  
Old 10-30-2003, 02:40 AM
Edgar1898
Senior Member
Former EQEmu Developer
Current EQ2Emu Lead Developer
 
Join Date: Dec 2002
Posts: 1,065
Default

OK its fixed, it was loading items a couple of fields off. As soon as TC gets a chance, cvs will be updated with the latest version.

If you dont want to wait then just open database.cpp and change the following:

[old]
else if (item.Type == ItemTypeCommon) { // Common
idx = 24;
[/old]

[new]
else if (item.Type == ItemTypeCommon) { // Common
idx = 26;
[/new]


and this also:
[old]
else if (item.Type == ItemTypeContainer) { // Containers
idx = 20;
[/old]

[new]
else if (item.Type == ItemTypeContainer) { // Containers
idx = 21;
[/new]
__________________
Lethal Encounter
Reply With Quote