mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 05:24:34 +02:00
Added a work value change function for testing.
This commit is contained in:
parent
9372b4bc32
commit
ad88c0b28a
4 changed files with 90 additions and 31 deletions
|
@ -102,9 +102,8 @@ namespace FFXIVClassic_Map_Server
|
|||
//Chat Received
|
||||
case 0x0003:
|
||||
ChatMessagePacket chatMessage = new ChatMessagePacket(subpacket.data);
|
||||
Program.Log.Info("Got type-{5} message: {0} @ {1}, {2}, {3}, Rot: {4}", chatMessage.message, chatMessage.posX, chatMessage.posY, chatMessage.posZ, chatMessage.posRot, chatMessage.logType);
|
||||
subpacket.DebugPrintSubPacket();
|
||||
|
||||
//Program.Log.Info("Got type-{5} message: {0} @ {1}, {2}, {3}, Rot: {4}", chatMessage.message, chatMessage.posX, chatMessage.posY, chatMessage.posZ, chatMessage.posRot, chatMessage.logType);
|
||||
|
||||
if (chatMessage.message.StartsWith("!"))
|
||||
{
|
||||
if (Server.GetCommandProcessor().DoCommand(chatMessage.message, session))
|
||||
|
@ -227,7 +226,7 @@ namespace FFXIVClassic_Map_Server
|
|||
|
||||
break;
|
||||
case 0x012F:
|
||||
//subpacket.DebugPrintSubPacket();
|
||||
subpacket.DebugPrintSubPacket();
|
||||
ParameterDataRequestPacket paramRequest = new ParameterDataRequestPacket(subpacket.data);
|
||||
if (paramRequest.paramName.Equals("charaWork/exp"))
|
||||
session.GetActor().SendCharaExpInfo();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue