Difference between revisions of "HINO06"
From SWGANH Wiki
(→Tags) |
|||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{PageHeader|Baseline|HINO06}} | |
| − | + | ||
{|align="center" | {|align="center" | ||
|- | |- | ||
| Line 6: | Line 5: | ||
|- | |- | ||
|} | |} | ||
| − | + | <br> | |
{| border="0" width="90%" cellpadding=6 | {| border="0" width="90%" cellpadding=6 | ||
|- | |- | ||
| Line 20: | Line 19: | ||
packet << (uint64) id; | packet << (uint64) id; | ||
| − | packet << (uint32) 0x48494e4f; //"HINO"; | + | packet << (uint32) 0x48494e4f; //"HINO"; |
packet << (uint8) 0x06; | packet << (uint8) 0x06; | ||
| Line 41: | Line 40: | ||
</pre> | </pre> | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
|valign=top| | |valign=top| | ||
| Line 72: | Line 58: | ||
|} | |} | ||
| + | ===Sample Packet=== | ||
---- | ---- | ||
| + | <pre> | ||
| + | 05 00 | ||
| + | 0C 5F A7 68 // BaselineMessage | ||
| + | 36 21 FF FB 1A 00 00 00 // object ID | ||
| + | 4F 4E 49 48 06 // ONIH 6 | ||
| + | 0E 00 00 00 | ||
| + | 02 00 59 00 | ||
| + | 00 00 00 00 | ||
| + | 00 00 00 00 | ||
| + | 00 00 1C | ||
| + | </pre> | ||
Latest revision as of 10:55, 8 January 2008
Baseline - HINO06
SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.
|
BaseLine Struct
ByteBuffer ZoneClient::ONIH_6(uint64 id){
ByteBuffer packet;
packet << (uint16) 0x0005;
packet.opcode2(SMSG_OBJ_UPDATE);///0c5fa768
packet << (uint64) id;
packet << (uint32) 0x48494e4f; //"HINO";
packet << (uint8) 0x06;
packet << (uint32) 14; //(38)packet size without the operands
packet << (uint16) 2;
packet << (uint32) 0x0000007f; //0000005d ??
packet << (uint32) 0;
packet << (uint32) 0;
return packet;
Deltas Struct |
Variable DescriptionsObj_OperandCount = ??
Tags
|
Sample Packet
05 00 0C 5F A7 68 // BaselineMessage 36 21 FF FB 1A 00 00 00 // object ID 4F 4E 49 48 06 // ONIH 6 0E 00 00 00 02 00 59 00 00 00 00 00 00 00 00 00 00 00 1C