Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

useful server status code

Newbie Spellweaver
Joined
Apr 17, 2023
Messages
47
Reaction score
15
this is old code but gold!

create your own SERV00.HTM WEB for your server url address to read how many connected on your own server.

Tutorial

1. you need to installed on your PC AppServ or XAMPP.

2.Open the appserv / www folder (in C: / appserv / www /) (on your pc elsewhere ex (X: /, E: / etc) then
open dbsrv.exe in a hex editor in your server folder and search for appserv will be the first result to appear,
change the location to where the appserv is and then save.)

3. Create a folder named wyd.

4. open the folder that u created and create second empty of text and change the name to serv00.htm and data00.csv

5. Use this script file (put wherever you want on your website.)the script was made only for one channel.

Code:
<?$ File = fopen ("wyd / serv00.htm", "a +")$ Count = fread ($ file, Filesize ("wyd / serv00.htm"))$ Limit = 3;$ Skip = 0; // Skips a character.$ Count = substr ($ count, $ skip, $ limit)FileData str_replace $ = ("- 1", "0", $ count)if ($ count)fclose ($ file)echo '<span class = "style8">'. $ fileData. '</ span>'?>

now you can use this serv00.htm on your serverlist.bin

EXTRA helpful code.
this one for removing some error on site
put it in upper code after the <HTTP> or <php> on your website main.php/html

Remove website line errorSource code:
Code:
ini_set('display_errors','Off');ini_set('error_reporting', E_ALL );define('WP_DEBUG', false);define('WP_DEBUG_DISPLAY', false);

sorry if i lost the site server status bar. hope someone still have that code for server status bar, please add here to help other!
 
Back
Top