Page 3 of 3

Re: offline traders problem

Posted: Mon Jan 17, 2011 5:29 pm
by MELERIX
column changed to INT(10) + unsigned, so possible values now are from 0 to 4294967295 http://trac.l2jdp.com/changeset/7751 hope this resolve the issue completly ;)

only one thing I don't understand from core is...

why in Buy list is...

Code: Select all

stm_items.setInt(2, i.getItem().getItemId());
but in Sell list is...

Code: Select all

stm_items.setInt(2, i.getObjectId());
?

Re: offline traders problem

Posted: Mon Jan 17, 2011 5:42 pm
by jurchiks
bcuz when you buy you don't know the item's objectID? you only know what you want to buy.