Difference between revisions of "PlayerEmote (0000012E)"
From SWGANH Wiki
m (→Variable Descriptions) |
(→Struct) |
||
| (26 intermediate revisions by the same user not shown) | |||
| Line 21: | Line 21: | ||
|} | |} | ||
|} | |} | ||
| + | |||
| + | |||
| + | |||
===Variable Descriptions=== | ===Variable Descriptions=== | ||
---- | ---- | ||
| Line 45: | Line 48: | ||
|} | |} | ||
| − | + | <pre> | |
| − | + | ||
===Example Code=== | ===Example Code=== | ||
packet << (uint16)5; | packet << (uint16)5; | ||
| Line 59: | Line 61: | ||
packet << (uint8)0; | packet << (uint8)0; | ||
packet << (uint16)0x0300; | packet << (uint16)0x0300; | ||
| + | |||
| + | </pre> | ||
| + | |||
| + | |||
| + | ===Struct=== | ||
| + | ---- | ||
| + | {| align="Center" | ||
| + | |- | ||
| + | || | ||
| + | {| class="wikitable" | ||
| + | |- | ||
| + | |{{long}}|'''Source ID''' | ||
| + | |- | ||
| + | |{{long}}|'''Receiver ID''' | ||
| + | |- | ||
| + | |{{Int}}|'''emote ID''' | ||
| + | |- | ||
| + | |{{Short}}|'''Flag''' | ||
| + | |} | ||
| + | |} | ||
| + | |||
| + | |||
| + | THIS STRUCT MAY RELATE TO ONLY NGE | ||
| + | cable@projectswg | ||
| + | |||
| + | |||
| + | <pre> | ||
| + | |||
| + | 05 00 #Operand | ||
| + | 46 5E CE 80 #ObjController | ||
| + | 0B 00 00 00 # | ||
| + | 2E 01 00 00 #ControllerType: SocialEmoteReceive | ||
| + | CA 16 09 91 45 00 00 00 #CharacterID | ||
| + | 00 00 00 00 #Unknown INT | ||
| + | CA 16 09 91 45 00 00 00 #SenderID | ||
| + | CA 16 09 91 45 00 00 00 #ReceiverID | ||
| + | 6F 01 00 00 #EmoteType | ||
| + | 03 #Flag | ||
| + | |||
| + | </pre> | ||
Latest revision as of 17:23, 12 September 2013
Object Controller - PlayerEmote (0000012E)
SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.
Struct
Variable DescriptionscontrollerID = 0000012E
|
Tags
|
===Example Code===
packet << (uint16)5;
packet.opcode2(ObjController);
packet << (uint32)0xB;
packet << (uint32)0x012E;
packet << (uint64)recip; //recipient
packet << (uint32)0; //unkown
packet << (uint64)sender->ObjID; //source
packet << (uint64)sender->Target; //This is normally the target...
packet << emoteId; //ID
packet << (uint8)0;
packet << (uint16)0x0300;
Struct
|
THIS STRUCT MAY RELATE TO ONLY NGE
cable@projectswg
05 00 #Operand 46 5E CE 80 #ObjController 0B 00 00 00 # 2E 01 00 00 #ControllerType: SocialEmoteReceive CA 16 09 91 45 00 00 00 #CharacterID 00 00 00 00 #Unknown INT CA 16 09 91 45 00 00 00 #SenderID CA 16 09 91 45 00 00 00 #ReceiverID 6F 01 00 00 #EmoteType 03 #Flag