Page 1 of 1
Errors =p
Posted: Sun Jun 21, 2009 8:09 am
by uNiQue1337
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision
3209]/b]:
L2JDP Revision 6295:
Hey ya, a friend is running a server and he have a lot of errors while the GS is on
Could not store char base data: com.mysql.jdbc.MysqlDataTruncation: Data truncat
ion: Out of range value adjusted for column 'maxHp' at row 1
he also need to remove those
Code: Select all
anK0 has karma and dropped id = 14149, count = 1anK0 has karma and dropped id = 14149, count = 1anK0 has karma and dropped id = 1467, count = 74993anK0 has karma and dropped id = 1345, count = 4990
Code: Select all
Client [Character: IIDrakenII - Account: draken - IP: ***.**.10.250] disconnected abnormally.
it would be great if someone can tell how to remove those things from java show they will not be shown on GS
ty
Re: Errors =p
Posted: Sun Jun 21, 2009 9:01 am
by Mage
For this:
Code: Select all
1. anK0 has karma and dropped id = 14149, count = 1 2. anK0 has karma and dropped id = 14149, count = 1 3. anK0 has karma and dropped id = 1467, count = 74993 4. anK0 has karma and dropped id = 1345, count = 4990 5.
Go to L2PcIstance e with command search you can find this
if (isKarmaDrop)
_log.warning(getName() + " has karma and dropped id = " + itemDrop.getItemId() + ", count = " + itemDrop.getCount());
else
_log.warning(getName() + " dropped id = " + itemDrop.getItemId() + ", count = " + itemDrop.getCount());
Delete Line with _log.warning
For this
Code: Select all
1. Client [Character: IIDrakenII - Account: draken - IP: ***.**.10.250] disconnecte 2. d abnormally.
Go to L2GameClient
and search this:
@Override
protected void onForcedDisconnection()
{
_log.info("Client "+toString()+" disconnected abnormally.");
}
Delete line with _log.info
Re: Errors =p
Posted: Sun Jun 21, 2009 12:25 pm
by uNiQue1337
Thanks.
Any idea about this?
Code: Select all
Could not store char base data: com.mysql.jdbc.MysqlDataTruncation: Data truncation: Out of range value adjusted for column 'maxHp' at row 1
Re: Errors =p
Posted: Sun Jun 21, 2009 1:23 pm
by janiii
uNiQue1337 wrote:Thanks.
Any idea about this?
Code: Select all
Could not store char base data: com.mysql.jdbc.MysqlDataTruncation: Data truncation: Out of range value adjusted for column 'maxHp' at row 1
someone had too much hp

change your characters table column maxHp to a greater number type.
Re: Errors =p
Posted: Sun Jun 21, 2009 6:53 pm
by uNiQue1337
It would be great if you could tell me how to set max value.
Also some more logs i want to remove
charname: unhandled action 70(example)
Another
Character =GM Char Name= tryed to use admin command create_item but have no access to use it
another
Flood protector messages:
Player <name> has perfomed subclass change too fast
Thanks again.
Re: Errors =p
Posted: Sun Jun 21, 2009 6:56 pm
by janiii
why you want to remove all console logs?
Re: Errors =p
Posted: Sun Jun 21, 2009 7:10 pm
by uNiQue1337
Well not me, my friend.
He said that he dont want to see warnings that are not helping him.