Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.1 KB

19_entervent.md

File metadata and controls

31 lines (23 loc) · 1.1 KB

0x13 EnterVent

This message is sent by a client's PlayerPhysics component when entering a vent.

Note: Each map has its own set of vents and associated IDs that can be found here.

Note: This message is sent to and from all clients in a game via 0x05 GameData.

Type Name Description
packed uint32 Vent ID The ID of the vent that the player entered
Click here to view an example packet
01              # Reliable packet
00f9            # Nonce
0b0005          # Hazel message (tag of 0x05 = GameData)
    d3503f8a    # Game ID: -1975562029 (REDSUS)
    040002      # Hazel message (tag of 0x02 = RPC)
        bd01    # Sender (PlayerPhysics) Net ID: 189
        13      # RPC Call ID: 19 (EnterVent)
        03      # Vent ID: 3

Previous section: 0x12 SetStartCounter
Next section: 0x14 ExitVent