Added support for actor property changed. Removed a lot of hard coded packets. Added a bunch of Support Desk packets.

This commit is contained in:
Filip Maj 2015-12-04 02:00:05 -05:00
parent c8d6326ecd
commit 1f7c876461
33 changed files with 783 additions and 754 deletions

View file

@ -57,7 +57,7 @@ namespace FFXIVClassic_Lobby_Server
}
//Check World ID
World thisWorld = Database.getServer(ConfigConstants.DATABASE_WORLDID);
DBWorld thisWorld = Database.getServer(ConfigConstants.DATABASE_WORLDID);
if (thisWorld != null)
Console.WriteLine("Successfully pulled world info from DB. Server name is {0}.", thisWorld.name);
else
@ -90,6 +90,10 @@ namespace FFXIVClassic_Lobby_Server
{
server.testCodePacket(Utils.MurmurHash2(split[1], 0), Convert.ToUInt32(split[2], 16), split[3]);
}
else if (split[0].Equals("test"))
{
server.testCodePacket2(split[1], split[2]);
}
}
}
}