User

Some responses contain an user object:

Attributes

none

Fields

  • string name: The unique username/login name for the user. Unique across all servers.
  • string friendname: The unique username/login name for this users friend account. Unique across all servers.
  • players: contains >= 1 Player Objects. Lists all "screen names" or "players". One per server maximum. Always one or more, if none, then the entire user should be considered deleted/inactive.

Example

...
<user>
  <name>Fieldeon</name>
  <friendname>FieldeonsFriend</friendname>
  <players>
    <player server="3" status="online" role="mother">Rastabon</player>
    <player server="1" status="offline">Phadon</player>
  </players>
</user>
...