map.html
<!doctype html>
 
<html lang="en">
<head>
    <meta charset="utf-8">
 
    <title>Real-Time Display of Players on Azeroth</title>
 
    <meta name="description" content="Real-Time Display of Players on Azeroth">
    <meta name="author" content="Wizardry and Steamworks">
 
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <script type="text/javascript">
    function showCharacters() {
        $.ajax({
            type: 'POST',
            url: "map.php",
            cache: false,
            timeout: 60000
        }).done(function(data) {
            if(data != null && data != '') {
                $('#texture').attr(
                    'src',
                    "data:image/png;base64," + data
                );
            }
            setTimeout(showCharacters, 1000);
        });
    }
    $(document).ready(function () {
        showCharacters();
    });
    </script>
</head>
 
<body>
    <div id="container" align="center">
        <img src="" align="middle" id="texture">
    </div>
</body>
</html>

mangos/track_players_on_map/map.html.txt ยท Last modified: 2022/04/19 08:28 by 127.0.0.1

Access website using Tor Access website using i2p Wizardry and Steamworks PGP Key


For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.