Page 1 of 1

Raid Curse = Critical error

Posted: Wed Mar 14, 2012 4:35 am
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 ..

Re: Raid Curse = Critical error

Posted: Wed Mar 14, 2012 12:38 pm
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.

Re: Raid Curse = Critical error

Posted: Thu Mar 15, 2012 4:45 am
by sherlockholmes
Thanks You ! Problem Solved !!!! :)