Difference between revisions of "ChatCreateRoom"
From SWGANH Wiki
(New page: __NOTOC__ {| border="0" width="90%" cellpadding=6 |- |valign=top| ===Struct=== ---- {| class="wikitable" |- |{{short}}||'''Opperand_Count''' |- |{{int}}||'''Opcode''' |- ||... |} ===Var...) |
|||
(12 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{PageHeader|Packet|ChatCreateRoom (35366BED)}} | |
− | + | ||
{| border="0" width="90%" cellpadding=6 | {| border="0" width="90%" cellpadding=6 | ||
|- | |- | ||
Line 6: | Line 5: | ||
===Struct=== | ===Struct=== | ||
---- | ---- | ||
− | + | {| align="center" | |
+ | |- | ||
+ | || | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
Line 13: | Line 14: | ||
|{{int}}||'''Opcode''' | |{{int}}||'''Opcode''' | ||
|- | |- | ||
− | || | + | |{{byte}}||'''Permission Flag''' |
+ | |- | ||
+ | |{{byte}}||'''Moderation Flag''' | ||
+ | |- | ||
+ | |{{short}}||'''?''' | ||
+ | |- | ||
+ | |{{a_string}}||'''Room Address''' | ||
+ | |- | ||
+ | |{{a_string}}||'''Room Title''' | ||
+ | |- | ||
+ | |{{int}}||'''Counter''' | ||
+ | |- | ||
+ | |} | ||
|} | |} | ||
− | |||
===Variable Descriptions=== | ===Variable Descriptions=== | ||
---- | ---- | ||
− | Opperand_Count = '''1''' | + | Opperand_Count = '''7''' |
+ | |||
+ | Opcode = '''0x35366BED''' | ||
+ | |||
+ | * '''Permission Flag''' : 0 for private, 1 for public. | ||
+ | * '''Moderation Flag''' : 0 for not-moderated, 1 for moderated. | ||
+ | * '''Unknown Short''' : It may be part of the flags (always seen 0x0000 ). | ||
+ | * '''Counter''' : Increments by one each time the clients attempts to create a room. | ||
− | |||
|valign=top| | |valign=top| | ||
+ | |||
===Details=== | ===Details=== | ||
---- | ---- | ||
Line 37: | Line 56: | ||
||{{ClientPacket}} | ||{{ClientPacket}} | ||
|- | |- | ||
− | ||{{ | + | ||{{100%}} |
|- | |- | ||
|} | |} | ||
Line 54: | Line 73: | ||
==Sample Packet== | ==Sample Packet== | ||
− | <pre> | + | <pre> |
+ | 07 00 // OpCount | ||
+ | ED 6B 36 35 // ChatCreateRoom | ||
+ | 01 // public flag | ||
+ | 00 // moderated flag | ||
+ | |||
+ | 00 00 // unknown | ||
+ | |||
+ | 30 00 | ||
+ | 53 57 47 2E 47 6F 72 61 74 68 2E 67 72 6F 75 70 | ||
+ | 2E 31 36 31 34 31 38 33 30 39 32 32 31 2E 47 72 | ||
+ | 6F 75 70 43 68 61 74 2E 52 6F 6F 6D 4E 61 6D 65 | ||
+ | //"SWG.Gorath.group.161418309221.GroupChat.RoomName" | ||
+ | |||
+ | 09 00 | ||
+ | 52 6F 6F 6D 54 69 74 6C 65 // "RoomTitle" | ||
+ | |||
+ | 05 00 00 00 // Counter | ||
</pre> | </pre> |
Latest revision as of 00:24, 27 June 2008
Packet - ChatCreateRoom (35366BED)
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 Descriptions
Opcode = 0x35366BED
|
DetailsThis packet is ...
Tags
|
Sample Code
Insert Code Snippet Here...
Sample Packet
07 00 // OpCount ED 6B 36 35 // ChatCreateRoom 01 // public flag 00 // moderated flag 00 00 // unknown 30 00 53 57 47 2E 47 6F 72 61 74 68 2E 67 72 6F 75 70 2E 31 36 31 34 31 38 33 30 39 32 32 31 2E 47 72 6F 75 70 43 68 61 74 2E 52 6F 6F 6D 4E 61 6D 65 //"SWG.Gorath.group.161418309221.GroupChat.RoomName" 09 00 52 6F 6F 6D 54 69 74 6C 65 // "RoomTitle" 05 00 00 00 // Counter