« Previous - Version 2/18 (diff) - Next » - Current version
vl, 04/09/2009 07:36 pm


Character

Base URL

http://atys.ryzom.com/characters/index.php

Syntax

  • uid: the user id
  • slotid: the character slot of the user (0 is the first character, 4 is the last character)

Errors

  • "Error 4" often means that the slot is empty (no character)

Update Frequency

The profile is updated every hour.

PHP Example

<?
$xml = simplexml_load_file('http://atys.ryzom.com/characters/index.php?uid=65&slotid=1');
echo "Name: ".$xml->name;
?>

will display the name of the second character of the user id 65:

Name: Dday

Real Examples