The source is pretty stable, and most of bugs i can handle, however, there's one thing bothering me, it SUCKS the rams, with 0 players online it runs on 200mb!!!
There source is kinda not original, because most of numbers are in Hexadecimal and there's that "goto Label_1B9C5;" thing
It also have a LOT of auto invite that check every 1 sec
this is one of em:
PHP Code:
if (DateTime.Now.Minute == 20 && DateTime.Now.Second == 00)
{
foreach (Client.GameState client in Kernel.GamePool.Values)
{
// if (client.Entity.Class >= 142 && client.Entity.Class <= 145)
{
Network.GamePackets.NpcReply npc = new Network.GamePackets.NpcReply(6, "Hourly PK has started, wanna play?");
npc.OptionID = 190;
client.Send(npc.ToArray());
}
}
}
Thank you






