mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 05:24:34 +02:00
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:
parent
c8d6326ecd
commit
1f7c876461
33 changed files with 783 additions and 754 deletions
|
@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue