Restoring deleted Character.

Status
Not open for further replies.
Skilled Illusionist
Joined
Mar 4, 2012
Messages
326
Reaction score
22
I'm trying to restore a delete character(ingame). I tried changing the isBlock column in the database and the character showed up in the character select but now no one can PM the character. It says (Name) does not exist. I Checked the stored procedure of CHARACTER_TBL it will edit the isBlock column and such in the CHARACTER_TBL and will edit the state in the MESSENGER_TBL but when I check the MESSENGER_TBL, it was empty. Any Ideas on how to totally restore a character that was deleted in game?

Thank you.
 
Well i have checked my database and i have no data in it.
However i have over 2k Chars.

So If someone is deleted their char what i only do is this

Open mssql server
And use this code

USE CHARACTER_01_DBF
UPDATE CHARACTER_TBL SET isBlock = 'F' WHERE m_szName = '[Charname]'

Then the char is restored and everyone in the server can talk to it again.
 
Status
Not open for further replies.
Back