Well. I don't really know how to wipe the people off nobility board. So what i did was delete everything in OldCODB/Nobility.dat but now everytime I debug/build the server it gets wiped everytime.Quote:
Well what is all wrong with nobility?
I haven't found anything wrong with it.
Expball limit isn't a bug. That's in the real conquer. It's up to the owner of the server whether they want an expball limit or not.
And the PM's/GM's not being able to pk isn't a bug either. Some people don't want their members being pk'd by the staff.
I'll look through the source and look for possible "fixes" to these problems.
What do you mean you don't know how to start it?
Its' pretty easy.
You just put the OldCODB in c: edit the config.ini inside
and run it
to make new acc in console typePHP Code:/newacc username password [PM]
Quote:
Well. I don't really know how to wipe the people off nobility board. So what i did was delete everything in OldCODB/Nobility.dat but now everytime I debug/build the server it gets wiped everytime.
if (Cmd[0] == "/save")
{
Database.SaveKOs();
Console.WriteLine("KOs saved.");
Database.SaveEmpire();
Console.WriteLine("Empire saved.");
Features.Guilds.SaveGuilds();
Console.WriteLine("Guilds saved.");
Features.SkillsClass.Save();
Console.WriteLine("Skills saved.");
Console.WriteLine("Database disposed.");
}
Isn't there already a save command? And btw the nobility board gets wiped but the ppl's rank on there char is still there. (which is gay)Quote:
Well make sure you save.
Here I made a save command.Type that into the console.Code:if (Cmd[0] == "/save") { Database.SaveKOs(); Console.WriteLine("KOs saved."); Database.SaveEmpire(); Console.WriteLine("Empire saved."); Features.Guilds.SaveGuilds(); Console.WriteLine("Guilds saved."); Features.SkillsClass.Save(); Console.WriteLine("Skills saved."); Console.WriteLine("Database disposed."); }
Then restart server and look at your Nobility Board.
And as for the expballs, check my fix for it.
It's in the spoiler in my first post.