Last active
December 4, 2024 08:50
-
-
Save Gesugao-san/ecd72e4b298e972c854a790fca64f7fe to your computer and use it in GitHub Desktop.
SS13 hub parsing. Inspured by https://ss13stats.skullnet.me but it's js, for D3 in future.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run in Google Chrome Console. MIT Licence. | |
// For "http://byond.com/games/Exadv1/SpaceStation13?format=text" | |
function main(_input = false) { | |
if ((_input === false) || (_input === null) || (_input == '')) {return console.error("User cancelled the prompt.");} | |
console.clear(); | |
if (verbose) console.debug(['PROCESSING START']); | |
let current_entry = '', _data = {}; // let tabbed = [], notTabbed = []; | |
//_input = _input.split('\r\n'); | |
//if (debug) console.log('_input:', _input); | |
for (var i = 0; i < _input.length; i++) { | |
if (!_input[i].includes('\t')) { | |
if (verbose) console.debug(['ENTRY START']); | |
current_entry = _input[i]; | |
if (current_entry.includes('general')) { | |
if (verbose) console.debug('Info about BYOND Hub detected.'); | |
if (!_data['general']) _data['general'] = { | |
type: '', | |
title: '', | |
path: '', | |
short_desc: '', | |
long_desc: '', | |
author: '', | |
version: '', | |
banner: '', | |
icon: '', | |
small_icon: '', | |
multi_player: 1, | |
date: '', | |
last_updated: '', | |
last_played: '', | |
listing: '', | |
tags: [], | |
fans: 0, | |
screenshots: 0, | |
video: '', | |
}; | |
} | |
if (current_entry.includes('world/')) { | |
//if (debug) console.log('_data:', _data); | |
if (verbose) console.debug(`Info about world №${current_entry.split('/')[1]} detected.`); | |
if (!_data['world']) _data['world'] = {}; | |
_data['world'][current_entry.split('/')[1]] = { | |
url: null, | |
server_version: null, | |
host: null, | |
status: null, | |
players: [], | |
}; | |
} //else _data[current_entry] = {}; | |
if (verbose) console.debug(['ENTRY END']); | |
} else { | |
if (verbose) console.debug(['ROW START']); | |
if (debug) console.log('Raw data:', [`${_input[i]}`]); | |
let _splitted = _input[i] | |
.replaceAll('\t', '') | |
.split(' = '); | |
if (debug) console.log('Filtered:', _splitted); | |
if (_splitted[1] == 'list()') { | |
_splitted[1] = []; | |
/*} else if ([ | |
'date', | |
'last_updated', | |
'last_played' | |
].includes(_splitted[0])) { | |
_splitted[1] = new Date(Date.parse(_splitted[0])).toLocaleDateString("en-US"); //.toISOString(); | |
*/ | |
} else if (_splitted[1].includes('list(')) { | |
_splitted[1] = JSON.parse(`${_splitted[1].replace('list(', '[').replace(')', ']')}`); | |
} else if (!isNaN(parseInt(_splitted[1]))) { | |
_splitted[1] = parseInt(_splitted[1]); | |
} else if (!_splitted[1] instanceof Object) { | |
_splitted[1] = JSON.parse(_splitted[1]); | |
} else if ((_splitted[1].includes('<')) || _splitted[1].includes('>')) { | |
_splitted[1] = _splitted[1] | |
.replaceAll('"', '') | |
.replaceAll("'", '') | |
.replaceAll('\\[', '[') | |
.replaceAll('\\]', ']') | |
.replaceAll('\\n', '\n') | |
.replaceAll('\\>', '>') | |
.replaceAll('\\http', 'http') | |
.replaceAll('\\\\http', 'http') | |
.replaceAll('\\\\', '\\') | |
.replaceAll('\n', '\n'); | |
_splitted[1] = new DOMParser() | |
.parseFromString(_splitted[1], 'text/html') | |
.body.innerText; //.body.innerHTML // ← this is how we can get this back! | |
//.querySelectorAll('*') | |
; | |
//_splitted[1] = _splitted[1].all ? _splitted[1].all : _splitted[1].getElementsByTagName("*"); | |
} else if (_splitted[1] == '') { | |
_splitted[1] = null; | |
} else if (typeof _splitted[1] == 'string') { | |
if ( | |
_splitted[1].startsWith('"') || | |
_splitted[1].endsWith('"') | |
) { | |
_splitted[1] = _splitted[1] | |
.replaceAll('"', '') | |
.replaceAll("'", '') | |
.replaceAll('\\[', '[') | |
.replaceAll('\\]', ']') | |
.replaceAll('\\n', '\n') | |
.replaceAll('\\>', '>') | |
.replaceAll('\\http', 'http') | |
.replaceAll('\\\\http', 'http') | |
.replaceAll('\\\\', '\\') | |
.replaceAll('\n', '\n'); | |
} | |
} | |
if (typeof _splitted == 'string') { | |
if ((_splitted[1].includes(']')) && (!_splitted[1].includes('['))) | |
_splitted[1] = '[' + _splitted[1]; | |
else if ((_splitted[1].includes('[')) && (!_splitted[1].includes(']'))) | |
_splitted[1] += ']'; | |
} | |
if (debug) console.log('Parsed:', _splitted); | |
if (_splitted[0] == 'status') { | |
if (_splitted[0] == '') _splitted[0] = null; | |
if (verbose) console.log('Word status (description):\n' + _splitted[1]); | |
if ((_splitted[1].includes('[')) && _splitted[1].includes(']')) { | |
console.log('test:\n' + _splitted[1]); | |
console.log('counts: "[":', _splitted[1].split('[').length - 1, '"]":', _splitted[1].split(']').length - 1); | |
console.log('need to insert leading:', _splitted[1].split(']')[0].length < _splitted[1].split('[')[0].length); | |
console.log('need to insert following:', _splitted[1].split('[')[0].length < _splitted[1].split(']')[0].length); | |
} | |
} | |
if (current_entry.includes('world/')) { | |
_data['world'][current_entry.split('/')[1]][_splitted[0]] = _splitted[1]; | |
} else { | |
if (!_data[current_entry]) _data[current_entry] = {}; | |
_data[current_entry][_splitted[0]] = _splitted[1]; | |
} | |
if (debug) console.log('This row processed data:', _splitted[0], _splitted[1], typeof _splitted[1]); | |
//if (verbose) console.log(['ROW END']); | |
} | |
} | |
if (verbose) console.debug(['PROCESSING END']); | |
if (debug) console.log('_input.length:', _input.length, Object.keys(_data).length); | |
return _data; | |
} | |
function getWorldData(_input = false) { | |
if ((_input === false) || (_input === null) || (_input == '')) {return console.error("User cancelled the prompt.");} | |
return Object.keys(data.world).reduce((previousValue, currentValue) => { | |
return previousValue += data.world[currentValue][_input]; | |
}, []).split(','); | |
} | |
const debug = Boolean( 0 ); | |
const verbose = Boolean( 1 ) || debug; | |
const url = 'http://www.byond.com/games/Exadv1/SpaceStation13?format=text'; | |
if (confirm("Open official BYOND SS13 servers' web browser?")) window.open(url, '_blank').focus(); | |
let input = prompt('_input data from website', ''); | |
if (input) input = input.split('\r\n'); | |
data = main(input); | |
console.log('data:\n', data); | |
console.log('all urls:\n', getWorldData('url')); | |
console.log('all players:\n', getWorldData('players')); | |
console.log('debug:', debug); | |
console.log('verbose:', verbose); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
general | |
type = "game" | |
title = "Space Station 13" | |
path = "Exadv1.SpaceStation13" | |
short_desc = "Stay alive inside Space Station 13" | |
long_desc = "See <a href=\"http://www.spacestation13.com/\">http://www.spacestation13.com/</a><br>\n<br>\nCommenting has been turned off since developers do not generally read HUB comments. Please, take all grievances, suggestions, etc. to the forum/forum thread of the SS13 version you are currently enjoying! There are currently no plans to sell the SS13 hub entry, please do not respond to such advertisements." | |
author = "Exadv1" | |
version = "13" | |
banner = "http://www.byond.com/games/banners/8266.png" | |
icon = "http://www.byond.com/games/hubicon/8266.png" | |
small_icon = "http://www.byond.com/games/hubicon/8266_s.png" | |
multi_player = 1 | |
date = "02/15/03" | |
last_updated = "09/23/19" | |
last_played = "06/15/22" | |
listing = "Listed" | |
tags = list("action", "rpg", "scifi") | |
fans = 153055 | |
screenshots = 0 | |
video = "http://www.youtube.com/watch?v=7M-JPH5SOmI" | |
world/1 | |
url = "byond://BYOND.world.269372472" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise Main</b> — <b>NSS Kerberos</b> (ParaCode)<br>\nModified ParaCode, руÑÑкий Ñзык, main server<br>\n2:02, Red<br>\nMedRP, all species, <a href=\"https://wiki.ss220.space\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list("Biili Jean","Harveria","Zikviger","Fukfuk","NerdyNerd1337","WyrmP","Sergey Vorobiov","Petruchio","Laffirian","Macconery","Akvamarinson","Nayker","Jabrechka","Licemetrs","Atttack","DrJesc","Armorer10","Nill Kigers","NOFAX","Cila","PoTapkam","FlexOK","Alyseum","Mikola Ostavkin","4inHo","Agn","SlyFox66","Owl W. Rayman","Knockouts","Nosochek","Frager2106","AlvionKliffson","AJlEKCAHDP","Liam White","GamesCat","MikroBER","PinkieApplePie","Aanakh","LostCrusader","HardBassCannon","Maddarwin","EFsYeL","DredLone","Silyamg","UltraIbivaka","Kostrov87","SeReGaGa","DriaA","Lazaret","Rifess","Artbast","Mr_sweet_paws","PeaceWalker0601","Deda_Hund","Fullfake","Narcotoster","Mangustozavr","One of the Legion","Akisameru","Lerionix","Rtveysr","Folchik","Dx10dll","Degrik","Mutss","Sliva123","COBAHT","Surtheim","LonelyRoyz","Strepizdrik","Mikserious","ValGy","LetMeSleep","Mna008","Gluhonemoi") | |
world/2 | |
url = "byond://BYOND.world.1823256433" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise Secondary</b> — <b>NSS Kerberos</b> (ParaCode)<br>\nModified ParaCode, руÑÑкий Ñзык, secondary server<br>\n<b>STARTING</b><br>\nMedRP, all species, <a href=\"https://wiki.ss220.space\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list("Lifelover","Heathcleaff","Kirillaman","AzariaWarrior","Selkad tubbie","Ravenic","Freeman87","Galapup","AveB3op","Dictor","Madinthesky","Doctor_bee","AntiD0te","Kimton","McDuckMc","Kerovitagar","Divan95","Anchor_Tony","Sholopai","Yaqapi","Marlbobro","Jms_f","Ricardo666","Molniz","Qixel","Hottabi4","MADMAN_AP","BurnedAlive85","Zergy12","HaskiMaser","Wertis228","AzikAriman","Valdislav","Demonisimo","Mrachniy","Im Mario","Nyagah","Saad_f603","Al5900","VaflMafl","Dreamer 3","Avarage_Enjoyer","MikfHunter","UrdalGedal","KABEP","Plant3r","St0rmKnight","Daeberdir","Lenez_OraAk","Artemwar","Shalun228","Toesiko001","Lorted","One of the Legion","Foxiliam_endy","Massengrab88","Breadman39","Folchik","PumPey","YaBloKKo","SOruto_ds","Heathkit1","Trashy_Oliver","Posuda","Jeckson","Hilderald","JustRain","Vizeris","BatlleOoze","WinDaster","MeMorby") | |
world/3 | |
url = "byond://BYOND.world.1702996248" | |
server_version = 514 | |
status = "<a href=\"https://cm-ss13.com/\" rel=\"nofollow\"><b>CM-SS13 - Now (mostly) Windows Free!</b></a><br>\nMap: <b>Shivas Snowball</b><br>\nMode: <b>Distress Signal</b><br>\nRound time: <b>01:52</b>" | |
players = list("Kirshbia","DeaDDerpY","WolfRUS","Jeser","Immaspaceninja","BlackDragon813","Tusenmaug","Lengord","SirPukey","CastorTroy23","Licon","Namehtmai","Jokkemokke","CTAardvark","RSlite","Don1155","SideCat","Comet Blaze","Anonymous14z","Despadoru","Dimdimich1996","Sushnostb","Vova321","Is_Dog_Hour","Mtorange","Time_URSS","PurpleCIoud","Niggling","Ocelottt","Operator-343","Mr Felon","Ian River","NothingHere01","Arash_ys","Sleepynecrons","Blutsu","HendY551","TheDumbHans","Barristo","DroidIQ","FrostN","JaqqoTheRat","Luckohoto","Sus_man_bob","TTheTank1997","Lukemlks","RandomG05","I_programmist","Hadyy","Xniper") | |
world/4 | |
url = "byond://BYOND.world.1896016134" | |
server_version = 514 | |
status = "<b>Tau Ceti Classic (RU)</b> — <b>NSS Exodus</b> (<a href=\"https://taucetistation.org\" rel=\"nofollow\">site</a>): Secret, respawn, AI allowed, ~51 players" | |
players = list("UBiman","13lova13","Sniper310","Stekliannii_ork","Reditt","Wandermu","Riverz","MeanWhile12","WeRememberYouGarold","MrBite","Kandrey","PhantomElite","Barzabelle","Precision and grace","Keniskop","MishanySin","Winli_no_lol","Stant351","WOPA C PYCKON","TGT-4","Stepansamp228pos","Olimpover","Morkleb","Alexsander Peregon","Individuum135","Swas.220","Feroti","Sigitz","Maleyvich","Dgnd","Akamichi1342","Serminator","ErasylFEAR","JustaDude123","CheekyB","Hunter0202","DenFau","Yot90","MrTaciturn","IamSpy","BeerBoost") | |
world/5 | |
url = "byond://BYOND.world.76481853" | |
server_version = 514 | |
status = "<img src=\"http://goonhub.com/bee.gif\"><b><a href=\"https://goonhub.com\" rel=\"nofollow\">Goonstation 1 Classic: Heisenbee</a></b> — The classic SS13 experience. — (<a href=\"http://bit.ly/gndscd\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>COGMAP</b><br>\nMode: <b>secret</b>" | |
players = list("Starburst_Stuff","New525","Solairex","MicoolTNT","Nabythecowboy","Athare","Roselace","Noodle5000","Decarcassor","Harrywizard","BinoWasTaken","Mutant_coolguy","Diamond_Plated","Nova_Hero","Absolute Martin","Girod","Dark_Lord4848","Icychasy","Azoron982","Adenemis","Creion69","Steven Amariz","SirDapperDoodle","Kba22","WildWarriorWest","Daddylongzak","Devenge","Gopnikedgelord","CileLeo","DolphinBoiWasTaken","Lok-n-hostile","Zombiecf","QUB3X") | |
world/6 | |
url = "byond://BYOND.world.1622199822" | |
server_version = 514 | |
status = "<b>The Wasteland - A fallout themed SS13 experience</b> (<a href=\"https://discord.gg/xCgEwJTppx\" rel=\"nofollow\">Discord</a>)]<br>\n\[18+] Respawn enabled, PVP/PVE, Roleplay and fun<br>\n\[Yuma, green alert, 73 players" | |
players = list("Michael MaCleod","Queenboleyn","Arton Redwyrm","Kezai","Nonood","Rupuke393","Destructo62","Pinoydragon22","Fucus","Jeffery jefferson","Shaydizzel","Officialn30","Mekyses","DelicateFeet","SomethingIsWrong","Wateronix","Keneral Genobi","Wrecs","Arsonkin","Corinthian555","QuadDevil","ZandraEmmie","Maxwell_Allwell","PendletonMan","ImBubbl101","Edee1223","LemonFY","Juks","IMoe","Mortimer Hammermeister","EmberPhoenix1","Latvia","Legacy777") | |
world/7 | |
url = "byond://BYOND.world.907140221" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise WL Prime</b> — <b>NSS Cyberiad</b> (ParaCode)<br>\nModified ParaCode, руÑÑкий Ñзык, redirect to main server if access denied<br>\n0:01, Green<br>\nMedRP, all species, whitelist, twitch streamers, <a href=\"<a href=\"https://ss220.sp\">https://ss220.sp</a>" | |
players = list("RuslanM","1337p1337","Prace","SLake_47","Holor","Makslao","Iranimaq","Zed_Grossholtz","AlCoreRU","KoutaTsuBaka","B1ACKBE4RD","Stintan","Wanrerwer","Vllads","AssaultMachine","Mell22","Toffie13","Wo4er","Leorian","Twilf","Osulor","SwordAndVodka","ProPie","Griiiip","WitnessOfWitchcraft","COSFAR","Kebab4ik","SoHaRDy","Lunarion","Sivirus","Daniil241297","Vanesslynx","Rammz220") | |
world/8 | |
url = "byond://BYOND.world.1499734442" | |
server_version = 514 | |
status = "<b>Skyrat SS13 - Roleplay Server \[Apply on Discord, Weekly Events]</b> — (<a href=\"https://discord.gg/hGpZ4Z3\" rel=\"nofollow\">Discord)]<br>\n18+ Anthro-friendly, Adult RP/Action server for mature, rugged souls!<br>\n\[Ice Box Station, ~56 players, hosted by <b>SRC</b></a>" | |
players = list("Nikoli","Higgin","DominusLucian","Fourty2","Mr. Pangle","SingingSpock","UntoldTactics","Sylvara","TheNeoGamer42","SpaceLove","Vynellin","Blepis","PotatoPerson993","A Random Alien","SlippyJoe","Lukaster42","Grryn","Fresau","Kassori","EugeneShev","IncorrigibleNan","Okey44","Vespa1","Lebawscii","CaelumB","Loafatbay","RangerYote","AddoM19","Syntax1112","Xootdoot","Lakeel","Bluespace Lover") | |
world/9 | |
url = "byond://BYOND.world.1477134788" | |
server_version = 514 | |
status = "<b>Paradise Station</b>] — <b>NSS Cyberiad</b> (<a href=\"https://discord.gg/YJDsXFE\" rel=\"nofollow\">Discord</a>)<br>\nThe Perfect Mix of RP & Action<br>\n0:43, Green<br>\n\[MedRP, varied species and jobs, <a href=\"https://www.paradisestation.org/wiki\" rel=\"nofollow\">Wiki</a>" | |
players = list("Balloonicorn Jr.","D0NP1MP0N","Beo208","McRamon","Serialmurderer","Swaggaboy112","Skajaw","Mrsenpai","Sikroth","Accinator50","Ana Amari","Byffjerkky","Spazzicus","Ce_cio","Oranchepopsicle","555evilgnomes","Defidriume","Sexdefender","Persion","MarkyBoyo","Vilshen","Jahoosafat","Bleadf","Poisonforwin","Doiv Njoijf","K4rl","Happyman1997","DINKO4","ShootyMcShoot","Sporgusthegreat") | |
world/10 | |
url = "byond://BYOND.world.26228010" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Sierra</b> (<a href=\"http://discord.ss220.space\" rel=\"nofollow\">Discord</a>) MedRP, modified Bay12 code, руÑÑкий Ñзык<br>\n<b>Players:</b> 29 | <b>Mode:</b> secret" | |
players = list("The_Hero13","Interl0per","Rosich","Chowny","Daviii22","Gvanter","Warlordbattlecryss","Soyali2","HumbleGuy","Baneuus","Monica77","Papa_Leroy","Kolanhan","Aquamarine0_o","MrXenroll","Kaasel","Kemp_Ace","Cancerin","SaemonnDaCruppz","Neonvolt","_Pyaderin","War helicopter","MoonDeer26","Zagadka","GloriousBubble") | |
world/11 | |
url = "byond://BYOND.world.1731922569" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise Vega</b> — <b>NSS Kerberos</b> (ParaCode)<br>\nModified ParaCode, руÑÑкий Ñзык, Enterprise Role Play<br>\n2:12, Green<br>\nMedRP, all species, <a href=\"https://wiki.ss220.space\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list("MrBav","SuperMaker","TheSabreplr","Uwaitsomebody","Armorkrip","Mesevo112","SpaceSlime","Portergayzer","UILBUR","E1derly","LaysergBlue","Sasco","Poisonforwin","Andru scot","KrenDelYa","Logul","Havour_Fungie220","Addis_ababa","DarkSer","Ilyaqa","KAMOchek","Arceniu","Pipegin","Qwa sayng frog") | |
world/12 | |
url = "byond://BYOND.world.834567161" | |
server_version = 514 | |
status = "<b><a href='https://discord.ss220.space' rel=\"nofollow\">\[RU] SS220 TerraGov Marine Corps</a></b><br>\nMap: <b>Research Outpost</b><br>\nShip: <b>Theseus</b><br>\nMode: <b>Nuclear War</b><br>\nRound time: <b>00:12</b>" | |
players = list("Krutoi2000","DominoCaesar","BOT Purple","Lorians","Fortem","GriallBronill","BaraBara","Zalupnik","Demma Rius","Artem_toy","Kokuchery","Siegluck","Bobby Nilson","Portwave","Daedrowe","JustChel","Timur 0_o","Geleyik") | |
world/13 | |
url = "byond://BYOND.world.1227900057" | |
server_version = 514 | |
status = "<b>\[RU] The Fluffy Frontier 18+ MRP-HRP</b> — (<a href=\"https://discordapp.com/invite/5GvhwtY\" rel=\"nofollow\">Discord)]<br>\nRussian furry MRP server running on modified Skyrat code<br>\n\[Ice Box Station, ~27 players, hosted by <b>Autism</b></a>" | |
players = list("Stas2281","Dominga","Egor15270","Rarytech","Nalsurion","Ren III","TYWOHKA","XeroXOffice","Allazarius","Zoomazif","MeowDelta1911","Arst91","Mo2x","CashRat","Awers855","XO4Y_T9lHO4KY","Psihodelix","BeZuMeTs") | |
world/14 | |
url = "byond://BYOND.world.1714349107" | |
server_version = 514 | |
status = "<b>S.P.L.U.R.T. - Aether 13</b>] (<a href=\"https://discord.gg/vykusqyggk\" rel=\"nofollow\">Discord</a>) (18+)<br>\n<a href='https://discord.gg/vykusqyggk' rel=\"nofollow\">NSFW Medium Erotic Roleplay Server (MERP!) with lots of anthros!</a><br>\n\[Box Station, amber alert, 29 playing" | |
players = list("Supercon","LT. Mr.Doge","Nysandria","BakuDan","Slav_Raccoon","RuinHalo190","ErshenNies","TomCZE","LZdotrembala","Muklibo","VulpesLoon45","DaNachoSteve","TheAnnoyingT","Inky The Moth","Zirok","Popstep") | |
world/15 | |
url = "byond://BYOND.world.374079499" | |
server_version = 514 | |
status = "<b>Fulpstation</b>] — <b>The Problems of the Future, Today!</b> (<a href=\"https://discord.gg/SVu782A\" rel=\"nofollow\">Discord</a>)<br>\n<br>\nBeginner Friendly: <b>Learn to play SS13!</b><br>\nRoleplay: \[<b>Medium</b>]<br>\nMap: \[<b>Kilo Station</b>" | |
players = list("Null0","Ggefg","Durema","Conmen","Mandsen","Chelrushi","Joegaming","Lux Aeternia","Boiledpotatothe3rd","Dynamic64","TheEndOfMost","Steel dragon113","NotZang") | |
world/16 | |
url = "byond://BYOND.world.903212431" | |
server_version = 514 | |
status = "<img src=\"http://goonhub.com/bee.gif\"><b><a href=\"https://goonhub.com\" rel=\"nofollow\">Goonstation 3 Roleplay: Morty</a></b> — The classic SS13 experience. — (<a href=\"http://bit.ly/gndscd\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>COGMAP</b><br>\nMode: <b>secret</b>" | |
players = list("Skegal","Asasinedude","Mape123","Floofy_Unicorn","LDrizzle","Taylorstar","HollandaiseSauce","CalliopeSoups","QHD10","Buyrcsp2","Kuidothegreat","Drossr","TonMon") | |
world/17 | |
url = "byond://BYOND.world.1557870528" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise Cleo</b> — <b>NSS Kerberos</b> (ParaCode)<br>\nModified ParaCode, руÑÑкий Ñзык, Enterprise Role Play<br>\n3:46, Green<br>\nMedRP, all species, <a href=\"https://wiki.ss220.space\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list("Primal_first_ghost","Yb0rshik","Lartin","Navvok","MrCarrot","Maki_myka","MTeam","Tiky062","Bill Lee","ZikiloPmd","Antrex","Zazikpg","Chewir") | |
world/18 | |
url = "byond://BYOND.world.242067992" | |
server_version = 514 | |
status = "<b>\[RU] SS220 tgstation</b> (<a href=\"https://discord.ss220.space\" rel=\"nofollow\">Discord</a>): no respawn, AI allowed, 17 players" | |
players = list("Dragonoleg228","Asasin 13","PatrikBrando","Ghostkokos","Xackii","Citizen and Station","Mercenary-zag","Qqq213","AIIright","Moonlight7","Ratatatu","Andrey4544") | |
world/19 | |
url = "byond://BYOND.world.983383756" | |
server_version = 514 | |
status = "SS13.SU] <big><b>FDev: White Dream: RU</b></big> <a href=\"http://station13.ru\" rel=\"nofollow\">SITE</a> | <a href=\"https://discord.gg/2WAsvv5B5v\" rel=\"nofollow\">DISCORD</a><br>\n<br>\n<img src='https://assets.station13.ru/l/w9.png'><br>\n<br>\n\[<big>PROBABLY NOT HARAM</big>" | |
players = list("KrolikCot","Dormientes feles","Le_psina_de_sutulaya","NikkoLord","Kotsward","Thunderstorms","BratokSashok","Opalch","Palach2020","Daultus","Chituka09","ERPmaster") | |
world/20 | |
url = "byond://BYOND.world.1270797149" | |
server_version = 514 | |
status = "<b><a href='https://discord.gg/2dFpfNE' rel=\"nofollow\">TerraGov Marine Corps — Pillar of Spring</a></b><br>\nMap: <a href='https://affectedarc07.co.uk/tgmc.php?m=orionoutpost.dmm' rel=\"nofollow\"><b>Orion Military Outpost</b></a><br>\nMode: <b>Crash</b><br>\nRound time: <b>00:44</b>" | |
players = list("Arkon897","Gennel","Jubileu45","Bilary","Starfirejordan","Redory","Icypropel","Panzerkampfwaggen","SalsySalad","Alter Egon","Slimeboat") | |
world/21 | |
url = "byond://BYOND.world.460298911" | |
server_version = 514 | |
status = "<b>BeeStation Sage - Roleplay</b> — <b>Safety Installation 80</b>(<a href='https://discord.gg/ss13' rel=\"nofollow\">Discord</a>|<a href='http://beestation13.com' rel=\"nofollow\">Website</a>)): secret, 22/70 players" | |
players = list("DarkwindLeaf","Spaceship12","Overl0rd_Zetta","Aeder1","Shiraizawa","Jhonbob","Alonenizer","Dropko","ShadowSlime","VincentDT","KermitLePog") | |
world/22 | |
url = "byond://BYOND.world.2032572146" | |
server_version = 514 | |
host = "Lestatanderson" | |
status = "<b>Foundation Site 53</b> (<a href=\"https://forums.baystation12.net/\" rel=\"nofollow\">Forums</a>): extended, respawn, vote, ~18 players, hosted by <b>yournamehere</b>" | |
players = list("Lestatanderson","IzayaChan","Ashen1-1","Raflyz","Overlord_000","Playermatu","Nameacow01","Siege_Of_Malta_Never_Happened","ZeeTwentyThree","Boog1231") | |
world/23 | |
url = "byond://BYOND.world.418410498" | |
server_version = 514 | |
status = "<img src=\"https://i.imgur.com/gNgarRJ.gif\"><br>\n<b>Yogstation 13</b> — New Player Friendly — 99% Lag Free!!<br>\n(<a href=\"https://tinyurl.com/yogsfo\" rel=\"nofollow\">Forums</a>|<a href=\"https://tinyurl.com/yogsdis\" rel=\"nofollow\">Discord</a>)<br>\n<br>\n<i>Help traitor maint!</i>" | |
players = list("Sephka","Hairykidney","Berayb","FRzLunar","Waluigi Zeppeli","Greggori","Veterath","Waterpig","Tawaporah","Dhusyurg") | |
world/24 | |
url = "byond://BYOND.world.1413150849" | |
server_version = 514 | |
host = "LeserZ" | |
status = "<b>\[TR] Psychonaut Station / discord.gg/psychonauts</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed, 9/90 players" | |
players = list("Eddiesti","SejiroAkashi","Revoralt","NotWeyn","Banditier","Quintel31","Yunu1","Etlibaklava","Teo teo") | |
world/25 | |
url = "byond://BYOND.world.547200665" | |
server_version = 514 | |
status = "<b>Sojourn 13</b> — <b>Nadezhda Colony</b>]<br>\n<small>18+ High Roleplay, Colony Map, ERIS Downstream, Weekly Events, 4+ Hour Rounds. Custom Character Creator. Tons of Guns and PvE.<br></small><br>\n: guide, respawn, vote, AI allowed, ~14 players, hosted" | |
players = list("Banishier1","Thezblah","Kavrick","Nonood","EnglishCrusader","TooFewSecrets","EinnUlfur","Artifical Idiot") | |
world/26 | |
url = "byond://BYOND.world.2127282741" | |
server_version = 514 | |
status = "<b>/tg/Station Sybil \[ENGLISH] \[US-WEST] \[100% FREE LAG] \[DDOS]</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed, 15/90 players" | |
players = list("LucaSumi","Jaakkima","Iwharris07","XII_391","Rainbolt","Slobolobo","MrTCo","MateyMaku") | |
world/27 | |
url = "byond://BYOND.world.2110023106" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise Extended eXperimental</b> — <b>NSS Cyberiad</b> (ParaCode)<br>\nModified ParaCode, full russian support, EXTENDED ONLY<br>\n41:06, Green<br>\nMedRP, all species, <a href=\"http://rv666.asuscomm.com/wiki/index.php\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list("WildWolfGary","Lolboxik","Dqz","FanTik048552","MrHarr","Mihailik") | |
world/28 | |
url = "byond://BYOND.world.808076931" | |
server_version = 514 | |
host = "Satancript069" | |
status = "<b>Metatest // SHIPTEST 27/7</b> — <b>metatest, moth space</b> (<a href=\"https://shiptest.net/discord\" rel=\"nofollow\">Discord</a>) (<a href=\"https://github.com/shiptest-ss13/Shiptest\" rel=\"nofollow\">Github</a>): extended, respawn, AI allowed, 7 players" | |
players = list("Koekiko1616","Wrill","Sint","Gauser","Denilregana","HMS Hood") | |
world/29 | |
url = "byond://BYOND.world.919603915" | |
server_version = 514 | |
status = "<b>\[SS13.RU] Chaotic Onyx (OnyxBay, Classic Roleplay)</b>: secret, respawn, AI allowed, ~9 players, hosted by <b>SS13.RU Team</b>" | |
players = list("MalinaBoy","Richardionion","Delpando","Kitten228778","X_Xranitel_X") | |
world/30 | |
url = "byond://BYOND.world.2129000619" | |
server_version = 514 | |
status = "<b>/tg/Station - Terry \[EU] \[CRASHES FIXED]</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed, 6/90 players" | |
players = list("Anon-Slowpoke","Witch Dr Mazungu","HolyCat","Tinigame","Erenklc896968") | |
world/31 | |
url = "byond://BYOND.world.2108092307" | |
server_version = 514 | |
status = "<b>\[SS13.RU] Eos Orbital Station (OnyxBay, Advanced Roleplay)</b>: secret, respawn, AI allowed, ~6 players, hosted by <b>SS13.RU Team</b>" | |
players = list("Judge_1987","Donaldo_TH","Sans andertale","Terydd","Valera Albertovich") | |
world/32 | |
url = "byond://BYOND.world.384324400" | |
server_version = 514 | |
status = "<b>Aurorastation: Heavy Roleplay Server</b> — <b>SCCV Horizon</b> (<a href=\"https://forums.aurorastation.org/\" rel=\"nofollow\">Forums</a>): secret, respawn, AI allowed, ~9 players, hosted by <b>aurorastation</b>" | |
players = list("Spider4062","Connorjg1","Yonnimer","WickedCybs","CourierBravo") | |
world/33 | |
url = "byond://BYOND.world.654164679" | |
server_version = 514 | |
status = "<b>Tau Ceti Classic II (RU)</b> — <b>NSS Exodus</b> (<a href=\"https://taucetistation.org\" rel=\"nofollow\">site</a>): Secret, respawn, AI allowed, ~6 players" | |
players = list("CTpacTHblu JluHb","Fluffy_cat_510","Afiugs","Chloe_Pricee") | |
world/34 | |
url = "byond://BYOND.world.1814581323" | |
server_version = 514 | |
status = "<img src=\"http://goonhub.com/bee.gif\"><b><a href=\"https://goonhub.com\" rel=\"nofollow\">Goonstation 2 Classic: Bombini</a></b> — The classic SS13 experience. — (<a href=\"http://bit.ly/gndscd\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>COGMAP</b><br>\nMode: <b>secret</b>" | |
players = list("Dirky","Squimbleton","Pennyy") | |
world/35 | |
url = "byond://BYOND.world.357101989" | |
server_version = 514 | |
status = "<img src=\"http://goonhub.com/bee.gif\"><b><a href=\"https://goonhub.com\" rel=\"nofollow\">Goonstation 4 Roleplay: Sylvester</a></b> — The classic SS13 experience. — (<a href=\"http://bit.ly/gndscd\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>NSS Horizon</b><br>\nMode: <b>secret</b>" | |
players = list("FerikJurgen","TwoBraids","JujuIV") | |
world/36 | |
url = "byond://BYOND.world.1480888668" | |
server_version = 514 | |
status = "<b>RU] Mortem: Distress Signal</b><br>\n<b>Features:</b> Free RolePlay, No Xenos<br>\n<b>Links:</b> <a href='https://mortem.one' rel=\"nofollow\">Site</a>, <a href='https://mortemteam.gitbook.io/mortem-universe' rel=\"nofollow\">Wiki</a><br>\n\[ERIS DOWNSTREAM" | |
players = list("AltHit","Gomes x") | |
world/37 | |
url = "byond://BYOND.world.656653269" | |
server_version = 514 | |
status = "<b>Monkestation</b> — <b>Aegis Spess Junk Eighteen</b>(<a href='https://discord.gg/monkestation' rel=\"nofollow\">Discord</a>|<a href='http://monkestation.com' rel=\"nofollow\">Website</a>)): dynamic, 5/150 players, hosted by <b>TheDukeofOOK</b>" | |
players = list("Squalhardt","Dunkelbunt") | |
world/38 | |
url = "byond://BYOND.world.1663140420" | |
server_version = 514 | |
status = "<b>Tau Ceti Classic III (RU)</b> — <b>NSS Falcon</b> (<a href=\"https://taucetistation.org\" rel=\"nofollow\">site</a>): Extended, respawn, AI allowed, ~3 players" | |
players = list("Carpo22","Aleksandr gudkov") | |
world/39 | |
url = "byond://BYOND.world.1891206933" | |
server_version = 514 | |
status = "<b>\[EU] \[LRP] Merchant Station 13</b> — <b>Moon Hive 71</b> \[<a href=\"https://hackmd.io/79ogwXLUS2-A_xnzUmCH9g?view\" rel=\"nofollow\">Rules</a>]: no respawn, AI allowed, 8 players, hosted by <b>Etra</b>" | |
players = list("NotSoEpikName","XxX_TvOy_OtChIm_XxX") | |
world/40 | |
url = "byond://BYOND.world.1576164935" | |
server_version = 514 | |
status = "SS13.SU]\n<center><a href=\"https://discord.gg/HQjz7YKRAJ\" target=\"_blank\" rel=\"nofollow\"><b>RU Civilization 13 Combat Traps</b></a></center>\n<br>\n<img src=\"https://i.imgur.com/ujds3x0.png\"><br>\n<b>Map:</b> Gladiators (00:37)<br>\n<b>Gamemode:</b> Gladiatorial CombatCombat Rus" | |
players = list("Catmedic","Burbonchik") | |
world/41 | |
url = "byond://BYOND.world.390960846" | |
server_version = 514 | |
host = "HARSIS" | |
status = "<b>NSS Kerberos</b> (ParaCode)<br>\n0:00, Green<br>\n<a href=\"http://example.org\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list("Samandar77","HARSIS") | |
world/42 | |
url = "byond://BYOND.world.201540358" | |
server_version = 514 | |
host = "Steve_Kekel" | |
status = "<b>Onyxbay</b>: secret, respawn, vote, AI allowed, ~2 players" | |
players = list("Steve_Kekel","LeviafanWeber") | |
world/43 | |
url = "byond://BYOND.world.371682364" | |
server_version = 514 | |
status = "<b>\[RU] Sojourn Colony | Enigma Project | \[WIP]</b> — <b>Nadezhda Colony</b>]: warrior, respawn, AI allowed, ~2 players, hosted by <b>OrdinaryLife</b>" | |
players = list("Ryterator") | |
world/44 | |
url = "byond://BYOND.world.694907173" | |
server_version = 514 | |
status = "<center><a href=\"https://discord.gg/hBEtg4x\" target=\"_blank\" rel=\"nofollow\"><b>Civ13 Official Server</b></a></center>\n<br>\n<img src=\"https://i.imgur.com/napac0L.png\"><br>\n<b>Map:</b> Nomads (Mediterranean) (62:15)<br>\n<b>Gamemode:</b> WW2 Age (No Research)" | |
players = list("Dellasloan") | |
world/45 | |
url = "byond://BYOND.world.793821543" | |
server_version = 514 | |
status = "<br>\n<b><a href=\"https://hrzn.fun\" rel=\"nofollow\">Horizon Station</a></b>] — <a href=\"https://discord.hrzn.fun\" rel=\"nofollow\">Discord</a><br>\n<i>(18+) - Med to HighRP - Slower pace, Anthros, Exploration and more!</i><br>\n<br>\nMap: Tramstation<br>\n\[6/80, 6 playing" | |
players = list("Blazette") | |
world/46 | |
url = "byond://BYOND.world.147190353" | |
server_version = 514 | |
status = "<b>Yawn Wider Station</b> — <b>Cryogaia</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): sandbox, respawn, persistence enabled, persistence mapload enabled, AI allowed, ~2 players, hosted by <b>BlackAngelsAce</b>" | |
players = list("KHoffmann") | |
world/47 | |
url = "byond://BYOND.world.899971778" | |
server_version = 514 | |
status = "<b>1GBstation \[BRASIL]</b>] — <b>NSS Cyberiad</b><br>\nServer de Paracode rodando com 1 GB de RAM!<br>\n1:09, Green<br>\n\[(Low-rp) O MELHOR DO BRASIL! <a href=\"https://discord.gg/cXjYCdzR3F\">https://discord.gg/cXjYCdzR3F</a>, vote, <a href=\"https://www.paradisestation.org/wiki\" rel=\"nofollow\">Wiki</a>" | |
players = list("Marco25555") | |
world/48 | |
url = "byond://BYOND.world.1373238263" | |
server_version = 514 | |
status = "<b>Baystation</b> <a href=\"https://bay.ss13.me/\" rel=\"nofollow\">Wiki</a> | <a href=\"https://bay.ss13.me/discord\" rel=\"nofollow\">Discord</a><br>\n<b>Action Roleplay</b> with almost no <b>Two Goats And A Frog</b><br>\nPlaying <b>secret</b> with 0 players" | |
players = list("LiquidRecluse") | |
world/49 | |
url = "byond://BYOND.world.1348786824" | |
server_version = 514 | |
host = "0404a" | |
status = "<img src=\"http://goonhub.com/bee.gif\"><b>SERVER NAME HERE</b> — The classic SS13 experience. — (<a href=\"http://bit.ly/gndscd\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>COGMAP2</b><br>\nMode: <b>secret</b>, respawn allowed" | |
players = list("0404a") | |
world/50 | |
url = "byond://BYOND.world.1096148573" | |
server_version = 513 | |
status = "<b>Toolbox Station</b> (<a href=\"http://toolboxrp.boards.net/\" rel=\"nofollow\">Forums</a>|<a href=\"https://discord.gg/SwXyqCn\" rel=\"nofollow\">Discord</a>)<br>\nMap: Box Station<br>\nRound Time: 10:06<br>\n-LRP, Newbie Friendly<br>\n-High Sec Standard<br>\n-Stun Based Combat" | |
players = list() | |
world/51 | |
url = "byond://BYOND.world.1378289232" | |
server_version = 514 | |
status = "<img src=\"https://coolstation.space/cool_assets/meatvendor.gif\"><b><a href=\"https://coolstation.space\" rel=\"nofollow\">Coolstation Development</a></b> — The hotdog SS13 experience.— (<a href=\"https://discord.gg/Xh3yfs8KGn\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>GEHENNA</b>" | |
players = list() | |
world/52 | |
url = "byond://BYOND.world.1737773169" | |
server_version = 513 | |
status = "<b>MachStation</b> — <b>MachStation NTSS 13</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): extended, no respawn, AI allowed, 1 player, hosted by <b>Mach Entertainment</b>" | |
players = list() | |
world/53 | |
url = "byond://BYOND.world.323080457" | |
server_version = 514 | |
status = "<b>Fallout13: Desert Rose</b> — <b>The Sonoran Wasteland</b> (<a href=\"https://discord.gg/ArQCt65\" rel=\"nofollow\">Desert Rose 2</a>)]<br>\nFallout13 - HRP (Heavy Role Play) - 18+<br>\n\[~1 player, hosted by <b>Corvo</b>" | |
players = list() | |
world/54 | |
url = "byond://BYOND.world.1230641623" | |
server_version = 514 | |
status = "<big><b>Dwarf Fortress 13</b></big>] <a href=\"https://discord.gg/rVK4VgEYmz\" rel=\"nofollow\">DISCORD</a><br>\n<br>\n<img src='https://assets.station13.ru/l/d1.gif'><br>\n<br>\n\[<big>SLAVES TO ARMOK</big>" | |
players = list() | |
world/55 | |
url = "byond://BYOND.world.19730961" | |
server_version = 514 | |
status = "<b>Lumos Station 13</b> — <b>Agender Spess Junk Romeo</b> (<a href=\"https://discord.gg/3ezfTxXwaR\" rel=\"nofollow\">Nostra-13</a>)]<br>\nMRP 18+ Server that isn't (Insert popular server name here) so it's inherently better!<br>\n\[OmegaStation, green alert, 1 player, hos" | |
players = list() | |
world/56 | |
url = "byond://BYOND.world.1037313742" | |
server_version = 514 | |
status = "<b>(MRP-HRP) Sandstorm Station 13 - Trans Colony XXIII</b>] (<a href=\"https://discord.gg/quXTqa6cp9\" rel=\"nofollow\">Sandstorm</a>) (18+)<br>\nExtended with no random events.<br>\n\[Box Station, green alert, 1 playing" | |
players = list() | |
world/57 | |
url = "byond://BYOND.world.1420808687" | |
server_version = 514 | |
status = "<b>NEV Northern Light - Eclipse</b> — (<a href=\"https://eclipse-station.space/\" rel=\"nofollow\">Website<br>\n<small><i>\[18+] Anthro-friendly mix of RP and action! Eris-based HRP with unique content and frequent events!</i></small><br></a>): tyrant, respawn, AI allow" | |
players = list() | |
world/58 | |
url = "byond://BYOND.world.1988502529" | |
server_version = 514 | |
status = "<b>pizzastation</b>] — (<a href=\"\" rel=\"nofollow\">Discord</a>)<br>\n<br>\nSANDBOX MODE: <b>PRACTICE HERE!</b><br>\nRoleplay: \[<b>Medium</b>]<br>\nMap: \[<b>Tramstation</b>" | |
players = list() | |
world/59 | |
url = "byond://BYOND.world.538362774" | |
server_version = 514 | |
status = "<b>Rus Paradise server</b>] — <b>NSS Cyberiad</b> (<a href=\"https://discord.gg/eqMHkStHmQ\" rel=\"nofollow\">Discord</a>)<br>\nRus Paradise<br>\n10:25, Green<br>\n\[РуÑÑкий Ñзык, Medium RP, varied species/jobs, vote, <a href=\"https://www.paradisestation.org/wiki\"" | |
players = list() | |
world/60 | |
url = "byond://BYOND.world.1608342114" | |
server_version = 514 | |
status = "<b>\[RU] Fallout 13 - CBET ATOMA \[REDUX]</b> — Med RP \[https://discord.gg/GEMmJYV]<br>\n: extended, respawn, ~1 player, hosted by <b>Fallout13Team</b>" | |
players = list() | |
world/61 | |
url = "byond://BYOND.world.1321912693" | |
server_version = 514 | |
status = "<b>Felinid Station</b> — (<a href=\"https://discord.gg/FuV6YKkD4K\" rel=\"nofollow\">Discord)]<br>\nРуÑÑкий Ñервер Space Station 13 Ñ ÐºÐ¾ÑˆÐºÐ¾Ð´ÐµÐ²Ð¾Ñ‡ÐºÐ°Ð¼Ð¸ и прочим, 18+, English speakers are welcome too, but you'll be in minority. MRP, ERP,</a>" | |
players = list() | |
world/62 | |
url = "byond://BYOND.world.1295757899" | |
server_version = 514 | |
status = "<center><a href=\"https://discord.gg/wrn6ND4EGw\" rel=\"nofollow\"><big><b>S.T.A.L.K.E.R.: 13</b></big><br>\n<img src=\"https://frosty.space/styles/stalbanhub.png\"></a></center>\nMap: <b>Zona (255x1000)</b><br>\nMode: <b>extended</b><br>" | |
players = list() | |
world/63 | |
url = "byond://BYOND.world.261078322" | |
server_version = 514 | |
status = "<b>Stella Nova</b> — <b>ISEO Endeavour</b> (<a href=\"https://discord.gg/avCuJ9yVxt\" rel=\"nofollow\">Discord</a>): extended, respawn, vote, AI allowed, ~2 players, hosted by <b>Hearth of Hestia staff</b>" | |
players = list() | |
world/64 | |
url = "byond://BYOND.world.1244670861" | |
server_version = 514 | |
status = "<b>Bastion of Hestia - The Great Follyâ„¢</b> — <b>SGV Dagon</b> (<a href=\"https://discord.gg/MHmVtSUawP\" rel=\"nofollow\">Discord</a>): extended, respawn, vote, AI allowed, ~1 player, hosted by <b>CarlManBad</b>" | |
players = list() | |
world/65 | |
url = "byond://BYOND.world.491454346" | |
server_version = 513 | |
status = "" | |
players = list() | |
world/66 | |
url = "byond://BYOND.world.1868362259" | |
server_version = 514 | |
status = "<b>AuStation 13 \[AUSTRALIA/OCEANIA]</b> — <b>Unique Book Observatory LXXXIII</b> (<a href=\"https://austation.net/\" rel=\"nofollow\">AuStation</a>)]<br>\nAuStation is the premiere SS13 server in the Australia/Oceania region.<br>\n\[sandbox, respawn, AI allowed, Austation," | |
players = list() | |
world/67 | |
url = "byond://BYOND.world.1236822520" | |
server_version = 514 | |
status = "<b>Polaris - Heavy Roleplay</b> — <b>Cynosure Station</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): secret, respawn, persistence enabled, persistence mapload enabled, AI allowed, hosted by <b>ss13polaris.com</b>" | |
players = list() | |
world/68 | |
url = "byond://BYOND.world.238875937" | |
server_version = 514 | |
status = "<b>Urist McStation</b> — <b>ICS Nerva</b> - Beginner friendly MRP set on a spaceship (<a href=\"https://discord.gg/0oRsdvoS1DDd5Rv0/\" rel=\"nofollow\">Discord</a>): secret, respawn, vote, AI allowed, hosted by <b>UristMcStation</b>" | |
players = list() | |
world/69 | |
url = "byond://BYOND.world.1525065926" | |
server_version = 514 | |
status = "<b>\[ES] Nexus RP - Beestation</b> — <b>Space Station 13</b>(<a href='https://discord.gg/seUCVkjKes' rel=\"nofollow\">Discord</a>|<a href='http://beestation13.com' rel=\"nofollow\">Website</a>)): secret_extended, 1/200 player, hosted by <b>Crossedfall</b>" | |
players = list() | |
world/70 | |
url = "byond://BYOND.world.1881968177" | |
server_version = 514 | |
status = "<b>NSS Aurora</b> (<a href=\"\" rel=\"nofollow\">Forums</a>): secret, respawn, vote, AI allowed, ~1 player, hosted by <b>yournamehere</b>" | |
players = list() | |
world/71 | |
url = "byond://BYOND.world.145230643" | |
server_version = 514 | |
status = "<b>NSS Exodus</b>: Extended, respawn, AI allowed, ~1 player" | |
players = list() | |
world/72 | |
url = "byond://BYOND.world.83456831" | |
server_version = 514 | |
status = "<b><a href='https://discord.gg/8FZgaS77bH' rel=\"nofollow\">Dead Space 13 Alpha (Official Testing Server) — USG Ishimura</a></b><br>\nMode: <b>Enemy within</b><br>\nRound time: <b>03:03</b>" | |
players = list() | |
world/73 | |
url = "byond://BYOND.world.1178937032" | |
server_version = 514 | |
status = "<b>Vice Station</b> — <b>Sin Station 13</b> (<a href=\"https://discord.gg/fzXYQwzFJz\" rel=\"nofollow\">VICE</a>)]<br>\n(18+) MRP/Action with an oldschool TG twist.<br>\n\[MetaStation, green alert, 2 players" | |
players = list() | |
world/74 | |
url = "byond://BYOND.world.1550700415" | |
server_version = 514 | |
status = "<b>Offical Halo: Space Station Evolved (Med-High RP)</b> — <b>UNSC Outpost</b> (<a href=\"https://projectunsc.org\" rel=\"nofollow\">Forums</a>|<a href=\"https://discord.gg/XEzwgBD\" rel=\"nofollow\">Discord</a>): <b>STARTING</b>, respawn, vote, AI allowed, hosted by <b>BDpuffy420</b>" | |
players = list() | |
world/75 | |
url = "byond://BYOND.world.680109326" | |
server_version = 514 | |
status = "<b>40K-Eipharius - Warhammer 40k RP \[In Dev, Join Discord]</b> — <b>Imperial Edition</b> (<a href=\"https://discord.gg/xthVK85W3M\" rel=\"nofollow\">Discord</a>): <b>STARTING</b>, hosted by <b>Saintess of the Empire</b>" | |
players = list() | |
world/76 | |
url = "byond://BYOND.world.400742581" | |
server_version = 514 | |
status = "<b>\[RU]\[MRP] Corvax</b> — (<a href=\"https://discord.gg/eZ5K9MQx\" rel=\"nofollow\">Discord</a>)]<br>\nИзмененный Skyrat без ERP<br>\n\[MetaStation, ~1 player" | |
players = list() | |
world/77 | |
url = "byond://BYOND.world.2464956" | |
server_version = 514 | |
status = "<b>TeguStation</b> — <b>Roleplay Server</b><br>\nModern and fun codebase for everyone!<br>\nGamemode: secret<br>\nRespawn allowed<br>\n<a href=\"https://forum.tegustation.com/\" rel=\"nofollow\">Forums</a><br>\n<a href=\"https://discord.gg/AzmEhtH\" rel=\"nofollow\">Discord</a>" | |
players = list() | |
world/78 | |
url = "byond://BYOND.world.2134878256" | |
server_version = 514 | |
status = "<b>TemptStation</b> — (<a href=\"https://discord.gg/VhDRKNKYmT\" rel=\"nofollow\">Discord)]<br>\nTesting another codebase!<br>\n\[MetaStation, ~1 player</a>" | |
players = list() | |
world/79 | |
url = "byond://BYOND.world.1953440817" | |
server_version = 514 | |
status = "<b>Furbee Station</b> — <b>Refactor Edition 89</b> (<a href=\"https://discord.gg/69WsShCdxa\" rel=\"nofollow\">Discord</a>)]<br>\nA Furry Bee-Based MRP Station.<br>\n\[Open-Join, ~1 player, Kilo Station, secret_extended, green alert" | |
players = list() | |
world/80 | |
url = "byond://BYOND.world.618271663" | |
server_version = 514 | |
status = "<b>/tg/Station Event Hall \[ENGLISH] \[US-West] \[100% FREE LAG]</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed, 1/250 player" | |
players = list() | |
world/81 | |
url = "byond://BYOND.world.701017159" | |
server_version = 514 | |
status = "<center><a href=\"https://discord.gg/hBEtg4x\" target=\"_blank\" rel=\"nofollow\"><b>Civ13 TDM</b></a></center>\n<br>\n<img src=\"https://i.imgur.com/napac0L.png\"><br>\n<b>Map:</b> Gladiators (00:00)<br>\n<b>Gamemode:</b> Gladiatorial Combat" | |
players = list() | |
world/82 | |
url = "byond://BYOND.world.1818322420" | |
server_version = 514 | |
status = "<b>lenastation13</b> — <b>NSS Gamma</b>: extended, respawn, AI allowed, ~1 player" | |
players = list() | |
world/83 | |
url = "byond://BYOND.world.1373853832" | |
server_version = 514 | |
status = "<b>TemptStation</b> — <b>Forbidden Fruit</b> (<a href=\"https://discord.gg/PF4eKGWpam\" rel=\"nofollow\">Discord</a>)]<br>\nA low admin interference, IC-driven, 18+ ERP/MRP/HRP TG-based server.<br>\n\[Kilo Station, blue alert, 1 player" | |
players = list() | |
world/84 | |
url = "byond://BYOND.world.1974084430" | |
server_version = 514 | |
status = "<b>\[RU] SS220 Paradise WL</b> — <b>NSS Cyberiad</b> (ParaCode)<br>\nModified ParaCode, руÑÑкий Ñзык, redirect to main server if access denied<br>\n5:40, Green<br>\nMedRP, all species, whitelist, <a href=\"https://wiki.ss220.space\" rel=\"nofollow\">Wiki</a>, resp" | |
players = list() | |
world/85 | |
url = "byond://BYOND.world.2113316392" | |
server_version = 513 | |
status = "<b>SinguloStation 13</b> — <b>SS13-A2-CnSi</b> (<a href=\"https://discord.gg/BUM8uRc\" rel=\"nofollow\">Discord</a>) (<a href=\"https://github.com/Whitesands13/Whitesands\" rel=\"nofollow\">Github</a>): extended, respawn, 1 player" | |
players = list() | |
world/86 | |
url = "byond://BYOND.world.1813248715" | |
server_version = 514 | |
status = "<b>NSS Exodus</b>: extended, respawn, AI allowed, ~1 player" | |
players = list() | |
world/87 | |
url = "byond://BYOND.world.12995518" | |
server_version = 514 | |
status = "<b>\[SS13.RU] Crimson Dragon (BeeStation 13, Classic Roleplay)</b> — <b>Carp No-Moon Phi</b>(<a href='https://discord.gg/8maXbEXgM2' rel=\"nofollow\">Discord</a>|<a href='http://beestation13.com' rel=\"nofollow\">Website</a>)): secret, 1/200 player, hosted by <b>SS13.RU Team</b>" | |
players = list() | |
world/88 | |
url = "byond://BYOND.world.101442765" | |
server_version = 514 | |
status = "<b>TCPcommunitySS13</b> — <b>TCP Station</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed, 1/150 player, hosted by <b>TCPCommunity</b>" | |
players = list() | |
world/89 | |
url = "byond://BYOND.world.854404621" | |
server_version = 514 | |
status = "<b>\[ES] Hispania - Baystation</b> by <b>Ume</b> — playing <b>extended</b> on <b>Sev Torch</b> with 0 of 0 alive<br>\n\[<a href=\"\" rel=\"nofollow\">Wiki</a>] \[<a href=\"\" rel=\"nofollow\">Discord</a>] \[<a href=\"\" rel=\"nofollow\">Source</a>]" | |
players = list() | |
world/90 | |
url = "byond://BYOND.world.200447208" | |
server_version = 513 | |
status = "<b>Vesta of Orion - 18+ Roleplay <a href=\"https://discord.gg/sBzsswR\">https://discord.gg/sBzsswR</a></b> — <b>ÿNTSS Dagon</b> (<a href=\"https://forums.baystation12.net/\" rel=\"nofollow\">Forums</a>): extended, respawn, ~1 player, hosted by <b>Alanii</b>" | |
players = list() | |
world/91 | |
url = "byond://BYOND.world.1955272214" | |
server_version = 514 | |
status = "<b>\[US-West] JollyStation \[HRP]</b> (<a href=\"https://discord.gg/fUVZ8np4ty\" rel=\"nofollow\">Discord</a> <a href=\"https://github.com/JollyStation/JollyStation\" rel=\"nofollow\">GitHub</a>) TG-Based code server where Roleplay comes first.Join our Discord for more information.: no respawn" | |
players = list() | |
world/92 | |
url = "byond://BYOND.world.954869089" | |
server_version = 514 | |
host = "Zeldazackman" | |
status = "<b>EU Vore Core</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): extended, respawn, persistence enabled, persistence mapload enabled, vote, AI allowed, ~1 player" | |
players = list() | |
world/93 | |
url = "byond://BYOND.world.51916877" | |
server_version = 514 | |
status = "<b>\[FR] Complexe alpha - tgstation</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed" | |
players = list() | |
world/94 | |
url = "byond://BYOND.world.1883968561" | |
server_version = 514 | |
status = "<b>SinguloStation Red</b> — <b>Bunny Hangar Charlie</b>(<a href='https://discord.gg/z9ttAvA' rel=\"nofollow\">Discord</a>|<a href='http://beestation13.com' rel=\"nofollow\">Website</a>): dynamic, 1/200 player" | |
players = list() | |
world/95 | |
url = "byond://BYOND.world.1811247633" | |
server_version = 513 | |
status = "<b>Hyper Station 13</b> — <b>Poly Base Eta</b> (<a href=\"http://hyperstation13.com//\" rel=\"nofollow\">Website</a>)]<br>\n(18+) An anthropomorphic server, with a focus on slower more roleplay driven interactions! \"Bigger is better!\"<br>\n\[Layenia Station, green alert, ~" | |
players = list() | |
world/96 | |
url = "byond://BYOND.world.957572010" | |
server_version = 514 | |
status = "" | |
players = list() | |
world/97 | |
url = "byond://BYOND.world.271438170" | |
server_version = 514 | |
status = "" | |
players = list() | |
world/98 | |
url = "byond://BYOND.world.1035223712" | |
server_version = 514 | |
status = "<img src=\"http://goonhub.com/bee.gif\"><b><a href=\"https://goonhub.com\" rel=\"nofollow\">Anpstation Anphedrine</a></b> — The classic SS13 experience. — (<a href=\"http://bit.ly/gndscd\" rel=\"nofollow\">Discord</a>)<br>\nMap: <b>NCS Atlas</b><br>\nMode: <b>secret</b>" | |
players = list() | |
world/99 | |
url = "byond://BYOND.world.1072911005" | |
server_version = 514 | |
status = "<b>Citadel Station 13 - Main - Lesbian Death-trap Bravo</b>] (<a href=\"https://citadel-station.net/home\" rel=\"nofollow\">Citadel</a>) (18+)<br>\nThe OG, gameplay-focused furry server that started modern trends. We still exist!<br>\n\[Box Station, green alert, 0 playing" | |
players = list() | |
world/100 | |
url = "byond://BYOND.world.418410498" | |
server_version = 514 | |
status = "<img src=\"https://i.imgur.com/gNgarRJ.gif\"><br>\n<b>Yogstation 13</b> — New Player Friendly — 99% Lag Free!!<br>\n(<a href=\"https://tinyurl.com/yogsfo\" rel=\"nofollow\">Forums</a>|<a href=\"https://tinyurl.com/yogsdis\" rel=\"nofollow\">Discord</a>)<br>\n<br>\n<i>Praise the Clockwork Ju</i>" | |
players = list() | |
world/101 | |
url = "byond://BYOND.world.1216695125" | |
server_version = 514 | |
host = "Ambassadorry" | |
status = "<b>NSS Kerberos</b> (ParaCode)<br>\n<b>STARTING</b><br>\n<a href=\"http://example.org\" rel=\"nofollow\">Wiki</a>, respawn" | |
players = list() | |
world/102 | |
url = "byond://BYOND.world.1278645120" | |
server_version = 514 | |
status = "RU World Server. New features, bugs are fixed and russian players!(<a href=\"https://discord.gg/AJws6smdMR\" rel=\"nofollow\">DISCORD</a>):<br>\n<b>Current President:</b> NanoTrasen, canon, ~2 civilians" | |
players = list() | |
world/103 | |
url = "byond://BYOND.world.1903757627" | |
server_version = 514 | |
status = "<b>/tg/Station Basil \[ENGLISH] \[US-WEST] \[100% LAG FREE]</b> (<a href=\"http://\" rel=\"nofollow\">Default</a>): no respawn, AI allowed" | |
players = list() | |
world/104 | |
url = "byond://BYOND.world.1508070441" | |
server_version = 514 | |
status = "<b>Robot Airstrip Sigma</b><br>\n<b>Intrigue! Survival! Beige!</b><br>\n(<a href=\"http://tetra.furryhelix.co.uk\" rel=\"nofollow\">Website</a>)<br>\n(extended, no respawn, vote, AI: yup, 1/150 player)Hosted by <b>TetraStation.UK</b><br>" | |
players = list() | |
world/105 | |
url = "byond://BYOND.world.1257846678" | |
server_version = 514 | |
status = "<b>Citadel Station 13 - Roleplay</b>] (<a href=\"https://citadel-station.net\" rel=\"nofollow\">Citadel</a>) (18+)<br>\n<a href='https://discord.gg/citadelstation' rel=\"nofollow\">Roleplay focused 18+ server with extensive species choices.</a><br>\n\[Atlas, green alert, 8 players" | |
players = list() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment