DEVELOPMENT

By
2016/05/03 (revision 4)

HiScores

This is a service that allows you to store the high scores for your games, and maintain a list of the top ten players.

AGK Code to fetch HiScores

iHTTP = CreateHTTPConnection()
iHTTPhost= SetHTTPHost( iHTTP, "www.hiscores.gasius.co.za", 0 )

hi$= SendHTTPRequest( iHTTP, "hiscores.aspx?game=sumalot&cmd=hi" )
ret$= SendHTTPRequest( iHTTP, "hiscores.aspx?game=sumalot" )


CloseHTTPConnection(iHTTP)
DeleteHTTPConnection(iHTTP)