Load Player: Difference between revisions

From Club Penguin Protocol
Jump to navigation Jump to search
imported>Arthur
imported>PowerKitten
No edit summary
 
(One intermediate revision by one other user not shown)
Line 30: Line 30:
| The amount of coins the player currently has.
| The amount of coins the player currently has.
|-
|-
| unknown value
| safemode
| integer
| boolean
| 0
| 0
| Unknown purpose.
| Determines whether the player is a safe-mode user.
|-
|-
| unknown value
| egg-timer minutes
| integer
| integer
| 1440
| 1440
| Unknown purpose.
| Used to determine how much time the player has left to play the game. If the parental control isn't activated through the management panel, this value has no effect.
|-
|-
| login time
| login time
Line 50: Line 50:
| Penguin's age in days.
| Penguin's age in days.
|-
|-
| unknown value
| player banned age
| integer
| integer
| 0
| 0
| Unknown purpose.
| Unknown purpose.
|-
|-
| unknown value
| minutes played
| integer
| integer
| 10812
| 10812
| Unknown purpose.
| The amount of time the player has spent playing the game in minutes.
|-
|-
| unknown value
| membership days remaining?
| string?
| string?
| (none)
| (none)
| Unknown purpose.
| Days until the player's membership expires.
|-
|-
| unknown value
| timezone offset
| integer
| integer
| 8
| 8
| Unknown purpose.
| Offset of the player's timezone.
|-
|-
| unknown value
| player has opened playercard
| integer
| boolean
| 1
| 1
| Unknown purpose.
| Unknown purpose, but it's probably used when introducing the interface for first-time users.
|-
|-
| unknown value
| saved map category
| integer
| integer
| -1
| -1
| Unknown purpose.
| Unknown purpose.
|-
|-
| unknown value
| status field
| integer
| integer
| 0
| 0
| Unknown purpose.
| Used for determining the status of the player's experience with the puffle system.
|}
|}


== See also ==
== See also ==
* [[Join Room]] - this packet also sends the player a string containing data about their clothing, coordinates, etc
* [[Join Room]] - this packet also sends the player a string containing data about their clothing, coordinates, etc
[[Category:Player Handlers]]

Latest revision as of 15:52, 17 April 2017

The load player packet is received soon after the client sends the join world packet.

The packet contains all of the client's data excluding their password.

Example

%xt%lp%-1%15564235|Tails25|1|4|414|0|317|4025|0|0|609|973|0|0|1|0|0|0|{"spriteScale":100,"spriteSpeed":100,"ignoresBlockLayer":false,"invisible":false,"floating":false}|%4070%0%1440%1386555051873%2556%0%10812%%8%1%-1%0%

Variables

Variable Type Example Description
internal room id integer -1 See Internal Room ID.
player string Tails25|1|4|414|0|317|4025|0|0|609|973|0|0|1|0|0|0|{"spriteScale":100,"spriteSpeed":100,"ignoresBlockLayer":false,"invisible":false,"floating":false} Player id, username, clothing, room coordinates (including their frame position), membership status, avatar settings, and puffle settings if they're walking one.
coins integer 4070 The amount of coins the player currently has.
safemode boolean 0 Determines whether the player is a safe-mode user.
egg-timer minutes integer 1440 Used to determine how much time the player has left to play the game. If the parental control isn't activated through the management panel, this value has no effect.
login time integer 1386555051873 UNIX timestamp representation of when the player joined the server.
age integer 2556 Penguin's age in days.
player banned age integer 0 Unknown purpose.
minutes played integer 10812 The amount of time the player has spent playing the game in minutes.
membership days remaining? string? (none) Days until the player's membership expires.
timezone offset integer 8 Offset of the player's timezone.
player has opened playercard boolean 1 Unknown purpose, but it's probably used when introducing the interface for first-time users.
saved map category integer -1 Unknown purpose.
status field integer 0 Used for determining the status of the player's experience with the puffle system.

See also

  • Join Room - this packet also sends the player a string containing data about their clothing, coordinates, etc