The AO API (Aevum Obscurum - Application Programming Interface) connects
directly to Aevum Obscurum providing services to poll games, players, standings,
news, game maps and signatures.
The API has advanced functionality to allow for game management. Game
management enables game creation. Interested organizing tournaments
from your own web site? Want to organize a league?
The AO API is provided for free!
PHP Code Sample (prints player info):
<?php
require_once('aocon-1.2.0.inc.php');
$aocon = new AOCon();
$row = $aocon->getPlayerInfo(10001);
if ($row == NULL) {
printErrors($aocon->getErrors());
}
else {
printRow($row);
}
?>
Live Demo:
» PHP Sample System (high level)
» PHP Demo (low level)
Live Example (Records System):
» AO Records Server
» AO Monitor
Please visit our forums for support:
» Noble Master Developer Forums
Download source distribution and documentation:
» AO API 1.2.0 PHP Sources
» AO API 1.2.0 PDF
» AO API 1.2.0 Doc
Sample code:
» PHP Sample System 1.2.0
Recommended reading:
» PHP Best Practices