Page 1 of 1
object_id?
Posted: Fri Nov 05, 2010 12:25 pm
by sancak
If you want to receive support we need this info to help you properly.
ยป Find Revision
L2J Revision
4420:
L2JDP Revision
7669:
i want to know, what is object_id in items.sql? if i change something in there, what could be? or what should i write there!
Re: object_id?
Posted: Fri Nov 05, 2010 1:30 pm
by hope
Explain that better don't understand what you are trying to do
Re: object_id?
Posted: Fri Nov 05, 2010 1:41 pm
by janiii
object id in the items table is a generated random id for the given item and the given owner. that id is unique to be able to identify it, and it can be then used in other tables or is used in gameserver to identify the item uniquely (given item at given owner).
Re: object_id?
Posted: Sat Nov 06, 2010 12:59 pm
by sancak
how can i generate this id?
Re: object_id?
Posted: Sat Nov 06, 2010 1:58 pm
by _DS_
You cant generate it, because this number should be generated by server itself (and removed from pool to prevent several objects use same objectId).
Re: object_id?
Posted: Sun Nov 07, 2010 2:45 am
by sancak
with telnet?
or what could be happen if i use this field empty for items on chars
thanks
Re: object_id?
Posted: Sun Nov 07, 2010 7:41 am
by Szponiasty
sancak wrote:with telnet?
or what could be happen if i use this field empty for items on chars
thanks
If your server is coded to be aware of that situation - nothing will happen. But you wont be able to access that item in any way. Plus it will be probably autocleaned on server startup...
If server is not prepared for such situation... I dunno. Maybe only an NPE, nothing more.