Raid Curse = Critical error

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
User avatar
sherlockholmes
Posts: 140
Joined: Sun Sep 26, 2010 8:33 pm
Location: argentina

Raid Curse = Critical error

Post by sherlockholmes »

I'm using Freya .. Last revision of Brache .. And I have a problem when a player between Raid Curse you .. and this restartea .. At logear throws critical error and can not enter for hours .. Nose because it happens that one may orient ..
User avatar
lucan
Posts: 590
Joined: Wed Mar 16, 2011 10:39 pm
Location: Brazil

Re: Raid Curse = Critical error

Post by lucan »

I was not the cause of it but try to relocate the character coordinates x,y,z in database to Giran for example and see if the character logs normally.
I use this mod created by Szponiasty ...
viewtopic.php?f=69&t=16908&hilit=.repair
I modified this patch to remove buffs too and also adding changes ...
From...

Code: Select all

             statement = con.prepareStatement("DELETE FROM character_shortcuts WHERE charId=?");            statement.setInt(1, objId);            statement.execute();            statement.close();            statement = con.prepareStatement("UPDATE items SET loc=\"WAREHOUSE\" WHERE owner_id=? AND loc=\"PAPERDOLL\"");            statement.setInt(1, objId);            statement.execute();            statement.close(); 
To...

Code: Select all

             statement = con.prepareStatement("DELETE FROM character_skills_save WHERE charId=?");            statement.setInt(1, objId);            statement.execute();            statement.close();            statement = con.prepareStatement("UPDATE items SET loc=\"INVENTORY\" WHERE owner_id=? AND loc=\"PAPERDOLL\"");            statement.setInt(1, objId);            statement.execute();            statement.close(); 
The player logs another character has the same account with the problem character, use the command .repair and choose from the list the problematic char and click in REPAIR.
Your character will be moved to Floran Village, residents buffs removed and unequipped items to inventory.

I solved many problems like this case.
User avatar
sherlockholmes
Posts: 140
Joined: Sun Sep 26, 2010 8:33 pm
Location: argentina

Re: Raid Curse = Critical error

Post by sherlockholmes »

Thanks You ! Problem Solved !!!! :)
Post Reply