Errors =p

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
uNiQue1337
Posts: 11
Joined: Sun Jun 14, 2009 10:33 pm

Errors =p

Post 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
Mage
Posts: 277
Joined: Fri Apr 17, 2009 2:29 pm

Re: Errors =p

Post 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
Forum rules: Please do not use or alter the official L2J Avatars/Signatures/Names for your personal use.
uNiQue1337
Posts: 11
Joined: Sun Jun 14, 2009 10:33 pm

Re: Errors =p

Post 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 
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Errors =p

Post 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.
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
uNiQue1337
Posts: 11
Joined: Sun Jun 14, 2009 10:33 pm

Re: Errors =p

Post 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.
User avatar
janiii
L2j Veteran
L2j Veteran
Posts: 4269
Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia

Re: Errors =p

Post by janiii »

why you want to remove all console logs?
DO NOT EVEN TRY TO MESS WITH ME!
forum flOOder dancing dEVILoper
I don't give private support - PM will be ignored!
uNiQue1337
Posts: 11
Joined: Sun Jun 14, 2009 10:33 pm

Re: Errors =p

Post by uNiQue1337 »

Well not me, my friend.
He said that he dont want to see warnings that are not helping him.
Post Reply