Why doesn't my guilds saves?

01/31/2011 16:10 EternityViruz#1
i have a 5165 source, but with a problem.
when i restart my source, the guildes are gone...
(when i make a guild ( named, test, conquer or anything) and restart server, the guild is gone... :(
plz help me!
Thanks :)
01/31/2011 19:31 Spirited42#2
How are they purposed to save? Mine saves to MySql. NewestCOServer should save to OldCODB. Are you quitting out of the server without saving the server first?
02/01/2011 14:34 §hift#3
if (Cmd[0] == "/save")
{
foreach (Game.Character C in Game.World.H_Chars.Values)
{
Database.SaveCharacter(C.MyChar, C.MyClient.AuthInfo.Account);
Database.SaveGuilds();
}
}
Write save with any character before you turn off the server
Put this as your command , not sure if it works though , Haven't tested it..