Selling Xor Rohan accounts, characters, money and items 05/20/2012 - Rohan - 17 Replies Right now I have A LOT of Xor Rohan accounts.
So if you are interesting having a Pro account or simply buy crones or even items you can pm me.
If you have questions or want more details contact me.
[Release] Delete Characters (CoEmu v2) 06/01/2009 - CO2 PServer Guides & Releases - 5 Replies Note: This will need to be changed a little bit if warehouse passwords are implemented.
Step 1: Go to CoEmu v2 GameServer -> Database -> Database.cs. Under the static int NewCharacter, put:
public static void DeleteCharacter(int CharID) //LetterX Codes
{
MySqlCommand Cmd = new MySqlCommand("DELETE from `characters` WHERE `CharID` = " + CharID + "", DatabaseConnection.NewConnection());
Cmd.ExecuteNonQuery();
Cmd.Connection.Close();
...