mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Added the game message packets. Fixed "canRideChocobo" param in zone not working. Added a lot more function for lua to access. Various minor changes.
This commit is contained in:
parent
cfb29b912f
commit
c83b4a12b9
13 changed files with 259 additions and 166 deletions
|
@ -39,7 +39,7 @@ namespace FFXIVClassic_Map_Server.packets.send.events
|
|||
switch (p.typeID)
|
||||
{
|
||||
case 0x0: //Int32
|
||||
binWriter.Write(Utils.swapEndian((UInt32)p.value));
|
||||
binWriter.Write(Utils.swapEndian((Int32)p.value));
|
||||
break;
|
||||
case 0x1: //Int32
|
||||
binWriter.Write(Utils.swapEndian((UInt32)p.value));
|
||||
|
@ -59,8 +59,8 @@ namespace FFXIVClassic_Map_Server.packets.send.events
|
|||
case 0x6: //Actor (By Id)
|
||||
binWriter.Write(Utils.swapEndian((UInt32)p.value));
|
||||
break;
|
||||
case 0x10: //Byte?
|
||||
//value = reader.ReadByte();
|
||||
case 0xC: //Byte
|
||||
binWriter.Write((Byte)p.value);
|
||||
break;
|
||||
case 0x1B: //Short?
|
||||
//value = reader.ReadUInt16();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue