Log in

View Full Version : FYI


Edgar1898
10-29-2003, 09:59 AM
I updated the item db download and Trumpcard uploaded the code to public cvs that works with the latest version. You shouldnt have any problems with it.

mrclose
10-29-2003, 10:14 AM
Thats great Thank you!

flyrken
10-29-2003, 11:35 AM
/agree
/cheer
/thank

EOF

mrclose
10-29-2003, 03:08 PM
This didnt seem to work too well for me. Most items are class:none race:none and with crazy stats. Im using the latest cvs and not sure if its something im doing or what.

Edgar1898
10-30-2003, 02:18 AM
hang on, its not the db, but the code, somone messed something up :/

Edgar1898
10-30-2003, 02:40 AM
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:


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



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



and this also:

else if (item.Type == ItemTypeContainer) { // Containers
idx = 20;



else if (item.Type == ItemTypeContainer) { // Containers
idx = 21;

mrclose
10-30-2003, 09:31 AM
Perfect thank you :)