Update MediaWiki page '474 Protocol'

This commit is contained in:
t4 2011-06-26 18:11:23 +00:00 committed by moparisthebest
parent a7456f8f8f
commit f353756803

View File

@ -11,40 +11,76 @@ When the client sends a packet to the server, the first byte encapsulates its op
== '''Login''' == == '''Login''' ==
? ?
== '''Incoming Data''' == == '''Game Protocol''' ==
'''TODO:''' Document packet structures
<table border="1" cellpadding="3" cellspacing="3"> ===Server -> Client Packets===
<tr>
<td><b>opcode</b></td>
<td><b>usage</b></td>
<td><b>size</b></td>
<td><b>payload</b></td>
</tr>
<tr> {| border=2
<td></td> |-
<td></td> ! Opcode
<td></td> ! Type
<td></td> ! Length (bytes)
</tr> ! Name
</table> ! Description
|-
| 209
| VARIABLE_BYTE
| N/A
| [[474 Send message|Send message]]
| Sends a server message (e.g. 'Welcome to RuneScape') or trade/duel request.
|-
| 231
| VARIABLE_SHORT
| N/A
| [[474 Send string|Send string]]
| Replaces a string of text. (e.g. Replace: 'Click here to Play' with 'Play Now!')
|-
|}
== '''Outgoing Data''' == ===Client -> Server Packets===
'''TODO:''' Document packet structures
<table border="1" cellpadding="3" cellspacing="3"> {| border=2
<tr> |-
<td><b>opcode</b></td> ! Opcode
<td><b>usage</b></td> ! Type
<td><b>size</b></td> ! Length (bytes)
<td><b>payload</b></td> ! Name
</tr> ! Description
|-
<tr> | 1
<td></td> | FIXED
<td></td> | 8
<td></td> | [[474 Remove ignore|Remove ignore]]
<td></td> | Sent when a player removes a player from their ignore list.
</tr> |-
</table> | 13
| FIXED
| 12
| [[474 Item on NPC|Item on NPC]]
| Sent when a player uses an item on an NPC.
|-
| 21
| FIXED
| 2
| [[474 Npc action 2|Npc action 2]]
| Sent when a player clicks the second option of an NPC.
|-
| 31
| FIXED
| 6
| [[474 Object action 1|Object action 1]]
| Sent when the player clicks the first option of an object, such as "Cut" for trees.
|-
| 34
| FIXED
| 1
| [[474 Focus change|Focus change]]
| Sent when the game client window goes out of focus.
|-
| 35
| FIXED
| 8
| [[474 Magic on player|Magic on player]]
| Sent when the player casts magic on another player.
|-
|}