Assuming you wanted a fat client mod, sure. There's no reason whatsoever you'd do that though, the server posting system is a simple PHP query. Modify the address you're connecting to and write a quick PHP script to insert the server into a database with the provided plaintext data and a timestamp of when the server was posted. Every time the request page is loaded, load all the servers from the database and prune the records.
Then write a quick client mod:
package enableCustomMS {
function postServerTCPObj::connect(%this, %addr) {
%addr = "blockland-master.com:80";
parent::connect(%this, %addr);
}
function queryMasterTCPObj::connect(%this, %addr) {
%addr = "blockland-master.com:80";
parent::connect(%this, %addr);
}
};
function toggleCustomMS() {
$customMSActive = !$customMSActive;
if($customMSActive)
activatePackage(enableCustomMS);
else
deactivatePackage(enableCustomMS);
}
Maybe I'll post the PHP code later today too so one of you can just throw it up on a site.