How to delete the block 06/27/2014 - Seafight - 13 Replies Hi guys
Sorry for my bad english.
If u want to see the bonus of a ship/pet/item u can do it with Mozzilla Firefox
1-Right click on the blocked item in black market
2-Analize element
3-Search the line with <div class="blockeditem"></div>
4-Right click on this line and delete
Now if u place your mouse on the item u can read the bonus without problem
Delete characters and its items? 10/18/2012 - SRO Private Server - 2 Replies Anyone got a way or a query to delete characters and its items that is older then 6 months?
[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();
...