mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 13:34:38 +02:00
Added some new work parameters. Fixed GC Packet (wrong sized data). Connected player data packets to DB. Cleaned up login code.
This commit is contained in:
parent
2bf532a6db
commit
f7702bca13
16 changed files with 209 additions and 123 deletions
|
@ -227,12 +227,15 @@ namespace FFXIVClassic_Lobby_Server
|
|||
public void testCodePacket(uint id, uint value, string target)
|
||||
{
|
||||
SetActorPropetyPacket changeProperty = new SetActorPropetyPacket(target);
|
||||
changeProperty.addInt(id, value);
|
||||
|
||||
changeProperty.setTarget(target);
|
||||
changeProperty.addInt(id, value);
|
||||
changeProperty.addTarget();
|
||||
|
||||
foreach (KeyValuePair<uint, ConnectedPlayer> entry in mConnectedPlayerList)
|
||||
{
|
||||
SubPacket changePropertyPacket = changeProperty.buildPacket((entry.Value.actorID), (entry.Value.actorID));
|
||||
|
||||
BasePacket packet = BasePacket.createPacket(changePropertyPacket, true, false);
|
||||
packet.debugPrintPacket();
|
||||
if (entry.Value.getConnection1() != null)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue