Live minecraft server count for website

Status
This thread has been locked.
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

TylBur

Premium
Feedback score
3
Posts
244
Reactions
106
Resources
3
JummyCake I have a script which does this exact function, it's simply a javascript tied into an html element. If you'd like a copy of the code, feel free to message me privately and I can give you a download for free.
 

Trending Gamer

RealeDesigns
Premium
Feedback score
2
Posts
82
Reactions
71
Resources
0
Here is the code that I use myself to get the numbers. Where ever you put <span id="wow"></span> it will replace it with the number.

Code:
<script>
setInterval(function () {
    $.getJSON('https://mcapi.ca/query/mc.hypixel.net/info', function( status ) {
        document.querySelector('#wow').innerHTML = status.players.online ;
    });

}, 1000);
</script>

Unfortunately, I am unable to help with the other bits you have asked.
 
Status
This thread has been locked.
Top