Difference between revisions of "HINO06"

From SWGANH Wiki
Jump to: navigation, search
(New page: __NOTOC__ {|align="center" |- ||{{HINOArchitectureNAV}} |- |} {| border="0" width="90%" cellpadding=6 |- |valign=top| ===BaseLine Struct=== ---- <pre> </pre> ===Deltas Struct=== ---- ...)
 
(BaseLine Struct)
Line 13: Line 13:
 
----
 
----
 
<pre>
 
<pre>
 +
ByteBuffer ZoneClient::ONIH_6(uint64 id){
 +
ByteBuffer packet;
  
 +
packet << (uint16) 0x0005;
 +
packet.opcode2(SMSG_OBJ_UPDATE);///0c5fa768
 +
 +
packet << (uint64) id;
 +
packet << (uint32) 0x48494e4f; //"HINO"; //OSNI 6 Packet
 +
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;
 
</pre>
 
</pre>
  

Revision as of 17:29, 4 August 2007


HINO Packet Type QuickNav
HINO03 - HINO06 - HINO07

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";		//OSNI 6 Packet
	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



Sample Packet


 

Variable Descriptions


Obj_OperandCount = ??



Tags


0% This packet has not been reversed.