Re: Windows 7 Forces GS and Login Console to Close.
Posted: Wed Nov 11, 2009 7:14 am
ok, many thanks. btw if no players online, what kind of items must be saved by the server? what is meant by "trade items"?
L2J Server Discussion Board
https://www.l2jserver.com/forum/
there are shops and they have stocks. like grocery and it has only 400 asofe for sale. the number of available stock is checked on given timer in db if there was no change inbetween. so if you have a clean db, the timers are set to 0 and each item has to be checked on its stock. when it is checked, the timer is set to now+1hour. so if you restart before the 1 hour is up, no item stock needs to be checked and saved. it was something like that if a remember right.DeGato wrote:ok, many thanks. btw if no players online, what kind of items must be saved by the server? what is meant by "trade items"?
Now it's clear for me. Many thanks again!janiii wrote:there are shops and they have stocks. like grocery and it has only 400 asofe for sale. the number of available stock is checked on given timer in db if there was no change inbetween. so if you have a clean db, the timers are set to 0 and each item has to be checked on its stock. when it is checked, the timer is set to now+1hour. so if you restart before the 1 hour is up, no item stock needs to be checked and saved. it was something like that if a remember right.DeGato wrote:ok, many thanks. btw if no players online, what kind of items must be saved by the server? what is meant by "trade items"?
Code: Select all
TradeController.getInstance().dataCountStore();