[Question] Delete Character in Ascent

Newbie Spellweaver
Joined
Dec 7, 2005
Messages
8
Reaction score
0
Hello all,

I manage to get Ascent to work for a bit, I made a temp character for testing. As far as I know, if I tried to delete, ascent.exe will crash, so I manually delete it in MySQL, under Character table.

My question is that after delete that character, the same name become unavailable. what I want to know is in which table is my character name also stored?

Thanks.
 
your character should be stored in your ascent database under 'characters'
aka
Code:
delete from 'characters' where name = 'CHARNAME'
 
Back