Age of Conquest | Medieval Strategy Game
Age of Conquest is a Risk-like medieval strategy game supporting both single and multiplayer online game play.
      Download | Forums | Standings
Language: English 日本語

Age of Conquest API

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!


Sample Code

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


Help & Support

Please visit our forums for support:

» Noble Master Developer Forums


Download & Documentation

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