diff --git a/battlemetrics.py b/battlemetrics.py index f409317..45bb420 100644 --- a/battlemetrics.py +++ b/battlemetrics.py @@ -54,7 +54,7 @@ async def check_api_scopes(self, token: str = None) -> dict: data = { "token": token } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def pagination(self, page_link:str) -> dict: return await self.helpers._make_request(method="GET", url=page_link) @@ -86,7 +86,7 @@ async def metrics(self, name: str = "games.rust.players", start_date: str = None "metrics[0][resolution]": resolution, "fields[dataPoint]": "name,group,timestamp,value" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def activity_logs(self, filter_bmid: int = None, filter_search: str = None, filter_servers: int = None, blacklist: str = None, whitelist: str = None) -> dict: """Retrieves the activity logs. @@ -119,4 +119,4 @@ async def activity_logs(self, filter_bmid: int = None, filter_search: str = None if filter_bmid: data['filter[players]'] = filter_bmid - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) diff --git a/components/banlist.py b/components/banlist.py index 4423b65..1f100b3 100644 --- a/components/banlist.py +++ b/components/banlist.py @@ -45,7 +45,7 @@ async def create_invite(self, organization_id: int, banlist_id: str, permManage: } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def read_invitation(self, invite_id: str) -> dict: """Allows you to see the information about a specific banlist invite, such as uses. @@ -64,7 +64,7 @@ async def read_invitation(self, invite_id: str) -> dict: "fields[banList]": "name, action", "fields[banListInvite]": "uses" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def invite_list(self, banlist_id: str) -> dict: """Returns all the invites for a specific banlist ID @@ -82,7 +82,7 @@ async def invite_list(self, banlist_id: str) -> dict: "fields[banListInvite]": "uses", "page[size]": "100" } - return await self.helpers. _make_request(method="GET", url=url, data=data) + return await self.helpers. _make_request(method="GET", url=url, params=data) async def delete_invite(self, banlist_id: str, banlist_invite_id: str) -> dict: """Deletes an invite from a targeted banlist @@ -125,7 +125,7 @@ async def exemption_create(self, banid: str, organization_id: int, reason: str = } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def exemption_delete(self, banid: str) -> dict: """Deletes an exemption @@ -165,7 +165,7 @@ async def exemption_info_all(self, banid: str) -> dict: data = { "fields[banExemption]": "reason" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def exemption_update(self, banid: str, exemptionid: str, reason: str) -> dict: """Updates a ban exemption @@ -181,7 +181,7 @@ async def exemption_update(self, banid: str, exemptionid: str, reason: str) -> d banexemption = await self.exemption_info_single(banid=banid, exemptionid=exemptionid) banexemption['data']['attributes']['reason'] = reason url = f"{self.BASE_URL}/bans/{banid}/relationships/exemptions" - return await self.helpers._make_request(method="PATCH", url=url, data=banexemption) + return await self.helpers._make_request(method="PATCH", url=url, json=banexemption) async def create(self, organization_id: int, action: str, autoadd: bool, ban_identifiers: list, native_ban: bool, list_default_reasons: list, ban_list_name: str) -> dict: """Creates a new banlist for your targeted organization. @@ -229,7 +229,7 @@ async def create(self, organization_id: int, action: str, autoadd: bool, ban_ide } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def accept_invite(self, code: str, action: str, autoadd: bool, ban_identifiers: list, native_ban: bool, list_default_reasons: list, organization_id: str, organization_owner_id: str) -> dict: """Accepts an invitation to subscribe to a banlist. @@ -278,7 +278,7 @@ async def accept_invite(self, code: str, action: str, autoadd: bool, ban_identif } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def unsubscribe(self, banlist_id: str, organization_id: str) -> dict: """Unscubscribes from a banlist @@ -305,7 +305,7 @@ async def list(self) -> dict: "include": "server,organization,owner", "page[size]": "100" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def subscribed_orgs(self, banlist_id: str) -> dict: """Lists all the organizations that are subscribed to the targeted banlist. You require manage perms to use this list (or be the owner) @@ -321,7 +321,7 @@ async def subscribed_orgs(self, banlist_id: str) -> dict: "include": "server,organization,owner", "page[size]": "100" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def subscribers(self, banlist_id: str, organization_id: str) -> dict: """Gets the subscriber information for a specific banlist. @@ -338,7 +338,7 @@ async def subscribers(self, banlist_id: str, organization_id: str) -> dict: data = { "include": "organization, owner, server" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def read(self, banlist_id: str) -> dict: """Retrieves the name of a banlist by the banlist id @@ -353,7 +353,7 @@ async def read(self, banlist_id: str) -> dict: data = { "include": "owner" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def update(self, banlist_id: str, organization_id: str, action: str = None, autoadd: bool = None, ban_identifiers: list = None, native_ban: bool = None, list_default_reasons: list = None, ban_list_name: str = None) -> dict: """Updates the targeted banlist with the altered information you supply @@ -390,7 +390,7 @@ async def update(self, banlist_id: str, organization_id: str, action: str = None if ban_list_name: banlist['attributes']['name'] = ban_list_name url = f"{self.BASE_URL}/ban-lists/{banlist_id}/relationships/organizations/{organization_id}" - return await self.helpers._make_request(method="PATCH", url=url, data=banlist) + return await self.helpers._make_request(method="PATCH", url=url, json=banlist) async def get_list(self, banlist_id: str = None) -> dict: """Returns the banlist information of the targeted banlist @@ -406,8 +406,9 @@ async def get_list(self, banlist_id: str = None) -> dict: "page[size]": "100", "include": "organization,owner,server" } - banlists = await self.helpers._make_request(method="GET", url=url, data=data) - for banlist in banlists['data']: + banlists = await self.helpers._make_request(method="GET", url=url, params=data) + for banlist in banlists: if banlist['id'] == banlist_id: return banlist return banlists + diff --git a/components/bans.py b/components/bans.py index 8f71866..b30a746 100644 --- a/components/bans.py +++ b/components/bans.py @@ -55,7 +55,7 @@ async def update(self, banid: str, reason: str = None, note: str = None, append: ban['data']['attributes']['note'] += f"\n{note}" else: ban['data']['attributes']['note'] = note - return await self.helpers._make_request(method="PATCH", url=url, data=ban) + return await self.helpers._make_request(method="PATCH", url=url, json=ban) async def search(self, search: str = None, player_id: int = None, banlist: str = None, expired: bool = True, exempt: bool = False, server: int = None, organization_id: int = None, userIDs: str = None): """List, search and filter existing bans. @@ -98,7 +98,7 @@ async def search(self, search: str = None, player_id: int = None, banlist: str = data['filter[users]'] = userIDs url = f"{self.BASE_URL}/bans" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def native_ban_info(self, server: int = None, ban: str = None) -> dict: @@ -124,7 +124,7 @@ async def native_ban_info(self, server: int = None, ban: str = None) -> dict: if server: data["filter[server]"] = server url = f"{self.BASE_URL}/bans-native" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def native_force_update(self, native_id: str) -> dict: """Forces an update on a native ban diff --git a/components/flags.py b/components/flags.py index 0fb5558..5c6f8b9 100644 --- a/components/flags.py +++ b/components/flags.py @@ -47,7 +47,7 @@ async def create(self, color: str, description: str, icon_name: str, flag_name: } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def delete(self, flag_id: str) -> dict: """Delete an existing flag. @@ -89,7 +89,7 @@ async def list(self, filter_personal: bool = False) -> dict: } if filter_personal: data["filter[personal]"] = str(filter_personal).lower() - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def update(self, flag_id: str, color: str, description: str, icon_name: str, flag_name: str) -> dict: """Create a new flag @@ -116,4 +116,4 @@ async def update(self, flag_id: str, color: str, description: str, icon_name: st } } } - return await self.helpers._make_request(method="PATCH", url=url, data=data) + return await self.helpers._make_request(method="PATCH", url=url, json=data) diff --git a/components/game_info.py b/components/game_info.py index 6799b02..0d96c77 100644 --- a/components/game_info.py +++ b/components/game_info.py @@ -22,7 +22,7 @@ async def features(self, game: str = None) -> dict: if game: data['filter[game]'] = game url = f"{self.BASE_URL}/game-features" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def feature_options(self, feature_id: str, sort: str = "players") -> dict: """Gets the game feature options. @@ -39,7 +39,7 @@ async def feature_options(self, feature_id: str, sort: str = "players") -> dict: "sort": sort } url = f"{self.BASE_URL}/game-features/{feature_id}/relationships/options" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def list(self, game: str = None) -> dict: """Lists all the games Battlemetrics can view. @@ -56,7 +56,7 @@ async def list(self, game: str = None) -> dict: if game: data['fields[game]'] = game url = f"{self.BASE_URL}/games" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def info(self, game_id: str, game: str = None) -> dict: """Gets information on a specific game. @@ -74,4 +74,4 @@ async def info(self, game_id: str, game: str = None) -> dict: if game: data['fields[game]'] = game url = f"{self.BASE_URL}/games/{game_id}" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) diff --git a/components/helpers.py b/components/helpers.py index c505c2c..d6ea71a 100644 --- a/components/helpers.py +++ b/components/helpers.py @@ -7,8 +7,7 @@ class Helpers: - - + def __init__(self, api_key: str) -> None: self.headers = {"Authorization": f"Bearer {api_key}"} @@ -46,7 +45,6 @@ async def _parse_octet_stream(self, response) -> dict: async def _replace_char_at_position(self, input_string, position, new_character): return input_string[:position] + new_character + input_string[position + 1:] - async def calculate_future_date(input_string): # Extract the numeric part and unit from the input string number = int(input_string[:-1]) @@ -72,93 +70,69 @@ async def calculate_future_date(input_string): else: return None - - async def _make_request(self, method: str, url: str, data: dict = None) -> dict: + async def _make_request(self, method: str, url: str, params: dict = None, json:dict= None) -> dict: """Queries the API and spits out the response. Args: method (str): One of: GET, POST, PATCH, DELETE url (str): The endpoint/url you wish to query. - data (dict, optional): Any params or json data you wish to send to enhance your experience?. Defaults to None. + params (dict, optional): Any params you wish to send to enhance your experience?. Defaults to None. + json (dict, optional): json data you wish to send to enhance your experience?. Defaults to None. Raises: Exception: Doom and gloom. Returns: dict: The response from the server. """ - + async with aiohttp.ClientSession(headers=self.headers) as session: - method_list = ["POST", "PATCH"] - if method in method_list: - async with session.request(method=method, url=url, json=data) as r: + async with session.request(method=method, url=url, json=json, params=params) as r: + if r: response_content = await r.content.read() - if r.status == '429': - print( - "You're being rate limited by the API. Please wait a minute before trying again.") - return - try: - response = json.loads(response_content) - except: - json_string = response_content.decode('utf-8') - json_dict = None - loops = 0 - while not json_dict: - if loops == 100000: - print("Loop count reached..") - break - try: - json_dict = json.loads(json_string) - except json.decoder.JSONDecodeError as e: - expecting = e.args[0].split()[1] - expecting.replace("'", "") - expecting.replace("\"", "") - if len(expecting) == 3: - expecting = expecting.replace("'", "") - else: - expecting = expecting.split() - expecting = f"\"{expecting[0]}\":" - json_string = await self._replace_char_at_position(json_string, e.pos, expecting) - loops += 1 - response = json_dict - return response - else: - async with session.request(method=method, url=url, params=data) as r: + response_status = r.status content_type = r.headers.get('content-type', '') - if r.status == '429': - print( - "You're being rate limited by the API. Please wait a minute before trying again.") - return - if 'json' in content_type: - try: - response = await r.json() - except: - json_string = response_content.decode('utf-8') - json_dict = None - loops = 0 - while not json_dict: - if loops == 100000: - print("Loop count reached..") - break - try: - json_dict = json.loads(json_string) - except json.decoder.JSONDecodeError as e: - expecting = e.args[0].split()[1] - expecting.replace("'", "") - expecting.replace("\"", "") - if len(expecting) == 3: - expecting = expecting.replace("'", "") - else: - expecting = expecting.split() - expecting = f"\"{expecting[0]}\":" - json_string = await self._replace_char_at_position(json_string, e.pos, expecting) - loops += 1 - response = json_dict - elif 'octet-stream' in content_type: - response = await self._parse_octet_stream(await r.content.read()) - elif "text/html" in content_type: - response = await r.content.read() - response = str(response) - response = response.replace("'", "") - response = response.replace("b", "") - else: - raise Exception( - f"Unsupported content type: {content_type}") - return response \ No newline at end of file + else: + print("Some error message here?") + + if response_status == '429': + print("You're being rate limited by the API. Please wait a minute before trying again.") + return + if 'json' in content_type: + #Try and convert the response to something we can handle. + try: + response = await response_content.json() + except: + #Attempt to fix any errors in the json response. + response = await self.exception_handler(response_content) + #This is dedicated if the user is attempting to download a banlist. Currently only allows RUST banlists. + elif 'octet-stream' in content_type: + response = await self._parse_octet_stream(await response.content.read()) + #Sometimes the API returns HTML responses. Lets handle those. + elif "text/html" in content_type: + response = await response.text() + response = response.replace("'", "").replace("b", "") + else: + raise Exception(f"Unsupported content type: {content_type}") + return response + + #This function attempts to find and fix any errors in the JSON response. + async def exception_handler(self, response_content): + json_string = response_content.decode('utf-8') + json_dict = None + loops = 0 + while not json_dict: + if loops == 100000: + print("Loop count reached..") + break + try: + json_dict = json.loads(json_string) + except json.decoder.JSONDecodeError as e: + expecting = e.args[0].split()[1] + expecting.replace("'", "") + expecting.replace("\"", "") + if len(expecting) == 3: + expecting = expecting.replace("'", "") + else: + expecting = expecting.split() + expecting = f"\"{expecting[0]}\":" + json_string = await self._replace_char_at_position(json_string, e.pos, expecting) + loops += 1 + return json_dict diff --git a/components/notes.py b/components/notes.py index c778223..1c15e0d 100644 --- a/components/notes.py +++ b/components/notes.py @@ -38,7 +38,7 @@ async def list(self, player_id: int, filter_personal: bool = False) -> dict: } if filter_personal: data["filter[personal]"] = str(filter_personal).lower() - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def update(self, player_id: int, note_id: str, note: str, shared: bool, append: bool = False) -> dict: @@ -69,7 +69,7 @@ async def update(self, player_id: int, note_id: str, note: str, shared: bool, ap } } } - return await self.helpers._make_request(method="PATCH", url=url, data=data) + return await self.helpers._make_request(method="PATCH", url=url, json=data) async def info(self, player_id: int, note_id: str) -> dict: diff --git a/components/organization.py b/components/organization.py index 2036903..c99b84c 100644 --- a/components/organization.py +++ b/components/organization.py @@ -23,7 +23,7 @@ async def info(self, organization_id: int) -> dict: data = { "include": "organizationUser,banList,role,organizationStats" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def stats(self, organization_id: int, start: str, end: str, game: str = None) -> dict: """Gets the player stats for the organization @@ -49,7 +49,7 @@ async def stats(self, organization_id: int, start: str, end: str, game: str = No } if game: data["filter[game]"] = game - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def friends_list(self, organization_id: str, filter_accepted: bool = True, filter_origin: bool = True, filter_name: str = None, filter_reciprocated: bool = True) -> dict: """Gets all the organization friends. @@ -73,7 +73,7 @@ async def friends_list(self, organization_id: str, filter_accepted: bool = True, } if filter_name: data['filter[name]'] = filter_name - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def friend(self, organization_id: int, friend_organization_id: int) -> dict: """Gets the friend information for your organization. @@ -89,7 +89,7 @@ async def friend(self, organization_id: int, friend_organization_id: int) -> dic data = { "include": "organization,playerFlag,organizationStats" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def friend_update(self, organization_id: int, friend_organization_id: int, identifiers: list, playerflag: str, shared_notes: bool = True, accepted: bool = True) -> dict: """Updates your organizations friendship. @@ -116,7 +116,7 @@ async def friend_update(self, organization_id: int, friend_organization_id: int, } } } - return await self.helpers._make_request(method="PATCH", url=url, data=data) + return await self.helpers._make_request(method="PATCH", url=url, json=data) async def friend_create(self, organization_id: int, friendly_org: int, identifiers: list, shared_notes: bool = True) -> dict: """Creates a new friend invite to the targeted organization ID @@ -156,7 +156,7 @@ async def friend_create(self, organization_id: int, friendly_org: int, identifie } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def friend_delete(self, organization_id: int, friends_id: int) -> dict: """Deletes a friendship @@ -193,7 +193,7 @@ async def player_stats(self, organization_id: int, start_date: str = None, end_d "filter[game]": "rust", "filter[range]": f"{start_date}:{end_date}" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def commands_activity(self, organization_id: int, summary: bool = False, users: str = None, commands: str = None, time_start: str = None, time_end: str = None, servers: int = None) -> dict: """Grabs all the command activity related to the targeted organization @@ -228,7 +228,7 @@ async def commands_activity(self, organization_id: int, summary: bool = False, u if servers: data['filter[servers]'] = servers url = f"{self.BASE_URL}/organizations/{organization_id}/relationships/command-stats" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def user_organization_view(self) -> dict: """Retrieves the organizations the current API token can view. @@ -243,4 +243,4 @@ async def user_organization_view(self) -> dict: "include": "organizationUser,banList,organizationStats" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) diff --git a/components/player.py b/components/player.py index 60adfd4..d12aa5b 100644 --- a/components/player.py +++ b/components/player.py @@ -24,7 +24,7 @@ async def identifiers(self, player_id: int) -> dict: "include": "player,identifier", "page[size]": "100" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def search(self, search: str = None, filter_game: str = None, filter_online: bool = False, filter_servers: int = None, filter_organization: int = None, filter_public: bool = False, flag: str = None) -> dict: """Grabs a list of players based on the filters provided. For accurate information, filter by server or organization. @@ -67,7 +67,7 @@ async def search(self, search: str = None, filter_game: str = None, filter_onlin if filter_game: data['server']['game'] = filter_game - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def info(self, identifier: int) -> dict: @@ -88,7 +88,7 @@ async def info(self, identifier: int) -> dict: "include": "identifier,server,playerCounter,playerFlag,flagPlayer" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def play_history(self, player_id: int, server_id: int, start_time: str = None, end_time: str = None) -> dict: @@ -117,7 +117,7 @@ async def play_history(self, player_id: int, server_id: int, start_time: str = N "start": start_time, "stop": end_time } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def server_info(self, player_id: int, server_id: int) -> dict: """Returns server specifics for the given player and server. @@ -155,7 +155,7 @@ async def match_identifiers(self, identifier: str, identifier_type: str = None) } ] } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def session_history(self, player_id: int, filter_server: str = None, filter_organization: str = None) -> dict: """Returns player's session history. @@ -177,7 +177,7 @@ async def session_history(self, player_id: int, filter_server: str = None, filte data["filter[servers]"] = filter_server if filter_organization: data["filter[organizations]"] = filter_organization - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def add_flag(self, player_id: int, flag_id: str = None) -> dict: """Creates or adds a flag to the targeted players profile. @@ -199,7 +199,7 @@ async def add_flag(self, player_id: int, flag_id: str = None) -> dict: } if flag_id: data['data'][0]['id'] = flag_id - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def flags(self, player_id: int) -> dict: """Returns all the flags on a players profile @@ -215,7 +215,7 @@ async def flags(self, player_id: int) -> dict: "include": "playerFlag" } url = f"{self.BASE_URL}/players/{player_id}/relationships/flags" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def delete_flag(self, player_id: int, flag_id: str) -> dict: """Deletes a targeted flag from a targeted player ID @@ -262,7 +262,7 @@ async def coplay_info(self, player_id: int, time_start: str = None, time_end: st if server_names: data["filter[servers]"] = server_names url = f"{self.BASE_URL}/players/{player_id}/relationships/coplay" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def quick_match(self, identifier: str, identifier_type: str) -> dict: """Player Quick Match Identifiers @@ -296,7 +296,7 @@ async def quick_match(self, identifier: str, identifier_type: str) -> dict: ] } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def add_ban(self, reason: str, note: str, org_id: str, banlist: str, server_id: str, @@ -397,7 +397,7 @@ async def add_ban(self, reason: str, note: str, org_id: str, banlist: str, serve if included['attributes']['type'] == "steamID": data['data']['attributes']['identifiers'].append(int(included['id'])) url = f"{self.BASE_URL}/bans" - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def add_note(self, note: str, organization_id: int, player_id: int, shared: bool = True) -> dict: """Create a new note @@ -429,4 +429,4 @@ async def add_note(self, note: str, organization_id: int, player_id: int, shared } } } - return await self.helpers._make_request(method="POST", url=url, data=data) \ No newline at end of file + return await self.helpers._make_request(method="POST", url=url, json=data) \ No newline at end of file diff --git a/components/server.py b/components/server.py index 85337aa..a890f06 100644 --- a/components/server.py +++ b/components/server.py @@ -34,7 +34,7 @@ async def leaderboard_info(self, server_id: int, start: str = None, end: str = if player: data['filter[player]'] = player url = f"{self.BASE_URL}/servers/{server_id}/relationships/leaderboards/time" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def search(self,*, search:str = None, @@ -177,7 +177,7 @@ async def search(self,*, count += 1 if features: url += f"?{features}" - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def create(self, server_ip: str, server_port: str, port_query: str, game: str, server_gsp: str = None, organization_id: int = None, banlist_id: str = None, server_group: str = None) -> dict: """Add a server to the system. @@ -215,7 +215,7 @@ async def create(self, server_ip: str, server_port: str, port_query: str, game: } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def enable_rcon(self, server_id: int) -> dict: # This endpoint is not completed by the creator of this wrapper. @@ -249,7 +249,7 @@ async def console_command(self, server_id: int, command: str) -> dict: } } } - return await self.helpers._make_request(method="POST", url=url, data=data) + return await self.helpers._make_request(method="POST", url=url, json=data) async def send_chat(self, server_id: int, message: str, sender_name: str) -> dict: """ @@ -330,7 +330,7 @@ async def info(self, server_id: int) -> dict: "include": "player,identifier,session,serverEvent,uptime:7,uptime:30,uptime:90,serverGroup,serverDescription,organization,orgDescription,orgGroupDescription" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def rank_history(self, server_id: int, start_time: str = None, end_time: str = None) -> dict: """Server Rank History @@ -354,7 +354,7 @@ async def rank_history(self, server_id: int, start_time: str = None, end_time: s "start": start_time, "stop": end_time } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def group_rank_history(self, server_id: int, start_time: str = None, end_time: str = None) -> dict: """Group Rank History. The server must belong to a group. @@ -378,7 +378,7 @@ async def group_rank_history(self, server_id: int, start_time: str = None, end_t "start": start_time, "end": end_time } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def time_played_history(self, server_id: int, start_time: str = None, end_time: str = None) -> dict: """Time Played History @@ -402,7 +402,7 @@ async def time_played_history(self, server_id: int, start_time: str = None, end_ "start": start_time, "stop": end_time } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def first_time_played_history(self, server_id: int, start_time: str = None, end_time: str = None) -> dict: """First Time Player History @@ -426,7 +426,7 @@ async def first_time_played_history(self, server_id: int, start_time: str = None "start": start_time, "end": end_time } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def unique_players_history(self, server_id: int, start_time: str = None, end_time: str = None) -> dict: """Unique Player History @@ -450,7 +450,7 @@ async def unique_players_history(self, server_id: int, start_time: str = None, e "start": start_time, "end": end_time } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def session_history(self, server_id: int, start_time: str = None, end_time: str = None) -> dict: """Session history @@ -475,7 +475,7 @@ async def session_history(self, server_id: int, start_time: str = None, end_time "stop": end_time, "include": "player" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def force_update(self, server_id: int) -> dict: """Force Update will cause us to immediately queue the server to be queried and updated. This is limited to subscribers and users who belong to the organization that owns the server if it is claimed. @@ -514,7 +514,7 @@ async def outage_history(self, server_id: int, uptime: str = "89", start_time: s "filter[range]": f"{start_time}:{end_time}", "include": f"uptime:{uptime}" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def downtime_history(self, server_id: int, resolution: str = "59", start_time: str = None, end_time: str = None) -> dict: """Downtime History. Value is number of seconds the server was offline during that period. The default resolution provides daily values (1439 minutes). @@ -541,7 +541,7 @@ async def downtime_history(self, server_id: int, resolution: str = "59", start_t "stop": f"{end_time}", "resolution": f"{resolution}" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def player_count_history(self, server_id: int, start_time: str = None, end_time: str = None, resolution: str = "raw") -> dict: @@ -568,4 +568,4 @@ async def player_count_history(self, server_id: int, start_time: str = None, end "stop": end_time, "resolution": resolution } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) diff --git a/components/session.py b/components/session.py index 0265938..ef5a3f6 100644 --- a/components/session.py +++ b/components/session.py @@ -35,7 +35,7 @@ async def info(self, filter_server: int = None, filter_game: str = None, filter_ data["filter[players]"] = filter_player if filter_identifiers: data["filter[identifiers]"] = filter_identifiers - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) async def coplay(self, sessionid: str) -> dict: """Returns a list of sessions that were active during the same time as the provided session id. @@ -51,5 +51,5 @@ async def coplay(self, sessionid: str) -> dict: "include": "identifier,server,player", "page[size]": "99" } - return await self.helpers._make_request(method="GET", url=url, data=data) + return await self.helpers._make_request(method="GET", url=url, params=data) diff --git a/example.json b/example.json index 145873b..0d3ace9 100644 --- a/example.json +++ b/example.json @@ -1,1728 +1,2343 @@ { - "data": { - "type": "player", - "id": "579979635", - "attributes": { - "id": "579979635", - "name": "Gnomeslayer#5551 - Cow", - "private": false, - "positiveMatch": false, - "createdAt": "2018-06-15T23:49:13.749Z", - "updatedAt": "2018-06-15T23:49:13.749Z" - }, - "relationships": { - "organizations": { - "data": [ - { - "type": "organization", - "id": "878" - }, - { - "type": "organization", - "id": "8218" - }, - { - "type": "organization", - "id": "13771" - }, - { - "type": "organization", - "id": "17965" - }, - { - "type": "organization", - "id": "18611" - }, - { - "type": "organization", - "id": "25433" - }, - { - "type": "organization", - "id": "28643" - }, - { - "type": "organization", - "id": "61559" - }, - { - "type": "organization", - "id": "67589" - } - ] - } - } - }, - "included": [ + "data": [ { - "type": "identifier", - "id": "518771688", + "type": "session", + "id": "f1b6c1b4-b159-11ee-9660-c09ea9afa453", "attributes": { - "type": "ip", - "identifier": "120.156.216.168", - "lastSeen": "2023-10-07T01:19:46.311Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2023-10-07T01:19:46.309Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-12T14:50:36.055Z", + "stop": "2024-01-12T16:36:07.132Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "61559" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "538312543" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "60023070", + "type": "session", + "id": "e3b67964-b156-11ee-988e-a504aae9edbe", "attributes": { - "type": "steamID", - "identifier": "76561198151275725", - "lastSeen": "2023-10-07T01:19:46.125Z", - "private": true, - "metadata": { - "profile": { - "steamid": "76561198151275725", - "communityvisibilitystate": 3, - "profilestate": 1, - "personaname": "Gnomeslayer#5551 - Cow", - "commentpermission": 2, - "profileurl": "https://steamcommunity.com/profiles/76561198151275725", - "avatar": "https://avatars.cloudflare.steamstatic.com/6a991cedbf9caf7e0dfd32c5f17f13820c818bf8.jpg", - "avatarmedium": "https://avatars.cloudflare.steamstatic.com/6a991cedbf9caf7e0dfd32c5f17f13820c818bf8_medium.jpg", - "avatarfull": "https://avatars.cloudflare.steamstatic.com/6a991cedbf9caf7e0dfd32c5f17f13820c818bf8_full.jpg", - "avatarhash": "6a991cedbf9caf7e0dfd32c5f17f13820c818bf8", - "personastate": 1, - "realname": "Gnomeslayer", - "primaryclanid": "103582791464640285", - "timecreated": 1408772179, - "personastateflags": 0, - "gameserverip": "95.214.180.69:28055", - "gameserversteamid": "90176944703426589", - "gameextrainfo": "Rust", - "gameid": "252490", - "api": true, - "xml": true, - "isLimitedAccount": false - }, - "bans": { - "SteamId": "76561198151275725", - "CommunityBanned": false, - "VACBanned": false, - "NumberOfVACBans": 0, - "DaysSinceLastBan": 0, - "NumberOfGameBans": 0, - "EconomyBan": "none" - }, - "gameInfo": { - "steamid": "76561198151275725", - "lastCheck": "2023-10-07T01:19:51.171Z" - } - } + "start": "2024-01-12T14:28:44.075Z", + "stop": "2024-01-12T14:47:36.247Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "878" - }, - { - "type": "organization", - "id": "8218" - }, - { - "type": "organization", - "id": "13771" - }, - { - "type": "organization", - "id": "17965" - }, - { - "type": "organization", - "id": "18611" - }, - { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" }, { - "type": "organization", - "id": "28643" + "type": "identifier", + "id": "225817197" }, { - "type": "organization", - "id": "61559" + "type": "identifier", + "id": "225817198" }, { - "type": "organization", - "id": "67589" + "type": "identifier", + "id": "538312543" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "60023071", + "type": "session", + "id": "ee8f208d-b153-11ee-bbfa-85cf35508129", "attributes": { - "type": "BEGUID", - "identifier": "63e1de56b43326cf8b3a61067289a4ad", - "lastSeen": "2023-10-07T01:19:46.125Z", - "private": true, - "metadata": null + "start": "2024-01-12T14:07:33.782Z", + "stop": "2024-01-12T14:25:56.093Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "878" - }, - { - "type": "organization", - "id": "8218" - }, - { - "type": "organization", - "id": "13771" - }, - { - "type": "organization", - "id": "17965" - }, - { - "type": "organization", - "id": "18611" - }, - { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" }, { - "type": "organization", - "id": "28643" + "type": "identifier", + "id": "225817197" }, { - "type": "organization", - "id": "61559" + "type": "identifier", + "id": "225817198" }, { - "type": "organization", - "id": "67589" + "type": "identifier", + "id": "538312543" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "290139315", + "type": "session", + "id": "4fc2751e-b152-11ee-9ee2-c12102f3bac6", "attributes": { - "type": "name", - "identifier": "Gnomeslayer#5551 - Cow", - "lastSeen": "2023-10-07T01:19:46.125Z", - "private": false, - "metadata": null + "start": "2024-01-12T13:55:57.864Z", + "stop": "2024-01-12T14:00:33.771Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "538312543" + }, + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" } } } }, { - "type": "identifier", - "id": "493827356", + "type": "session", + "id": "5cb16ebf-b0f9-11ee-9300-01b73740233e", "attributes": { - "type": "ip", - "identifier": "120.147.23.58", - "lastSeen": "2023-07-11T10:04:19.177Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2023-07-11T10:04:19.301Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-12T03:19:14.354Z", + "stop": "2024-01-12T04:36:03.499Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "13771" + "type": "identifier", + "id": "225817196" }, { - "type": "organization", - "id": "61559" + "type": "identifier", + "id": "225817197" }, { - "type": "organization", - "id": "67589" + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "483300978", + "type": "session", + "id": "1ba10202-b0f4-11ee-8bc4-e6e4ed1c24f7", "attributes": { - "type": "ip", - "identifier": "120.147.23.43", - "lastSeen": "2023-04-24T01:34:02.277Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2023-04-24T01:34:02.275Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-12T02:41:37.710Z", + "stop": "2024-01-12T03:14:38.535Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "13771" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "437881949", + "type": "session", + "id": "448ee2de-af53-11ee-86ce-91ee59b038bf", "attributes": { - "type": "ip", - "identifier": "124.189.206.122", - "lastSeen": "2023-02-15T07:30:41.675Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2023-02-15T07:30:41.785Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-10T00:57:46.242Z", + "stop": "2024-01-10T01:30:46.942Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "13771" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "409592323", + "type": "session", + "id": "38520495-af14-11ee-b7d3-d752c3e1cbca", "attributes": { - "type": "ip", - "identifier": "1.120.119.126", - "lastSeen": "2022-10-09T22:09:18.616Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2022-10-09T22:09:18.729Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-09T17:26:27.417Z", + "stop": "2024-01-09T20:24:00.849Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "13771" + "type": "identifier", + "id": "225817196" }, { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "400763869", + "type": "session", + "id": "d14a1758-ae98-11ee-8503-2a68daa26056", "attributes": { - "type": "ip", - "identifier": "124.189.228.127", - "lastSeen": "2022-06-22T04:01:51.165Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2022-06-22T04:01:51.286Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-09T02:43:06.461Z", + "stop": "2024-01-09T03:53:00.975Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "394060134", + "type": "session", + "id": "853fed1c-ae6f-11ee-b302-ce21d18c649c", "attributes": { - "type": "ip", - "identifier": "124.189.248.34", - "lastSeen": "2022-05-17T01:19:10.050Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2022-05-17T01:19:10.301Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-08T21:47:29.522Z", + "stop": "2024-01-08T22:28:07.902Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "312265643", + "type": "session", + "id": "5dcdd3e2-ae38-11ee-9fe1-52021a9916cb", "attributes": { - "type": "ip", - "identifier": "124.189.207.245", - "lastSeen": "2022-04-24T18:27:06.084Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2022-04-24T18:27:06.205Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-08T15:12:41.023Z", + "stop": "2024-01-08T17:28:16.234Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "328424982", + "type": "session", + "id": "722def7c-ae2f-11ee-a80d-341bc96cc973", "attributes": { - "type": "name", - "identifier": "Gnomeslayer#5551 - Cow", - "lastSeen": "2022-03-20T16:20:43.379Z", - "private": false, - "metadata": null + "start": "2024-01-08T14:08:49.737Z", + "stop": "2024-01-08T15:06:34.655Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" } } } }, { - "type": "identifier", - "id": "309865578", + "type": "session", + "id": "03c10442-ad99-11ee-8649-858fe9443271", "attributes": { - "type": "ip", - "identifier": "124.189.208.170", - "lastSeen": "2022-02-15T03:46:09.196Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2022-02-15T03:46:09.327Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-07T20:11:59.964Z", + "stop": "2024-01-07T23:43:48.730Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "298284765", + "type": "session", + "id": "9c7f404b-ad7e-11ee-a7d5-94cf0d2151d1", "attributes": { - "type": "ip", - "identifier": "124.178.35.103", - "lastSeen": "2022-01-31T01:44:06.073Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2022-01-31T01:44:06.181Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2024-01-07T17:02:59.813Z", + "stop": "2024-01-07T17:44:38.533Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "297905980", + "type": "session", + "id": "5fa6cf9d-ad66-11ee-a06e-f2a9074df349", "attributes": { - "type": "name", - "identifier": "[Admin] Gnomeslayer#5551 - Cow", - "lastSeen": "2022-01-03T05:02:41.283Z", - "private": false, - "metadata": null + "start": "2024-01-07T14:09:29.810Z", + "stop": "2024-01-07T16:07:06.367Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" } } } }, { - "type": "identifier", - "id": "299913366", + "type": "session", + "id": "0220802e-acc4-11ee-95be-5caa2fff0298", "attributes": { - "type": "name", - "identifier": "[UZ] Gnomeslayer#5551 - Cow", - "lastSeen": "2021-12-26T13:23:41.024Z", - "private": false, - "metadata": null + "start": "2024-01-06T18:47:14.431Z", + "stop": "2024-01-06T21:32:02.343Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" } } } }, { - "type": "identifier", - "id": "298791908", + "type": "session", + "id": "a13f6da0-ac02-11ee-8ce6-2110db0af4c5", "attributes": { - "type": "name", - "identifier": "[DOG] Gnomeslayer#5551 - Cow", - "lastSeen": "2021-12-21T16:40:57.223Z", - "private": false, - "metadata": null + "start": "2024-01-05T19:42:59.026Z", + "stop": "2024-01-05T22:06:24.025Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } - } - } - }, - { - "type": "identifier", - "id": "297156615", - "attributes": { - "type": "ip", - "identifier": "120.156.252.25", - "lastSeen": "2021-12-18T12:24:09.944Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-12-18T12:24:10.049Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" } } + } + }, + { + "type": "session", + "id": "26474e35-ab77-11ee-b0a7-2ddd6d2173e5", + "attributes": { + "start": "2024-01-05T03:04:32.672Z", + "stop": "2024-01-05T04:13:00.840Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "297711858", + "type": "session", + "id": "419813af-ab35-11ee-93cc-cae72e94c00c", "attributes": { - "type": "name", - "identifier": "[fm] Gnomeslayer#5551 - Cow", - "lastSeen": "2021-12-16T02:04:27.581Z", - "private": false, - "metadata": null + "start": "2024-01-04T19:12:51.716Z", + "stop": "2024-01-04T23:01:32.217Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" } } } }, { - "type": "identifier", - "id": "295708215", + "type": "session", + "id": "a2d2469f-a523-11ee-a4dd-e6d1c04e0f96", "attributes": { - "type": "ip", - "identifier": "120.156.228.95", - "lastSeen": "2021-12-12T14:01:00.051Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-12-12T14:01:00.467Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-12-28T01:51:36.919Z", + "stop": "2023-12-28T02:58:47.434Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3298068" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } } }, { - "type": "identifier", - "id": "296864513", + "type": "session", + "id": "56ab3a8d-a439-11ee-b41b-6f215b51ecf3", "attributes": { - "type": "name", - "identifier": "[Admon] Gnomeslayer#5551 - Cow", - "lastSeen": "2021-12-12T14:01:00.051Z", - "private": false, - "metadata": null + "start": "2023-12-26T21:54:26.921Z", + "stop": "2023-12-26T22:15:34.513Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3260244" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + }, + { + "type": "identifier", + "id": "534217682" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "8218" } } } }, { - "type": "identifier", - "id": "288673470", + "type": "session", + "id": "b81ebeaf-a429-11ee-bafa-bce6997542e4", "attributes": { - "type": "ip", - "identifier": "124.189.222.179", - "lastSeen": "2021-11-19T08:12:51.239Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-11-19T08:12:51.370Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-12-26T20:02:38.470Z", + "stop": "2023-12-26T21:49:38.750Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3260244" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "534217682" }, { - "type": "organization", - "id": "28643" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "8218" + } } } }, { - "type": "identifier", - "id": "185024794", + "type": "session", + "id": "f5d856c7-8690-11ee-9ac3-e565899790d9", "attributes": { - "type": "name", - "identifier": "Gnomeslayer#5551 - Purple Circle", - "lastSeen": "2021-10-31T08:05:13.734Z", - "private": false, - "metadata": null + "start": "2023-11-19T04:06:05.307Z", + "stop": "2023-11-19T05:47:15.607Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "6727424" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "277827528", + "type": "session", + "id": "72e728dc-8641-11ee-85d6-eb20bfb23d7b", "attributes": { - "type": "ip", - "identifier": "124.177.40.46", - "lastSeen": "2021-09-03T07:05:48.068Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-09-03T07:05:48.067Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-11-18T18:36:55.381Z", + "stop": "2023-11-18T21:29:48.503Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2371178" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" } ] } } }, { - "type": "identifier", - "id": "267287645", + "type": "session", + "id": "0ea79999-8634-11ee-beab-2c9134fd03ce", "attributes": { - "type": "ip", - "identifier": "120.147.47.57", - "lastSeen": "2021-08-01T23:54:09.837Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-08-01T23:54:09.943Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-11-18T17:01:03.735Z", + "stop": "2023-11-18T17:15:55.601Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "6727424" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" } ] } } }, { - "type": "identifier", - "id": "264604018", + "type": "session", + "id": "478ff43e-85bb-11ee-a478-444ec14a824c", "attributes": { - "type": "ip", - "identifier": "124.189.227.192", - "lastSeen": "2021-07-06T08:55:00.074Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-07-06T08:55:00.071Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-11-18T02:36:30.105Z", + "stop": "2023-11-18T05:57:51.786Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "6727424" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" } ] } } }, { - "type": "identifier", - "id": "253673038", + "type": "session", + "id": "13f8ee7b-857a-11ee-9e29-fd4f4ba521f3", "attributes": { - "type": "name", - "identifier": "[Abuse] Gnomeslayer#5551 - Purpl", - "lastSeen": "2021-05-22T19:40:57.871Z", - "private": false, - "metadata": null + "start": "2023-11-17T18:49:46.264Z", + "stop": "2023-11-18T00:07:40.971Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "6727424" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "247977312", + "type": "session", + "id": "ef1e1665-8560-11ee-8d11-80342de62642", "attributes": { - "type": "ip", - "identifier": "101.173.106.102", - "lastSeen": "2021-05-22T19:40:57.871Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-05-22T19:40:58.080Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-11-17T15:49:47.014Z", + "stop": "2023-11-17T17:10:53.403Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "6727424" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" } ] } } }, { - "type": "identifier", - "id": "237824369", + "type": "session", + "id": "3b819752-8556-11ee-b671-728404e13b6a", "attributes": { - "type": "ip", - "identifier": "101.176.9.75", - "lastSeen": "2021-04-27T06:43:10.082Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-04-27T06:43:10.188Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-11-17T14:33:10.709Z", + "stop": "2023-11-17T15:21:52.071Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2522221" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "8218" - }, - { - "type": "organization", - "id": "17965" - }, - { - "type": "organization", - "id": "25433" + "type": "identifier", + "id": "225817196" } ] } } }, { - "type": "identifier", - "id": "246835444", + "type": "session", + "id": "a6cad22a-84f7-11ee-be5c-c647d47a5016", "attributes": { - "type": "name", - "identifier": "[basss] Gnomeslayer#5551 - Purpl", - "lastSeen": "2021-04-23T02:42:01.088Z", - "private": false, - "metadata": null + "start": "2023-11-17T03:16:08.516Z", + "stop": "2023-11-17T04:44:11.403Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2522221" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "246643195", + "type": "session", + "id": "edfecbe6-84ef-11ee-a298-0e813f92e084", "attributes": { - "type": "name", - "identifier": "[bass] Gnomeslayer#5551 - Purple", - "lastSeen": "2021-04-22T22:10:15.749Z", - "private": false, - "metadata": null + "start": "2023-11-17T02:20:52.001Z", + "stop": "2023-11-17T03:14:08.352Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "3477804" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "246168090", + "type": "session", + "id": "873bf86a-84c9-11ee-923f-b28ec7316e94", "attributes": { - "type": "name", - "identifier": "[Gdog] Gnomeslayer#5551 - Purple", - "lastSeen": "2021-04-21T23:15:49.789Z", - "private": false, - "metadata": null + "start": "2023-11-16T21:45:58.721Z", + "stop": "2023-11-17T00:47:25.203Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "6071691" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "245902786", + "type": "session", + "id": "213df725-8420-11ee-846a-a6a0ec1d794c", "attributes": { - "type": "name", - "identifier": "[Fed] Gnomeslayer#5551 - Purple", - "lastSeen": "2021-04-21T08:05:09.543Z", - "private": false, - "metadata": null + "start": "2023-11-16T01:33:22.659Z", + "stop": "2023-11-16T04:17:42.323Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "8113868" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "22301" } } } }, { - "type": "identifier", - "id": "222493605", + "type": "session", + "id": "ea09f0df-841d-11ee-a997-bff467e69620", "attributes": { - "type": "ip", - "identifier": "121.221.133.15", - "lastSeen": "2021-03-16T14:54:26.606Z", - "private": true, - "metadata": { - "country": "AU", - "lastCheck": "2021-03-16T14:54:26.730Z", - "connectionInfo": { - "tor": false, - "datacenter": false, - "proxy": false, - "asn": "AS1221", - "block": 0, - "isp": "ASN-TELSTRA" - } - } + "start": "2023-11-16T01:17:31.050Z", + "stop": "2023-11-16T01:32:55.254Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "8113868" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } }, - "organizations": { + "identifiers": { "data": [ { - "type": "organization", - "id": "18611" + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" } ] + }, + "organization": { + "data": { + "type": "organization", + "id": "22301" + } } } }, { - "type": "identifier", - "id": "190370440", + "type": "session", + "id": "ae8172f8-831a-11ee-afea-e39303c73934", "attributes": { - "type": "name", - "identifier": "[Gnome] Gnomeslayer#5551 - Purpl", - "lastSeen": "2020-09-21T19:52:16.137Z", - "private": false, - "metadata": null + "start": "2023-11-14T18:21:51.517Z", + "stop": "2023-11-14T20:07:43.557Z", + "firstTime": false, + "name": "[DTTL] Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "9890273" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "400287345" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "17965" } } } }, { - "type": "identifier", - "id": "183656467", + "type": "session", + "id": "72a54c61-82ff-11ee-b2df-64df89f456e8", "attributes": { - "type": "name", - "identifier": "The color circle", - "lastSeen": "2020-08-26T04:16:28.300Z", - "private": false, - "metadata": null + "start": "2023-11-14T15:06:54.677Z", + "stop": "2023-11-14T17:46:34.903Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "9890273" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "17965" } } } }, { - "type": "identifier", - "id": "168207894", + "type": "session", + "id": "e585ba39-829f-11ee-854e-6235f3bbc717", "attributes": { - "type": "name", - "identifier": "Gnomeslayer#5551 - Cow God", - "lastSeen": "2020-08-20T04:09:44.410Z", - "private": false, - "metadata": null + "start": "2023-11-14T03:42:55.722Z", + "stop": "2023-11-14T05:28:58.800Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "9890273" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "17965" } } } }, { - "type": "identifier", - "id": "183124757", + "type": "session", + "id": "dc4f563c-828c-11ee-b223-761454842e95", "attributes": { - "type": "name", - "identifier": "Cow", - "lastSeen": "2020-08-18T18:13:39.821Z", - "private": false, - "metadata": null + "start": "2023-11-14T01:26:39.828Z", + "stop": "2023-11-14T03:37:46.588Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "14216011" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "183029073", + "type": "session", + "id": "b9dcb206-825c-11ee-892c-15c29767dfed", "attributes": { - "type": "name", - "identifier": "Gnomeslayer#5551 - A literal Cow", - "lastSeen": "2020-08-17T18:08:37.604Z", - "private": false, - "metadata": null + "start": "2023-11-13T19:42:06.191Z", + "stop": "2023-11-13T22:56:22.304Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "14216011" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "182514455", + "type": "session", + "id": "71ae4e69-80ba-11ee-904b-76dc34ba6c5e", "attributes": { - "type": "name", - "identifier": "xXx Elite Sn1P3r xXx", - "lastSeen": "2020-08-15T10:31:30.413Z", - "private": false, - "metadata": null + "start": "2023-11-11T17:47:55.458Z", + "stop": "2023-11-11T18:33:48.921Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2936493" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "60023069", + "type": "session", + "id": "1939e953-7fe6-11ee-a340-8646f1b54f8b", "attributes": { - "type": "name", - "identifier": "Kirito", - "lastSeen": "2020-08-07T01:22:13.367Z", - "private": false, - "metadata": null + "start": "2023-11-10T16:27:53.749Z", + "stop": "2023-11-10T23:30:42.010Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2936493" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "177087112", + "type": "session", + "id": "d80ad022-7fb8-11ee-9803-7b4df8b6fe85", "attributes": { - "type": "name", - "identifier": "Gnomeslaye#5551 - Cow God", - "lastSeen": "2020-07-25T09:12:46.895Z", - "private": false, - "metadata": null + "start": "2023-11-10T11:03:57.036Z", + "stop": "2023-11-10T11:07:29.275Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2936493" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "176045904", + "type": "session", + "id": "6f9ee4cf-7fb7-11ee-a168-69091f178585", "attributes": { - "type": "name", - "identifier": "Russian Cosmonaut Sniper", - "lastSeen": "2020-07-20T08:58:31.623Z", - "private": false, - "metadata": null + "start": "2023-11-10T10:53:52.349Z", + "stop": "2023-11-10T10:55:07.305Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2936493" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "167426935", + "type": "session", + "id": "7aacb6fd-7f5c-11ee-aa4f-e7be3a8de0af", "attributes": { - "type": "name", - "identifier": "Gnomeslayer - Cow God", - "lastSeen": "2020-06-12T03:00:14.630Z", - "private": false, - "metadata": null + "start": "2023-11-10T00:02:46.692Z", + "stop": "2023-11-10T02:57:30.742Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "2936493" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "165972845", + "type": "session", + "id": "85039eff-7f1b-11ee-b400-83c07bd9c767", "attributes": { - "type": "name", - "identifier": "Gnomeslayer - Cow God (Moderator", - "lastSeen": "2020-06-08T11:16:04.449Z", - "private": false, - "metadata": null + "start": "2023-11-09T16:17:46.751Z", + "stop": "2023-11-09T19:50:29.501Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "12410930" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "163026413", + "type": "session", + "id": "e763cff1-7f14-11ee-b972-c32fea1bc829", "attributes": { - "type": "name", - "identifier": "Se\u00f1or Gnomesplayer (Moderator)", - "lastSeen": "2020-05-31T23:22:14.581Z", - "private": false, - "metadata": null + "start": "2023-11-09T15:30:25.321Z", + "stop": "2023-11-09T16:12:52.533Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "1451019" + } + }, "player": { "data": { "type": "player", - "id": "579979635" - } - } - } - }, - { - "type": "identifier", - "id": "157464318", - "attributes": { - "type": "name", - "identifier": "Gnomeslayer (Moderator)", - "lastSeen": "2020-05-20T19:08:07.641Z", - "private": false, - "metadata": null - }, - "relationships": { - "player": { - "data": { - "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "160959143", + "type": "session", + "id": "3790d8f3-98ae-4031-af57-26211e5ce383", "attributes": { - "type": "name", - "identifier": "Gnomeslayer (Simple Guy)", - "lastSeen": "2020-05-14T17:16:48.009Z", - "private": false, - "metadata": null + "start": "2022-06-10T13:28:22.690Z", + "stop": "2022-06-10T14:02:38.143Z", + "firstTime": false, + "name": "[DTTL] Aleski", + "private": false }, "relationships": { - "player": { + "server": { "data": { - "type": "player", - "id": "579979635" + "type": "server", + "id": "13519849" } - } - } - }, - { - "type": "identifier", - "id": "148098746", - "attributes": { - "type": "name", - "identifier": "Gnomeslayer (Commoner)", - "lastSeen": "2020-04-29T12:58:11.764Z", - "private": false, - "metadata": null - }, - "relationships": { + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "400287345" + } + ] } } }, { - "type": "identifier", - "id": "143853031", + "type": "session", + "id": "03c3fd3a-531b-43ca-b083-1062520ca5c7", "attributes": { - "type": "name", - "identifier": "Gnomeslayer (Mod)", - "lastSeen": "2020-03-31T08:01:21.337Z", - "private": false, - "metadata": null + "start": "2022-06-10T02:42:15.500Z", + "stop": "2022-06-10T03:25:59.714Z", + "firstTime": false, + "name": "[DTTL] Aleski", + "private": false }, "relationships": { - "player": { + "server": { "data": { - "type": "player", - "id": "579979635" + "type": "server", + "id": "13519849" } - } - } - }, - { - "type": "identifier", - "id": "134692861", - "attributes": { - "type": "name", - "identifier": "Gnomeslayer", - "lastSeen": "2020-03-18T05:13:18.272Z", - "private": false, - "metadata": null - }, - "relationships": { + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "400287345" + } + ] } } }, { - "type": "identifier", - "id": "132007752", + "type": "session", + "id": "c3e17ef1-89e2-4618-bf95-2ce620eb1f2d", "attributes": { - "type": "name", - "identifier": "A sleepy beauty", - "lastSeen": "2020-01-31T16:40:31.745Z", - "private": false, - "metadata": null + "start": "2022-06-10T02:15:52.825Z", + "stop": "2022-06-10T02:40:29.263Z", + "firstTime": false, + "name": "[DTTL] Aleski", + "private": false }, "relationships": { - "player": { + "server": { "data": { - "type": "player", - "id": "579979635" + "type": "server", + "id": "13519849" } - } - } - }, - { - "type": "identifier", - "id": "128742381", - "attributes": { - "type": "name", - "identifier": "A Creepy Onlooker", - "lastSeen": "2020-01-20T03:42:25.495Z", - "private": false, - "metadata": null - }, - "relationships": { + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "400287345" + } + ] } } }, { - "type": "identifier", - "id": "131607331", + "type": "session", + "id": "edceadf3-1485-4c8a-93a4-3a489963df85", "attributes": { - "type": "name", - "identifier": "[duc] A Creepy Onlooker", - "lastSeen": "2020-01-20T00:55:26.471Z", - "private": false, - "metadata": null + "start": "2022-06-10T00:18:42.109Z", + "stop": "2022-06-10T00:39:43.140Z", + "firstTime": false, + "name": "[DTTL] Aleski", + "private": false }, "relationships": { - "player": { + "server": { "data": { - "type": "player", - "id": "579979635" + "type": "server", + "id": "13519849" } - } - } - }, - { - "type": "identifier", - "id": "131195527", - "attributes": { - "type": "name", - "identifier": "[Fun] A Creepy Onlooker", - "lastSeen": "2020-01-18T12:09:56.472Z", - "private": false, - "metadata": null - }, - "relationships": { + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "400287345" + } + ] } } }, { - "type": "identifier", - "id": "130715222", + "type": "session", + "id": "c449d81a-3113-4273-b7e0-ef29928d3451", "attributes": { - "type": "name", - "identifier": "[duk] A Creepy Onlooker", - "lastSeen": "2020-01-16T05:57:53.877Z", - "private": false, - "metadata": null + "start": "2022-06-09T23:50:59.349Z", + "stop": "2022-06-10T00:18:32.412Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "13519849" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "127016329", + "type": "session", + "id": "a3809bc2-07fe-4265-80dc-f90daebab22d", "attributes": { - "type": "name", - "identifier": "Late Santa", - "lastSeen": "2020-01-04T11:06:19.892Z", - "private": false, - "metadata": null + "start": "2022-06-09T23:08:39.304Z", + "stop": "2022-06-09T23:48:02.546Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "14702632" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "125243799", + "type": "session", + "id": "5bcacaef-4264-4fe7-aa7b-a813d235c820", "attributes": { - "type": "name", - "identifier": "Cleanly Shaven", - "lastSeen": "2019-12-29T20:57:57.616Z", - "private": false, - "metadata": null + "start": "2022-06-09T22:55:12.312Z", + "stop": "2022-06-09T22:56:49.923Z", + "firstTime": true, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "9347971" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" + } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + }, + { + "type": "identifier", + "id": "225817197" + }, + { + "type": "identifier", + "id": "225817198" + } + ] + }, + "organization": { + "data": { + "type": "organization", + "id": "19039" } } } }, { - "type": "identifier", - "id": "117886329", + "type": "session", + "id": "81a99d44-f3a7-4909-b392-f714848fd97b", "attributes": { - "type": "name", - "identifier": "Man Or Mouse", - "lastSeen": "2019-12-23T18:01:18.459Z", - "private": false, - "metadata": null + "start": "2022-06-09T20:53:47.786Z", + "stop": "2022-06-09T22:34:47.224Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "15389887" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "112026911", + "type": "session", + "id": "98f344db-6c8b-4347-8330-3dd728eff457", "attributes": { - "type": "name", - "identifier": "A British trap", - "lastSeen": "2019-11-07T11:34:13.623Z", - "private": false, - "metadata": null + "start": "2022-06-09T20:20:46.775Z", + "stop": "2022-06-09T20:35:29.035Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "12074336" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } }, { - "type": "identifier", - "id": "111605385", + "type": "session", + "id": "3e8d7669-3a66-41de-b93a-4e7f272b960a", "attributes": { - "type": "name", - "identifier": "Brit Delphine", - "lastSeen": "2019-10-09T17:31:43.946Z", - "private": false, - "metadata": null + "start": "2022-06-09T19:47:52.593Z", + "stop": "2022-06-09T20:07:40.717Z", + "firstTime": false, + "name": "Aleski", + "private": false }, "relationships": { + "server": { + "data": { + "type": "server", + "id": "12074336" + } + }, "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "identifiers": { + "data": [ + { + "type": "identifier", + "id": "225817196" + } + ] } } - }, + } + ], + "links": {}, + "included": [ { "type": "identifier", - "id": "103938842", + "id": "225817196", "attributes": { "type": "name", - "identifier": "Bert Fanatic", - "lastSeen": "2019-10-05T09:44:32.697Z", + "identifier": "Aleski", + "lastSeen": "2024-01-12T14:50:36.055Z", "private": false, "metadata": null }, @@ -1730,3185 +2345,1090 @@ "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } } } }, { "type": "identifier", - "id": "76834214", + "id": "225817197", "attributes": { - "type": "name", - "identifier": "Wanda", - "lastSeen": "2019-06-28T21:08:41.941Z", - "private": false, - "metadata": null + "type": "steamID", + "identifier": "76561198036207950", + "lastSeen": "2024-01-12T14:50:36.055Z", + "private": true, + "metadata": { + "profile": { + "steamid": "76561198036207950", + "communityvisibilitystate": 3, + "profilestate": 1, + "personaname": "Aleski", + "profileurl": "https://steamcommunity.com/profiles/76561198036207950", + "avatar": "https://avatars.cloudflare.steamstatic.com/be65902c43f582d8c064c0fed73dceaf885b6455.jpg", + "avatarmedium": "https://avatars.cloudflare.steamstatic.com/be65902c43f582d8c064c0fed73dceaf885b6455_medium.jpg", + "avatarfull": "https://avatars.cloudflare.steamstatic.com/be65902c43f582d8c064c0fed73dceaf885b6455_full.jpg", + "avatarhash": "be65902c43f582d8c064c0fed73dceaf885b6455", + "personastate": 1, + "realname": "Matt Ski", + "primaryclanid": "103582791434277245", + "timecreated": 1293920028, + "personastateflags": 0, + "gameserverip": "216.39.240.66:28010", + "gameserversteamid": "90179515508812802", + "gameextrainfo": "Rust", + "gameid": "252490", + "loccountrycode": "US", + "api": true, + "xml": true, + "isLimitedAccount": false + }, + "bans": { + "SteamId": "76561198036207950", + "CommunityBanned": false, + "VACBanned": false, + "NumberOfVACBans": 0, + "DaysSinceLastBan": 0, + "NumberOfGameBans": 0, + "EconomyBan": "none" + }, + "gameInfo": { + "steamid": "76561198036207950", + "game_count": 180, + "games": [ + { + "appid": 17480, + "playtime_forever": 74 + }, + { + "appid": 550, + "playtime_forever": 240 + }, + { + "appid": 33900, + "playtime_forever": 1 + }, + { + "appid": 33930, + "playtime_forever": 12 + }, + { + "appid": 219540, + "playtime_forever": 0 + }, + { + "appid": 57300, + "playtime_forever": 411 + }, + { + "appid": 47780, + "playtime_forever": 630 + }, + { + "appid": 4540, + "playtime_forever": 26 + }, + { + "appid": 475150, + "playtime_forever": 0 + }, + { + "appid": 620, + "playtime_forever": 645 + }, + { + "appid": 105600, + "playtime_forever": 11897 + }, + { + "appid": 20920, + "playtime_forever": 0 + }, + { + "appid": 19680, + "playtime_forever": 136 + }, + { + "appid": 63000, + "playtime_forever": 0 + }, + { + "appid": 55230, + "playtime_forever": 0 + }, + { + "appid": 65800, + "playtime_forever": 29 + }, + { + "appid": 202090, + "playtime_forever": 243 + }, + { + "appid": 6120, + "playtime_forever": 0 + }, + { + "appid": 40800, + "playtime_forever": 0 + }, + { + "appid": 63710, + "playtime_forever": 22 + }, + { + "appid": 94200, + "playtime_forever": 128 + }, + { + "appid": 99700, + "playtime_forever": 22 + }, + { + "appid": 41800, + "playtime_forever": 37 + }, + { + "appid": 200900, + "playtime_forever": 55 + }, + { + "appid": 38600, + "playtime_forever": 56 + }, + { + "appid": 583930, + "playtime_forever": 0 + }, + { + "appid": 18700, + "playtime_forever": 6 + }, + { + "appid": 26500, + "playtime_forever": 2 + }, + { + "appid": 26900, + "playtime_forever": 18 + }, + { + "appid": 41100, + "playtime_forever": 12 + }, + { + "appid": 70300, + "playtime_forever": 0 + }, + { + "appid": 29180, + "playtime_forever": 26 + }, + { + "appid": 38740, + "playtime_forever": 0 + }, + { + "appid": 91200, + "playtime_forever": 24 + }, + { + "appid": 22000, + "playtime_forever": 76 + }, + { + "appid": 207170, + "playtime_forever": 93 + }, + { + "appid": 207610, + "playtime_forever": 1111 + }, + { + "appid": 3830, + "playtime_forever": 116 + }, + { + "appid": 48000, + "playtime_forever": 0 + }, + { + "appid": 204060, + "playtime_forever": 6 + }, + { + "appid": 107100, + "playtime_forever": 320 + }, + { + "appid": 26800, + "playtime_forever": 0 + }, + { + "appid": 209830, + "playtime_forever": 22 + }, + { + "appid": 213030, + "playtime_forever": 11 + }, + { + "appid": 22350, + "playtime_forever": 0 + }, + { + "appid": 22380, + "playtime_forever": 4298 + }, + { + "appid": 22450, + "playtime_forever": 0 + }, + { + "appid": 72850, + "playtime_forever": 1853 + }, + { + "appid": 21170, + "playtime_forever": 0 + }, + { + "appid": 35140, + "playtime_forever": 9 + }, + { + "appid": 57400, + "playtime_forever": 0 + }, + { + "appid": 200260, + "playtime_forever": 0 + }, + { + "appid": 206210, + "playtime_forever": 0 + }, + { + "appid": 113200, + "playtime_forever": 34 + }, + { + "appid": 204300, + "playtime_forever": 0 + }, + { + "appid": 209080, + "playtime_forever": 152 + }, + { + "appid": 209270, + "playtime_forever": 23 + }, + { + "appid": 209540, + "playtime_forever": 0 + }, + { + "appid": 206440, + "playtime_forever": 0 + }, + { + "appid": 49520, + "playtime_forever": 3967 + }, + { + "appid": 217690, + "playtime_forever": 176 + }, + { + "appid": 200710, + "playtime_forever": 863 + }, + { + "appid": 219150, + "playtime_forever": 115 + }, + { + "appid": 220240, + "playtime_forever": 1004 + }, + { + "appid": 203140, + "playtime_forever": 114 + }, + { + "appid": 205930, + "playtime_forever": 0 + }, + { + "appid": 201790, + "playtime_forever": 799 + }, + { + "appid": 4560, + "playtime_forever": 73 + }, + { + "appid": 9340, + "playtime_forever": 0 + }, + { + "appid": 20540, + "playtime_forever": 0 + }, + { + "appid": 43110, + "playtime_forever": 0 + }, + { + "appid": 50620, + "playtime_forever": 0 + }, + { + "appid": 55110, + "playtime_forever": 0 + }, + { + "appid": 228200, + "playtime_forever": 0 + }, + { + "appid": 462780, + "playtime_forever": 0 + }, + { + "appid": 236390, + "playtime_forever": 159 + }, + { + "appid": 216150, + "playtime_forever": 34030 + }, + { + "appid": 8930, + "playtime_forever": 12167 + }, + { + "appid": 218060, + "playtime_forever": 20 + }, + { + "appid": 227080, + "playtime_forever": 0 + }, + { + "appid": 8870, + "playtime_forever": 1182 + }, + { + "appid": 233720, + "playtime_forever": 0 + }, + { + "appid": 219740, + "playtime_forever": 3896 + }, + { + "appid": 322330, + "playtime_forever": 14974 + }, + { + "appid": 238210, + "playtime_forever": 0 + }, + { + "appid": 222730, + "playtime_forever": 211 + }, + { + "appid": 35700, + "playtime_forever": 43 + }, + { + "appid": 35720, + "playtime_forever": 0 + }, + { + "appid": 226740, + "playtime_forever": 63 + }, + { + "appid": 242760, + "playtime_forever": 780 + }, + { + "appid": 242110, + "playtime_forever": 0 + }, + { + "appid": 201420, + "playtime_forever": 0 + }, + { + "appid": 239200, + "playtime_forever": 21 + }, + { + "appid": 252110, + "playtime_forever": 9 + }, + { + "appid": 252870, + "playtime_forever": 0 + }, + { + "appid": 249990, + "playtime_forever": 0 + }, + { + "appid": 219990, + "playtime_forever": 601 + }, + { + "appid": 235620, + "playtime_forever": 83 + }, + { + "appid": 262060, + "playtime_forever": 6962 + }, + { + "appid": 264140, + "playtime_forever": 242 + }, + { + "appid": 108600, + "playtime_forever": 71533 + }, + { + "appid": 211820, + "playtime_forever": 1623 + }, + { + "appid": 367540, + "playtime_forever": 0 + }, + { + "appid": 282140, + "playtime_forever": 0 + }, + { + "appid": 286160, + "playtime_forever": 170 + }, + { + "appid": 294100, + "playtime_forever": 65867 + }, + { + "appid": 298030, + "playtime_forever": 0 + }, + { + "appid": 237930, + "playtime_forever": 0 + }, + { + "appid": 316010, + "playtime_forever": 26 + }, + { + "appid": 21690, + "playtime_forever": 1 + }, + { + "appid": 323190, + "playtime_forever": 2752 + }, + { + "appid": 261640, + "playtime_forever": 805 + }, + { + "appid": 65980, + "playtime_forever": 3114 + }, + { + "appid": 211420, + "playtime_forever": 0 + }, + { + "appid": 230230, + "playtime_forever": 0 + }, + { + "appid": 373420, + "playtime_forever": 0 + }, + { + "appid": 374320, + "playtime_forever": 0 + }, + { + "appid": 377160, + "playtime_forever": 4252 + }, + { + "appid": 381210, + "playtime_forever": 116 + }, + { + "appid": 391540, + "playtime_forever": 374 + }, + { + "appid": 413150, + "playtime_forever": 2257 + }, + { + "appid": 424370, + "playtime_forever": 584 + }, + { + "appid": 239140, + "playtime_forever": 0 + }, + { + "appid": 431960, + "playtime_forever": 2840 + }, + { + "appid": 379720, + "playtime_forever": 156 + }, + { + "appid": 474750, + "playtime_forever": 96 + }, + { + "appid": 489830, + "playtime_forever": 268 + }, + { + "appid": 505040, + "playtime_forever": 210 + }, + { + "appid": 505460, + "playtime_forever": 208 + }, + { + "appid": 289070, + "playtime_forever": 34833 + }, + { + "appid": 527230, + "playtime_forever": 1280 + }, + { + "appid": 469820, + "playtime_forever": 0 + }, + { + "appid": 548430, + "playtime_forever": 933 + }, + { + "appid": 578650, + "playtime_forever": 748 + }, + { + "appid": 599140, + "playtime_forever": 3294 + }, + { + "appid": 602960, + "playtime_forever": 284 + }, + { + "appid": 610180, + "playtime_forever": 340 + }, + { + "appid": 632360, + "playtime_forever": 4199 + }, + { + "appid": 644930, + "playtime_forever": 1655 + }, + { + "appid": 646570, + "playtime_forever": 0 + }, + { + "appid": 648800, + "playtime_forever": 2124 + }, + { + "appid": 435150, + "playtime_forever": 369 + }, + { + "appid": 629520, + "playtime_forever": 5851 + }, + { + "appid": 739630, + "playtime_forever": 0 + }, + { + "appid": 252490, + "playtime_2weeks": 1582, + "playtime_forever": 61934 + }, + { + "appid": 700580, + "playtime_forever": 0 + }, + { + "appid": 203770, + "playtime_forever": 0 + }, + { + "appid": 880940, + "playtime_forever": 6 + }, + { + "appid": 892970, + "playtime_forever": 7266 + }, + { + "appid": 945360, + "playtime_forever": 2868 + }, + { + "appid": 962130, + "playtime_forever": 1584 + }, + { + "appid": 285900, + "playtime_forever": 225 + }, + { + "appid": 1131190, + "playtime_forever": 347 + }, + { + "appid": 1149460, + "playtime_forever": 467 + }, + { + "appid": 1169040, + "playtime_forever": 1760 + }, + { + "appid": 1172620, + "playtime_forever": 117 + }, + { + "appid": 1145360, + "playtime_forever": 0 + }, + { + "appid": 1063730, + "playtime_forever": 10883 + }, + { + "appid": 1217060, + "playtime_forever": 592 + }, + { + "appid": 1245620, + "playtime_forever": 2299 + }, + { + "appid": 442070, + "playtime_forever": 0 + }, + { + "appid": 1282730, + "playtime_forever": 665 + }, + { + "appid": 1286830, + "playtime_forever": 4471 + }, + { + "appid": 1326470, + "playtime_forever": 1967 + }, + { + "appid": 1336490, + "playtime_forever": 6219 + }, + { + "appid": 1404210, + "playtime_forever": 106 + }, + { + "appid": 1557740, + "playtime_forever": 84 + }, + { + "appid": 1604030, + "playtime_forever": 332 + }, + { + "appid": 1621690, + "playtime_forever": 1754 + }, + { + "appid": 1599340, + "playtime_forever": 1706 + }, + { + "appid": 1240440, + "playtime_forever": 194 + }, + { + "appid": 1794680, + "playtime_forever": 949 + }, + { + "appid": 1843760, + "playtime_forever": 1481 + }, + { + "appid": 1656780, + "playtime_forever": 0 + }, + { + "appid": 1966720, + "playtime_2weeks": 116, + "playtime_forever": 308 + }, + { + "appid": 1313140, + "playtime_forever": 1258 + }, + { + "appid": 1669000, + "playtime_forever": 5874 + }, + { + "appid": 226620, + "playtime_forever": 0 + }, + { + "appid": 1086940, + "playtime_forever": 2086 + }, + { + "appid": 1150530, + "playtime_2weeks": 1003, + "playtime_forever": 1434 + } + ], + "lastCheck": "2024-01-12T02:41:44.210Z" + } + } }, "relationships": { "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } + }, + "organizations": { + "data": [ + { + "type": "organization", + "id": "8218" + }, + { + "type": "organization", + "id": "13771" + }, + { + "type": "organization", + "id": "17965" + }, + { + "type": "organization", + "id": "19039" + }, + { + "type": "organization", + "id": "22301" + } + ] } } }, { "type": "identifier", - "id": "72607157", + "id": "225817198", "attributes": { - "type": "name", - "identifier": "Windows", - "lastSeen": "2018-12-20T16:18:19.973Z", - "private": false, + "type": "BEGUID", + "identifier": "2b611931b6938f68758005a5e9350b72", + "lastSeen": "2024-01-12T14:50:36.055Z", + "private": true, "metadata": null }, "relationships": { "player": { "data": { "type": "player", - "id": "579979635" + "id": "982404963" } - } - } - }, - { - "type": "server", - "id": "433734", - "attributes": { - "id": "433734", - "name": "Rustafied.com - US Low Pop", - "address": "uslowpop.rustafied.com", - "ip": "104.129.132.137", - "port": 28015, - "players": 23, - "maxPlayers": 125, - "rank": 220, - "location": [ - -96.8704, - 32.8137 - ], - "status": "online", - "details": { - "tags": [ - "mp125", - "cp22", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "na", - "hec50568", - "stok", - "born1701974644", - "gmrust", - "cs91101", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "91101", - "rust_ent_cnt_i": 202520, - "rust_fps": 60, - "rust_fps_avg": 59.93, - "rust_gc_cl": 452, - "rust_gc_mb": 2869, - "rust_hash": "ec50568", - "rust_headerimage": "http://i.imgur.com/JGMbuFJ.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 4930, - "rust_url": "https://forum.rustafied.com/store/product/10-vip-slot-low-pop", - "rust_world_seed": 1377802894, - "rust_world_size": 4000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Low_Pop.map", - "rust_maps": { - "seed": 1377802894, - "size": 4000, - "url": "https://rustmaps.com/map/c21f25df47e649cea9b925246d3db820", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/c21f25df47e649cea9b925246d3db820/thumbnail.png", - "monuments": 146, - "barren": false, - "updatedAt": "2023-12-13T12:25:09.955Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Low_Pop.map" - }, - "rust_description": "Low Pop: Less players, less wipes.\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:44:04.000Z", - "rust_last_ent_drop": "2023-12-07T18:49:12.706Z", - "rust_last_seed_change": "2023-12-07T18:49:12.706Z", - "rust_last_wipe": "2023-12-07T18:49:12.706Z", - "rust_map_size_ent_count": "2020-10-01T17:59:58.524Z", - "rust_last_wipe_ent": 89889, - "serverSteamId": "90178658844435487" - }, - "private": false, - "createdAt": "2016-08-27T21:37:20.638Z", - "updatedAt": "2023-12-13T12:36:56.832Z", - "portQuery": 28018, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 214, - "firstSeen": "2023-07-10T10:58:00.788Z", - "lastSeen": "2023-07-10T11:04:53.658Z", - "online": false - } - }, - { - "type": "server", - "id": "433754", - "attributes": { - "id": "433754", - "name": "Rustafied.com - US Long III", - "address": "uslong3.rustafied.com", - "ip": "104.143.2.103", - "port": 28015, - "players": 66, - "maxPlayers": 400, - "rank": 38, - "location": [ - -77.0369, - 38.9072 - ], - "status": "online", - "details": { - "tags": [ - "mp400", - "cp65", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "na", - "hec50568", - "stok", - "born1701974717", - "gmrust", - "cs91101", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "91101", - "rust_ent_cnt_i": 310531, - "rust_fps": 53, - "rust_fps_avg": 53.43, - "rust_gc_cl": 428, - "rust_gc_mb": 3851, - "rust_hash": "ec50568", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/US Long 3.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 5723, - "rust_url": "https://forum.rustafied.com/store/product/16-us-long-iii/", - "rust_world_seed": 1896684541, - "rust_world_size": 4000, - "rust_world_levelurl": "http://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Long_III.map", - "rust_maps": { - "seed": 1896684541, - "size": 4000, - "url": "https://rustmaps.com/map/2945ac8821e641bf8a9b01a848e5d432", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/2945ac8821e641bf8a9b01a848e5d432/thumbnail.png", - "monuments": 153, - "barren": false, - "updatedAt": "2023-12-13T12:23:09.943Z", - "mapUrl": "http://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Long_III.map" - }, - "rust_description": "Long III: Same Long flavor, times three!\n\nMap wipe schedule: Monthly (or when forced)\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:45:17.000Z", - "rust_last_ent_drop": "2023-12-07T18:49:53.557Z", - "rust_last_seed_change": "2023-12-07T18:49:53.557Z", - "rust_last_wipe": "2023-12-07T18:49:53.557Z", - "rust_last_wipe_ent": 88145, - "serverSteamId": "90178658712434698" - }, - "private": false, - "createdAt": "2016-08-27T21:37:20.765Z", - "updatedAt": "2023-12-13T12:38:07.549Z", - "portQuery": 28018, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 179, - "firstSeen": "2023-07-10T10:39:57.846Z", - "lastSeen": "2023-07-10T10:42:56.913Z", - "online": false - } - }, - { - "type": "server", - "id": "439348", - "attributes": { - "id": "439348", - "name": "[EU] Rustoria.co - Zeus 5x [Loot+/Shop/Kits] JUST BP WIPED", - "address": "zeus.rustoria.uk", - "ip": "94.23.153.176", - "port": 28010, - "players": 0, - "maxPlayers": 150, - "rank": 1258, - "location": [ - -0.093, - 51.5088 - ], - "status": "online", - "details": { - "tags": [ - "mp150", - "cp0", - "ptrak", - "qp0", - "v2515", - "hd7ad1b5d", - "stok", - "born1702292864", - "gmrust", - "cs90943", - "rustmaps", - "oxide", - "modded", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Procedural Map", - "environment": "w", - "rust_build": "90943", - "rust_ent_cnt_i": 55364, - "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 438, - "rust_gc_mb": 1844, - "rust_hash": "d7ad1b5d", - "rust_headerimage": "https://i.imgur.com/lZEgS67.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 20128, - "rust_url": "http://rustoria.co", - "rust_world_seed": 55401, - "rust_world_size": 3000, - "rust_world_levelurl": "https://maps.rustmaps.com/244/7c57c9ae01174f719dba3133ab37f78e/procedural__3000_pk2DsOZZuUiy8xDUFgQBFw.map", - "rust_maps": { - "seed": 55401, - "size": 3000, - "url": "https://rustmaps.com/map/732ca39d6e5746eeb9a27ccec704891f", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/732ca39d6e5746eeb9a27ccec704891f/thumbnail.png", - "monuments": 109, - "barren": false, - "updatedAt": "2023-12-13T11:56:24.975Z", - "mapUrl": "https://maps.rustmaps.com/244/7c57c9ae01174f719dba3133ab37f78e/procedural__3000_pk2DsOZZuUiy8xDUFgQBFw.map" - }, - "rust_description": "Rustoria.co Zeus 5x EU - The trend setters of Modded Rust.\n\\tMonday & Thursday map wipes at 11AM UK / 12PM CEST\n\\tBP wipes every 2 weeks\n\nThe original 5x Rustoria server. Perfectly modded 5x server mixing in Vanilla elements with your casual modded gameplay. The community known to have minimal server lag.\n\nKits & VIP available at donate.rustoria.co\n\nActive non playing admins. 24/7 admin support. Custom plugins. Amazing performance. English only chat. Brilliant loot tables.\n\nView our range of specialised servers at https://rustoria.co/servers", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T11:07:44.000Z", - "rust_last_ent_drop": "2022-08-22T10:08:01.361Z", - "rust_last_seed_change": "2022-12-26T11:19:19.049Z", - "rust_last_wipe": "2022-12-26T11:19:19.049Z", - "rust_map_size_ent_count": "2020-02-03T11:00:58.015Z", - "rust_last_wipe_ent": 134970, - "serverSteamId": "90178653552723977" - }, - "private": false, - "createdAt": "2016-08-27T22:10:11.582Z", - "updatedAt": "2023-12-13T12:36:42.601Z", - "portQuery": 28015, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 30213, - "firstSeen": "2019-04-27T17:59:32.757Z", - "lastSeen": "2019-09-03T15:00:47.822Z", - "online": false - } - }, - { - "type": "server", - "id": "446986", - "attributes": { - "id": "446986", - "name": "Rustafied.com - EU Zenlabs", - "address": "euzenlabs.rustafied.com", - "ip": "64.40.9.41", - "port": 28015, - "players": 16, - "maxPlayers": 200, - "rank": 328, - "location": [ - -0.1257, - 51.5085 - ], - "status": "online", - "details": { - "tags": [ - "mp200", - "cp17", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1701974802", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Isle of Rust", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 109706, - "rust_fps": 60, - "rust_fps_avg": 59.95, - "rust_gc_cl": 540, - "rust_gc_mb": 2646, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU Zenlabs.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23575, - "rust_url": "https://forum.rustafied.com/store/product/28-zenlabs-ii/", - "rust_world_seed": 1337, - "rust_world_size": 4096, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Zenlabs.map", - "rust_maps": { - "seed": 1337, - "size": 4096, - "url": "https://rustmaps.com/map/290d67d60f6343f491a386977de181c4", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/290d67d60f6343f491a386977de181c4/thumbnail.png", - "monuments": 44, - "barren": false, - "updatedAt": "2023-12-13T11:41:38.754Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Zenlabs.map" - }, - "rust_description": "EU Zenlabs: Currently running community map Isle of Rust!\nMore info:rustafied.com/discord", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:46:42.000Z", - "rust_last_ent_drop": "2023-11-30T15:01:33.444Z", - "rust_last_seed_change": "2023-02-02T19:02:34.270Z", - "rust_last_wipe": "2023-11-30T15:01:33.444Z", - "rust_map_size_ent_count": "2021-03-25T11:46:26.223Z", - "rust_last_wipe_ent": 51617, - "serverSteamId": "90178652993383429" - }, - "private": false, - "createdAt": "2016-09-01T19:53:28.273Z", - "updatedAt": "2023-12-13T12:37:49.942Z", - "portQuery": 28018, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 366, - "firstSeen": "2018-12-20T16:08:00.094Z", - "lastSeen": "2023-07-10T10:45:54.084Z", - "online": false - } - }, - { - "type": "server", - "id": "458605", - "attributes": { - "id": "458605", - "name": "[EU/UK] RustOps.com #1 | Pure Vanilla | BP WIPED 30/7 6 days ago", - "address": null, - "ip": "137.74.221.12", - "port": 28015, - "players": 0, - "maxPlayers": 100, - "rank": 8448, - "location": [ - 3.20157, - 50.6917 - ], - "status": "dead", - "details": { - "map": "Procedural Map", - "pve": false, - "official": false, - "rust_fps": 65, - "rust_url": "https://www.rustops.com", - "rust_hash": "dfec0851", - "rust_type": "community", - "rust_build": "52911", - "rust_gc_cl": 7282, - "rust_gc_mb": 1284, - "environment": "w", - "rust_mem_pv": null, - "rust_mem_ws": null, - "rust_modded": false, - "rust_uptime": 589747, - "rust_fps_avg": 64.73, - "serverSteamId": "90137531499687945", - "rust_ent_cnt_i": 37922, - "rust_last_wipe": "2020-07-30T10:18:33.495Z", - "rust_world_seed": 132668842, - "rust_world_size": 3500, - "rust_description": "Welcome to RustOps!\n \nNo playing admins, no mods with spawn/spectate abilities,no abuse \n \nThis is a fun vanilla pvp server that offers 100% pure vanilla game play in a lag free environment\n \nWant to skip the queue go to rustops.com/store", - "rust_headerimage": "https://i.imgur.com/Qy2AZgC.png", - "rust_last_ent_drop": "2020-07-09T10:13:40.818Z", - "rust_last_wipe_ent": 27061, - "rust_queued_players": 0, - "rust_last_seed_change": "2020-07-30T10:18:33.495Z", - "rust_map_size_ent_count": "2019-05-23T08:44:43.015Z" - }, - "private": false, - "createdAt": "2016-09-07T22:49:04.764Z", - "updatedAt": "2023-12-12T22:03:23.626Z", - "portQuery": 28015, - "country": "FR", - "queryStatus": "timeout" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 336, - "firstSeen": "2019-01-31T12:29:08.146Z", - "lastSeen": "2019-01-31T12:34:43.885Z", - "online": false - } - }, - { - "type": "server", - "id": "660901", - "attributes": { - "id": "660901", - "name": "Rustafied.com - EU Odd - Monday", - "address": "euodd.rustafied.com", - "ip": "195.60.166.151", - "port": 28015, - "players": 235, - "maxPlayers": 300, - "rank": 69, - "location": [ - -0.1257, - 51.5085 - ], - "status": "online", - "details": { - "tags": [ - "mp300", - "cp241", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1702306982", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 218780, - "rust_fps": 50, - "rust_fps_avg": 50.42, - "rust_gc_cl": 525, - "rust_gc_mb": 3572, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU Odd.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23616, - "rust_url": "https://forum.rustafied.com/store/product/30-vip-slot-eu-odd/", - "rust_world_seed": 933930758, - "rust_world_size": 4000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-11_Rustafied.com_-_EU_Odd_-_Monday.map", - "rust_maps": { - "seed": 933930758, - "size": 4000, - "url": "https://rustmaps.com/map/bac5df36d6a34ba8b522e6a513be0e93", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/bac5df36d6a34ba8b522e6a513be0e93/thumbnail.png", - "monuments": 151, - "barren": false, - "updatedAt": "2023-12-13T12:35:06.757Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-11_Rustafied.com_-_EU_Odd_-_Monday.map" - }, - "rust_description": "EU Odd: Monday wipes, 4K map.\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T15:03:02.000Z", - "rust_last_ent_drop": "2023-12-07T18:51:23.753Z", - "rust_last_seed_change": "2023-12-11T15:06:20.587Z", - "rust_last_wipe": "2023-12-11T15:06:20.587Z", - "rust_map_size_ent_count": "2021-03-01T13:58:14.480Z", - "rust_last_wipe_ent": 89323, - "serverSteamId": "90178652962124827" - }, - "private": false, - "createdAt": "2016-12-31T19:12:27.986Z", - "updatedAt": "2023-12-13T12:38:28.679Z", - "portQuery": 28018, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 34249, - "firstSeen": "2019-09-19T19:12:18.311Z", - "lastSeen": "2023-07-10T11:30:26.044Z", - "online": false - } - }, - { - "type": "server", - "id": "840842", - "attributes": { - "id": "840842", - "name": "Rustafied.com - EU Small", - "address": "eusmall.rustafied.com", - "ip": "64.40.9.94", - "port": 28015, - "players": 29, - "maxPlayers": 100, - "rank": 216, - "location": [ - -0.093, - 51.5088 - ], - "status": "online", - "details": { - "tags": [ - "mp100", - "cp28", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1701974691", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 111569, - "rust_fps": 59, - "rust_fps_avg": 59.08, - "rust_gc_cl": 579, - "rust_gc_mb": 2084, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU Small.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 22753, - "rust_url": "https://forum.rustafied.com/store/product/34-vip-slot-eu-small/", - "rust_world_seed": 1462015170, - "rust_world_size": 3000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Small.map", - "rust_maps": { - "seed": 1462015170, - "size": 3000, - "url": "https://rustmaps.com/map/4788ac343a744d52a0876bde89081ec2", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/4788ac343a744d52a0876bde89081ec2/thumbnail.png", - "monuments": 136, - "barren": false, - "updatedAt": "2023-12-13T11:09:38.722Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Small.map" - }, - "rust_description": "Small map: Weekly wipes, PvP oriented gameplay\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:44:51.000Z", - "rust_last_ent_drop": "2023-11-30T14:59:59.634Z", - "rust_last_seed_change": "2023-12-07T18:50:23.630Z", - "rust_last_wipe": "2023-12-07T18:50:23.630Z", - "rust_map_size_ent_count": "2019-05-09T15:58:18.683Z", - "rust_last_wipe_ent": 45388, - "serverSteamId": "90178653065786394" - }, - "private": false, - "createdAt": "2017-03-02T04:29:09.347Z", - "updatedAt": "2023-12-13T12:38:19.771Z", - "portQuery": 28018, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 74, - "firstSeen": "2023-07-10T11:22:19.834Z", - "lastSeen": "2023-07-10T11:23:33.447Z", - "online": false - } - }, - { - "type": "server", - "id": "1106399", - "attributes": { - "id": "1106399", - "name": "Rustafied.com - EUS", - "address": "eus.rustafied.com", - "ip": "64.40.9.47", - "port": 28015, - "players": 21, - "maxPlayers": 250, - "rank": 267, - "location": [ - -0.093, - 51.5088 - ], - "status": "online", - "details": { - "tags": [ - "mp250", - "cp20", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1701974755", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 104414, - "rust_fps": 60, - "rust_fps_avg": 60, - "rust_gc_cl": 572, - "rust_gc_mb": 2139, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EUS.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23754, - "rust_url": "https://forum.rustafied.com/store/product/51-vip-slot-european-survivors/", - "rust_world_seed": 1582076069, - "rust_world_size": 3000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EUS.map", - "rust_maps": { - "seed": 1582076069, - "size": 3000, - "url": "https://rustmaps.com/map/834845b0addc499589cc35439d4ac90d", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/834845b0addc499589cc35439d4ac90d/thumbnail.png", - "monuments": 134, - "barren": false, - "updatedAt": "2023-12-13T11:22:10.406Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EUS.map" - }, - "rust_description": "EUS: That classic EUS experience, now from Rustafied\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:45:55.000Z", - "rust_last_ent_drop": "2023-11-30T15:02:02.789Z", - "rust_last_seed_change": "2023-12-07T18:51:49.074Z", - "rust_last_wipe": "2023-12-07T18:51:49.074Z", - "rust_map_size_ent_count": "2018-07-19T15:57:48.556Z", - "rust_last_wipe_ent": 47595, - "serverSteamId": "90178652942343179" - }, - "private": false, - "createdAt": "2017-05-24T21:42:14.596Z", - "updatedAt": "2023-12-13T12:38:02.997Z", - "portQuery": 28018, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 222, - "firstSeen": "2023-07-10T11:11:09.668Z", - "lastSeen": "2023-07-10T11:34:43.643Z", - "online": false - } - }, - { - "type": "server", - "id": "1395129", - "attributes": { - "id": "1395129", - "name": "Rustafied.com - EU Odd Jr. - Monday", - "address": "euoddjr.rustafied.com", - "ip": "195.60.166.149", - "port": 28015, - "players": 91, - "maxPlayers": 175, - "rank": 242, - "location": [ - 4.8883, - 52.3716 - ], - "status": "online", - "details": { - "tags": [ - "mp175", - "cp94", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1702306965", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 106541, - "rust_fps": 60, - "rust_fps_avg": 59.92, - "rust_gc_cl": 579, - "rust_gc_mb": 2196, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU Odd Jr.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23756, - "rust_url": "https://forum.rustafied.com/store/product/50-vip-slot-eu-odd-jr/", - "rust_world_seed": 1037884914, - "rust_world_size": 3000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-11_Rustafied.com_-_EU_Odd_Jr._-_Monday.map", - "rust_maps": { - "seed": 1037884914, - "size": 3000, - "url": "https://rustmaps.com/map/07a864ede59e462d88035ffbf6e2a509", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/07a864ede59e462d88035ffbf6e2a509/thumbnail.png", - "monuments": 138, - "barren": false, - "updatedAt": "2023-12-13T12:31:58.826Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-11_Rustafied.com_-_EU_Odd_Jr._-_Monday.map" - }, - "rust_description": "EU Odd Junior: A smaller, more intense CQB oriented server.\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T15:02:45.000Z", - "rust_last_ent_drop": "2023-12-07T18:48:19.718Z", - "rust_last_seed_change": "2023-12-11T15:05:38.951Z", - "rust_last_wipe": "2023-12-11T15:05:38.951Z", - "rust_map_size_ent_count": "2019-07-29T15:59:26.205Z", - "rust_last_wipe_ent": 47709, - "serverSteamId": "90178653011800089" - }, - "private": false, - "createdAt": "2017-08-14T16:11:18.093Z", - "updatedAt": "2023-12-13T12:38:31.155Z", - "portQuery": 28018, - "country": "NL", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 23551, - "firstSeen": "2019-10-11T14:19:35.353Z", - "lastSeen": "2023-07-10T10:24:28.848Z", - "online": false - } - }, - { - "type": "server", - "id": "1477148", - "attributes": { - "id": "1477148", - "name": "Rustafied.com - US Long", - "address": "uslong.rustafied.com", - "ip": "64.40.8.101", - "port": 28015, - "players": 51, - "maxPlayers": 200, - "rank": 109, - "location": [ - -96.8704, - 32.8137 - ], - "status": "online", - "details": { - "tags": [ - "mp200", - "cp49", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "na", - "hec50568", - "stok", - "born1701974638", - "gmrust", - "cs91101", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "91101", - "rust_ent_cnt_i": 233531, - "rust_fps": 60, - "rust_fps_avg": 59.85, - "rust_gc_cl": 446, - "rust_gc_mb": 3063, - "rust_hash": "ec50568", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/US Long.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 5138, - "rust_url": "https://forum.rustafied.com/store/product/54-vip-slot-long/", - "rust_world_seed": 857979686, - "rust_world_size": 4000, - "rust_world_levelurl": "http://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Long.map", - "rust_maps": { - "seed": 857979686, - "size": 4000, - "url": "https://rustmaps.com/map/059f8a616837428a92329ae9b8293179", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/059f8a616837428a92329ae9b8293179/thumbnail.png", - "monuments": 146, - "barren": false, - "updatedAt": "2023-12-13T12:28:09.954Z", - "mapUrl": "http://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Long.map" - }, - "rust_description": "Rustafied Long - Medium pop, long wipes.\n\nMap wipe schedule: Monthly (or when forced)\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:43:58.000Z", - "rust_last_ent_drop": "2023-12-07T18:49:38.596Z", - "rust_last_seed_change": "2023-12-07T18:49:38.596Z", - "rust_last_wipe": "2023-12-07T18:49:38.596Z", - "rust_map_size_ent_count": "2020-12-03T18:58:34.111Z", - "rust_last_wipe_ent": 86421, - "serverSteamId": "90178658904339457" - }, - "private": false, - "createdAt": "2017-09-07T19:41:50.885Z", - "updatedAt": "2023-12-13T12:38:30.322Z", - "portQuery": 28018, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 315, - "firstSeen": "2023-07-10T10:47:58.147Z", - "lastSeen": "2023-07-10T10:53:13.118Z", - "online": false - } - }, - { - "type": "server", - "id": "1551651", - "attributes": { - "id": "1551651", - "name": "[EU] 10/2 SPLASH 2X MAIN | VANILLA GAMEPLAY", - "address": null, - "ip": "142.252.253.84", - "port": 28015, - "players": 0, - "maxPlayers": 200, - "rank": 8726, - "location": [ - -121.9552, - 37.3541 - ], - "status": "dead", - "details": { - "official": false, - "rust_type": "modded", - "map": "procedural_3500_d18fd7f3-d307-4", - "environment": "w", - "rust_build": "68603", - "rust_ent_cnt_i": 86449, - "rust_fps": 60, - "rust_fps_avg": 60, - "rust_gc_cl": 147, - "rust_gc_mb": 1745, - "rust_hash": "9bf69f90", - "rust_headerimage": "https://i.imgur.com/TDnI38r.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 27928, - "rust_url": "https://splashgaming.gg", - "rust_world_seed": 2122437811, - "rust_world_size": 3500, - "rust_description": "Formerly Blueberry 2X MAIN, back and rebranded!\n\nWeekly Map Wipes Thursdays @ 5PM CET\nMonthly Blueprint Wipes @ Force\n\n2X Gather, Half Crafting Speed\nMain server, no group limits!\nNo P2W or teleports, pure vanilla roaming.\nHalf Nights, and always bright!", - "rust_modded": true, - "rust_queued_players": 0, - "rust_born": "2022-02-10T16:00:56.000Z", - "rust_last_ent_drop": "2021-12-09T16:05:15.060Z", - "rust_last_seed_change": "2021-09-16T15:01:44.524Z", - "rust_last_wipe": "2021-12-09T16:05:15.060Z", - "rust_map_size_ent_count": "2020-05-07T18:36:52.634Z", - "rust_last_wipe_ent": 44180, - "serverSteamId": "90156752247736329" - }, - "private": false, - "createdAt": "2017-10-01T11:57:09.746Z", - "updatedAt": "2023-12-12T22:40:43.323Z", - "portQuery": 28015, - "country": "US", - "queryStatus": "timeout" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 17075, - "firstSeen": "2019-10-04T19:35:57.875Z", - "lastSeen": "2019-10-18T20:41:18.259Z", - "online": false - } - }, - { - "type": "server", - "id": "1555181", - "attributes": { - "id": "1555181", - "name": "[EU] Rustoria.co - 5x No BPs [Loot+/Shop/Kits] JUST WIPED", - "address": "nobps.rustoria.uk", - "ip": "205.178.168.129", - "port": 28010, - "players": 0, - "maxPlayers": 250, - "rank": 569, - "location": [ - -0.093, - 51.5088 - ], - "status": "online", - "details": { - "tags": [ - "mp250", - "cp0", - "ptrak", - "qp0", - "v2515", - "hd7ad1b5d", - "stok", - "born1702206143", - "gmrust", - "cs90943", - "rustmaps", - "oxide", - "modded", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Procedural Map", - "environment": "w", - "rust_build": "90943", - "rust_ent_cnt_i": 97449, - "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 404, - "rust_gc_mb": 2726, - "rust_hash": "d7ad1b5d", - "rust_headerimage": "https://i.imgur.com/XHxPrYI.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 19911, - "rust_url": "http://rustoria.co", - "rust_world_seed": 45646, - "rust_world_size": 3250, - "rust_world_levelurl": "https://maps.rustmaps.com/243/ca1582e2dce842178283ac9835563590/procedural__3250_09NKK21xZUSqS5sl_UNoug.map", - "rust_maps": { - "seed": 45646, - "size": 3250, - "url": "https://rustmaps.com/map/5bfd10436a60411bad79113b97374008", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/5bfd10436a60411bad79113b97374008/thumbnail.png", - "monuments": 158, - "barren": false, - "updatedAt": "2023-12-13T11:49:08.340Z", - "mapUrl": "https://maps.rustmaps.com/243/ca1582e2dce842178283ac9835563590/procedural__3250_09NKK21xZUSqS5sl_UNoug.map" - }, - "rust_description": "Rustoria.co 5x No BPs EU - The trend setters of Modded Rust.\n\\tMap wipes Wednesday @ 4PM UK / 5PM CEST & Sunday @ 11AM UK / 12PM CEST\n\nAll blueprints unlocked by default. Known to be the perfect survival server to practice your skills.\n\nKits & VIP available at donate.rustoria.co\n\nActive non playing admins. 24/7 admin support. Custom plugins. Amazing performance. English only chat. Brilliant loot tables.\n\nView our range of specialised servers at https://rustoria.co/servers", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-10T11:02:23.000Z", - "rust_last_ent_drop": "2023-10-25T15:13:58.280Z", - "rust_last_seed_change": "2023-10-29T11:11:07.376Z", - "rust_last_wipe": "2023-10-29T11:11:07.376Z", - "rust_map_size_ent_count": "2018-07-29T09:59:46.963Z", - "rust_last_wipe_ent": 52740, - "serverSteamId": "90178653617238043" - }, - "private": false, - "createdAt": "2017-10-02T15:14:48.121Z", - "updatedAt": "2023-12-13T12:34:21.518Z", - "portQuery": 28015, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 18352, - "firstSeen": "2019-11-07T09:32:21.980Z", - "lastSeen": "2019-11-07T16:22:00.755Z", - "online": false - } - }, - { - "type": "server", - "id": "1720719", - "attributes": { - "id": "1720719", - "name": "Rustafied.com - AU Long", - "address": "aulong.rustafied.com", - "ip": "172.111.33.12", - "port": 28015, - "players": 265, - "maxPlayers": 300, - "rank": 28, - "location": [ - 151.2073, - -33.8678 - ], - "status": "online", - "details": { - "tags": [ - "mp300", - "cp265", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "oc", - "h52933105", - "stok", - "born1701974792", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 368710, - "rust_fps": 25, - "rust_fps_avg": 23.62, - "rust_gc_cl": 636, - "rust_gc_mb": 6936, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/AU Long.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 63478, - "rust_url": "https://forum.rustafied.com/store/product/56-vip-slot-au-long/", - "rust_world_seed": 563753524, - "rust_world_size": 4000, - "rust_world_levelurl": "http://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_AU_Long.map", - "rust_maps": { - "seed": 563753524, - "size": 4000, - "url": "https://rustmaps.com/map/f60f468a7b7f484198fe28b57a208541", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/f60f468a7b7f484198fe28b57a208541/thumbnail.png", - "monuments": 151, - "barren": false, - "updatedAt": "2023-12-13T11:53:20.681Z", - "mapUrl": "http://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_AU_Long.map" - }, - "rust_description": "AU Long: Monthly wipes, bigger pop.\n\nMap wipe schedule: Monthly (or when forced)\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:46:32.000Z", - "rust_last_ent_drop": "2023-12-07T18:48:14.143Z", - "rust_last_seed_change": "2023-12-07T18:48:14.143Z", - "rust_last_wipe": "2023-12-07T18:48:14.143Z", - "rust_map_size_ent_count": "2021-02-04T19:07:34.618Z", - "rust_last_wipe_ent": 85590, - "serverSteamId": "90178640631815187" - }, - "private": false, - "createdAt": "2017-11-30T23:29:41.029Z", - "updatedAt": "2023-12-13T12:38:26.345Z", - "portQuery": 28018, - "country": "AU", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 24911, - "firstSeen": "2018-12-06T07:27:11.290Z", - "lastSeen": "2018-12-13T04:55:24.987Z", - "online": false - } - }, - { - "type": "server", - "id": "1984807", - "attributes": { - "id": "1984807", - "name": "Survive Or Die - Staging | !help for Kit Info", - "address": null, - "ip": "68.68.23.174", - "port": 28021, - "players": 1, - "maxPlayers": 100, - "rank": 2154, - "location": [ - -83.1498, - 42.6064 - ], - "status": "online", - "details": { - "tags": [ - "mp100", - "cp2", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "h7190f474", - "stok", - "born1701363251", - "gmrust", - "cs90995" - ], - "official": false, - "rust_type": "community", - "map": "Procedural Map", - "environment": "w", - "rust_build": "90995", - "rust_ent_cnt_i": 138839, - "rust_fps": 27, - "rust_fps_avg": 26.95, - "rust_gc_cl": 219, - "rust_gc_mb": 3993, - "rust_hash": "7190f474", - "rust_headerimage": "http://www.ironglove.com/SoD.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 203219, - "rust_url": "https://discord.gg/KPw25m5", - "rust_world_seed": 97531904, - "rust_world_size": 4300, - "rust_maps": { - "seed": 97531904, - "size": 4300, - "url": "https://rustmaps.com/map/4300_97531904", - "thumbnailUrl": "https://content.rustmaps.com/maps/243/19ca2cc172cc4824b09f22da2488bd00/thumbnail.png", - "monuments": 167, - "barren": false, - "updatedAt": "2023-12-13T10:59:17.760Z" - }, - "rust_description": "Welcome to Survive Or Die's 100k Kit Staging Server. No Racism or Homophobic Slurs. This server only wipes when forced by Facepunch. \n\nNon PVP BP's are unlocked when you join. \n\nIn-Game Commands: \n!help = in-game command list. \n!kit = 100k Wood, Stone, and Metal Fragments. \n!electric1 = Primary Electric components . \n!electric2 = The rest of the Electric components. \n!car = The Low Quality Car Parts & a Modular Car Lift. \n!farm = Farming 2.0 items. \n!misc = Nightvision Goggles, 6 Elevators. cctv camera's. \n!industrial = all Industrial System components. \n\nPlease join our Discord if you have any issues: https://discord.gg/KPw25m5. \nWalling off monuments or quarries is not permitted. \n\nSurvive Or Die also runs a low pop Vanilla server which does a full wipe every 2 weeks. We hope you enjoy our servers. Welcome to our Community.", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-11-30T16:54:11.000Z", - "rust_last_ent_drop": "2023-01-20T19:04:36.005Z", - "rust_last_seed_change": "2023-11-30T16:58:34.754Z", - "rust_last_wipe": "2023-11-30T16:58:34.754Z", - "rust_map_size_ent_count": "2018-06-28T20:01:43.304Z", - "rust_last_wipe_ent": 120134, - "serverSteamId": "90178604339451931" - }, - "private": false, - "createdAt": "2018-02-13T05:41:36.755Z", - "updatedAt": "2023-12-13T12:37:02.026Z", - "portQuery": 28019, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 3839, - "firstSeen": "2020-02-06T11:46:55.964Z", - "lastSeen": "2020-02-06T12:50:55.227Z", - "online": false - } - }, - { - "type": "server", - "id": "2082241", - "attributes": { - "id": "2082241", - "name": "Paranoid.gg EU 3x Solo/Duo/Trio|Loot+|Shop|Kits 11/12 JUSTWIPED", - "address": null, - "ip": "209.237.141.22", - "port": 28013, - "players": 33, - "maxPlayers": 250, - "rank": 299, - "location": [ - 4.9453, - 52.3109 - ], - "status": "online", - "details": { - "tags": [ - "mp250", - "cp33", - "ptrak", - "qp0", - "v2515", - "eu", - "h5e602aa3", - "stok", - "born1702303060", - "gmrust", - "cs90996", - "oxide", - "modded", - "rustmaps" - ], - "official": false, - "rust_type": "modded", - "map": "Paranoid FPS+ Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 144451, - "rust_fps": 30, - "rust_fps_avg": 29.9, - "rust_gc_cl": 243, - "rust_gc_mb": 2746, - "rust_hash": "5e602aa3", - "rust_headerimage": "https://paranoid.gg/upload/paranoidimages/serverbanners/eu3xtrio-min.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23433, - "rust_url": "https://discord.gg/paranoid", - "rust_world_seed": 1337, - "rust_world_size": 3700, - "rust_world_levelurl": "https://maps.rustmaps.com/244/e157dedcf6b741379a3e04445b8c0b15/ParanoidSmall_1163_3700_e157dedcf6b741379a3e04445b8c0b1512-04-2023.map", - "rust_maps": { - "seed": 1337, - "size": 3700, - "url": "https://rustmaps.com/map/2bc53ebee8a848c3b1ff54503dadb03f", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/2bc53ebee8a848c3b1ff54503dadb03f/thumbnail.png", - "monuments": 145, - "barren": false, - "updatedAt": "2023-12-13T10:19:41.769Z", - "mapUrl": "https://maps.rustmaps.com/244/e157dedcf6b741379a3e04445b8c0b15/ParanoidSmall_1163_3700_e157dedcf6b741379a3e04445b8c0b1512-04-2023.map" - }, - "rust_description": "We strive to provide you with the best experience on Rust.\nWith a dedicated development team and 24/7 admin support.\nAll while running on the highest-tier network and hardware.\n\n\\t - 3x Gather Rate\n\\t - Max Team: 3\n\\t - Custom Anti-Cheat\n\\t - Automated Teaming Detection\n\\t - Faster Smelting/Whole Base Workbench\n\\t - Synchronised BPs\n\\t - Loot+ Loot-tables\n\\t - Loyalty Ranks (Get Donor Perks for Playing)\n\\t - Combat/Raid Block\n\\t - Shop\n\\t - Leaderboards\n\\t - PVP/Raid Markers", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T13:57:40.000Z", - "rust_last_ent_drop": "2023-12-11T14:06:50.163Z", - "rust_last_seed_change": "2023-04-21T13:04:22.959Z", - "rust_last_wipe": "2023-12-11T14:06:50.163Z", - "rust_map_size_ent_count": "2018-07-29T22:12:40.088Z", - "rust_last_wipe_ent": 65551, - "serverSteamId": "90178652997655562" - }, - "private": false, - "createdAt": "2018-03-16T14:12:43.994Z", - "updatedAt": "2023-12-13T12:35:56.308Z", - "portQuery": 28015, - "country": "NL", - "queryStatus": "timeout" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - }, - "organization": { - "data": { - "type": "organization", - "id": "878" - } - } - }, - "meta": { - "timePlayed": 14522, - "firstSeen": "2020-01-07T23:51:54.193Z", - "lastSeen": "2020-01-08T03:56:48.597Z", - "online": false - } - }, - { - "type": "server", - "id": "2387727", - "attributes": { - "id": "2387727", - "name": "Paranoid.gg US 3x Solo/Duo/Trio|Loot+|Shop|Kits 12/11 JUSTWIPED", - "address": null, - "ip": "199.231.233.171", - "port": 28013, - "players": 51, - "maxPlayers": 295, - "rank": 132, - "location": [ - -87.6306, - 41.8426 - ], - "status": "online", - "details": { - "tags": [ - "mp295", - "cp51", - "ptrak", - "qp0", - "v2515", - "na", - "h5e602aa3", - "stok", - "born1702328256", - "gmrust", - "cs90996", - "oxide", - "modded", - "rustmaps" - ], - "official": false, - "rust_type": "modded", - "map": "Paranoid FPS+ Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 257394, - "rust_fps": 30, - "rust_fps_avg": 29.77, - "rust_gc_cl": 458, - "rust_gc_mb": 5191, - "rust_hash": "5e602aa3", - "rust_headerimage": "https://paranoid.gg/upload/paranoidimages/serverbanners/us3xtrio-min.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 83023, - "rust_url": "https://discord.gg/paranoid", - "rust_world_seed": 1337, - "rust_world_size": 3700, - "rust_world_levelurl": "https://maps.rustmaps.com/244/4ef6b9919baa49218f5e4c005adb9289/ParanoidSmall_79344_3700_4ef6b9919baa49218f5e4c005adb928912-04-2023.map", - "rust_maps": { - "seed": 1337, - "size": 3700, - "url": "https://rustmaps.com/map/4c8d2553f64e46f5a81dbbf5ce16ed1c", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/4c8d2553f64e46f5a81dbbf5ce16ed1c/thumbnail.png", - "monuments": 133, - "barren": false, - "updatedAt": "2023-12-13T12:12:54.942Z", - "mapUrl": "https://maps.rustmaps.com/244/4ef6b9919baa49218f5e4c005adb9289/ParanoidSmall_79344_3700_4ef6b9919baa49218f5e4c005adb928912-04-2023.map" - }, - "rust_description": "We strive to provide you with the best experience on Rust.\nWith a dedicated development team and 24/7 admin support.\nAll while running on the highest-tier network and hardware.\n\n\\t - 3x Gather Rate\n\\t - Max Team: 3\n\\t - Custom Anti-Cheat\n\\t - Automated Teaming Detection\n\\t - Faster Smelting/Whole Base Workbench\n\\t - Synchronised BPs\n\\t - Loot+ Loot-tables\n\\t - Loyalty Ranks (Get Donor Perks for Playing)\n\\t - Combat/Raid Block\n\\t - Shop\n\\t - Leaderboards\n\\t - PVP/Raid Markers", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T20:57:36.000Z", - "rust_last_ent_drop": "2023-12-11T21:00:52.656Z", - "rust_last_seed_change": "2023-04-21T20:02:36.982Z", - "rust_last_wipe": "2023-12-11T21:00:52.656Z", - "rust_map_size_ent_count": "2018-07-30T04:04:58.006Z", - "rust_last_wipe_ent": 64863, - "serverSteamId": "90178636121919495" - }, - "private": false, - "createdAt": "2018-06-20T19:33:50.249Z", - "updatedAt": "2023-12-13T12:38:02.858Z", - "portQuery": 28015, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - }, - "organization": { - "data": { - "type": "organization", - "id": "878" - } - } - }, - "meta": { - "timePlayed": 11228, - "firstSeen": "2019-09-27T12:33:56.684Z", - "lastSeen": "2019-09-27T15:41:04.329Z", - "online": false - } - }, - { - "type": "server", - "id": "2569573", - "attributes": { - "id": "2569573", - "name": "[EU] Stevious 2x Main | Vanilla | 7/12", - "address": null, - "ip": "64.52.81.44", - "port": 28010, - "players": 18, - "maxPlayers": 260, - "rank": 114, - "location": [ - -0.03, - 51.5031 - ], - "status": "online", - "details": { - "tags": [ - "mp260", - "cp15", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "EU", - "h47ddea0", - "stok", - "born1701975347", - "gmrust", - "cs90943", - "rustmaps", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Custom Map", - "environment": "w", - "rust_build": "90943", - "rust_ent_cnt_i": 183701, - "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 512, - "rust_gc_mb": 3061, - "rust_hash": "47ddea0", - "rust_headerimage": "https://www.stevious.io/svr_images/Stevious_2x_Background_1.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 25475, - "rust_url": "https://stevious.io/", - "rust_world_seed": 1644918272, - "rust_world_size": 3800, - "rust_world_levelurl": "https://maps.rustmaps.com/243/56b94ab6991c456c8cc1f618cf56192a/-Uiz6kIXH0e9gU3n-EnZNw/stevious_main_3800_1644918272v1.map", - "rust_maps": { - "seed": 1644918272, - "size": 3800, - "url": "https://rustmaps.com/map/30549af4dc0e40da9bfe2df53b441c13", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/30549af4dc0e40da9bfe2df53b441c13/thumbnail.png", - "monuments": 117, - "barren": false, - "updatedAt": "2023-12-13T10:44:46.602Z", - "mapUrl": "https://maps.rustmaps.com/243/56b94ab6991c456c8cc1f618cf56192a/-Uiz6kIXH0e9gU3n-EnZNw/stevious_main_3800_1644918272v1.map" - }, - "rust_description": "Weekly wipes and the following modifications: \n\n2x Gather Rates (2.5x for Sulfur and Wood) \nHalf smelt and crafting speeds (Vanilla for raiding items) \nBuilding and Level 1 Workbench blueprints unlocked \nComponent System loot tables (Junk items removed) \n\nVisit https://stevious.io for VIP (Queue Skip) and Rules / Discord information.", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:55:47.000Z", - "rust_last_ent_drop": "2023-12-07T19:01:32.961Z", - "rust_last_seed_change": "2023-12-07T19:01:32.961Z", - "rust_last_wipe": "2023-12-07T19:01:32.961Z", - "rust_last_wipe_ent": 47248, - "serverSteamId": "90178652631027717" - }, - "private": false, - "createdAt": "2018-08-16T03:02:10.192Z", - "updatedAt": "2023-12-13T12:38:19.490Z", - "portQuery": 28015, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 3698, - "firstSeen": "2019-10-20T21:02:08.469Z", - "lastSeen": "2019-10-20T22:03:46.900Z", - "online": false - } - }, - { - "type": "server", - "id": "2788421", - "attributes": { - "id": "2788421", - "name": "Rustafied.com - EU Medium III", - "address": "eumedium3.rustafied.com", - "ip": "195.60.166.148", - "port": 28015, - "players": 137, - "maxPlayers": 350, - "rank": 47, - "location": [ - 4.8883, - 52.3716 - ], - "status": "online", - "details": { - "tags": [ - "mp350", - "cp134", - "ptrak", - "qp0", - "v2515", - "biweekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1701974750", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 265815, - "rust_fps": 52, - "rust_fps_avg": 51.27, - "rust_gc_cl": 512, - "rust_gc_mb": 4026, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU Medium 3.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23747, - "rust_url": "https://forum.rustafied.com/store/product/64-vip-slot-eu-medium-iii/", - "rust_world_seed": 1231654146, - "rust_world_size": 4000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Medium_III.map", - "rust_maps": { - "seed": 1231654146, - "size": 4000, - "url": "https://rustmaps.com/map/c63d356d196d4fdda62421203d8f5dff", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/c63d356d196d4fdda62421203d8f5dff/thumbnail.png", - "monuments": 166, - "barren": false, - "updatedAt": "2023-12-13T11:22:10.404Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Medium_III.map" - }, - "rust_description": "That sweet spot between main and low pop.\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:45:50.000Z", - "rust_last_ent_drop": "2023-12-07T18:50:05.844Z", - "rust_last_seed_change": "2023-12-07T18:50:05.844Z", - "rust_last_wipe": "2023-12-07T18:50:05.844Z", - "rust_map_size_ent_count": "2021-02-18T13:59:17.985Z", - "rust_last_wipe_ent": 89728, - "serverSteamId": "90178652918122520" - }, - "private": false, - "createdAt": "2018-10-31T18:43:27.943Z", - "updatedAt": "2023-12-13T12:38:14.046Z", - "portQuery": 28018, - "country": "NL", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 40869, - "firstSeen": "2022-10-06T20:48:04.813Z", - "lastSeen": "2022-10-09T23:12:34.408Z", - "online": false - } - }, - { - "type": "server", - "id": "2800656", - "attributes": { - "id": "2800656", - "name": "Paranoid.gg US 3x Solo Only|Loot+|Shop|Kits 12/11 JUSTWIPED", - "address": null, - "ip": "199.231.233.171", - "port": 28023, - "players": 45, - "maxPlayers": 250, - "rank": 250, - "location": [ - -87.6306, - 41.8426 - ], - "status": "online", - "details": { - "tags": [ - "mp250", - "cp45", - "ptrak", - "qp0", - "v2515", - "na", - "h5e602aa3", - "stok", - "born1702328260", - "gmrust", - "cs90996", - "oxide", - "modded", - "rustmaps" - ], - "official": false, - "rust_type": "modded", - "map": "Paranoid FPS+ Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 245768, - "rust_fps": 30, - "rust_fps_avg": 28.88, - "rust_gc_cl": 416, - "rust_gc_mb": 4916, - "rust_hash": "5e602aa3", - "rust_headerimage": "https://paranoid.gg/upload/paranoidimages/serverbanners/us3xsolo-min.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 83043, - "rust_url": "https://discord.gg/paranoid", - "rust_world_seed": 1337, - "rust_world_size": 3700, - "rust_world_levelurl": "https://maps.rustmaps.com/244/c82ac9b30460452fbbf45a073f0dbbf7/ParanoidSmall_4194_3700_c82ac9b30460452fbbf45a073f0dbbf712-04-2023.map", - "rust_maps": { - "seed": 1337, - "size": 3700, - "url": "https://rustmaps.com/map/8bf94ba7ace14ec6ad422135302d45b0", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/8bf94ba7ace14ec6ad422135302d45b0/thumbnail.png", - "monuments": 148, - "barren": false, - "updatedAt": "2023-12-13T10:27:02.012Z", - "mapUrl": "https://maps.rustmaps.com/244/c82ac9b30460452fbbf45a073f0dbbf7/ParanoidSmall_4194_3700_c82ac9b30460452fbbf45a073f0dbbf712-04-2023.map" - }, - "rust_description": "We strive to provide you with the best experience on Rust.\nWith a dedicated development team and 24/7 admin support.\nAll while running on the highest-tier network and hardware.\n\n\\t - 3x Gather Rate\n\\t - Max Team: 1\n\\t - Custom Anti-Cheat\n\\t - Automated Teaming Detection\n\\t - Faster Smelting/Whole Base Workbench\n\\t - Synchronised BPs\n\\t - Loot+ Loot-tables\n\\t - Loyalty Ranks (Get Donor Perks for Playing)\n\\t - Combat/Raid Block\n\\t - Shop\n\\t - Leaderboards\n\\t - PVP/Raid Markers", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T20:57:40.000Z", - "rust_last_ent_drop": "2023-12-11T21:01:38.427Z", - "rust_last_seed_change": "2023-04-21T20:05:44.689Z", - "rust_last_wipe": "2023-12-11T21:01:38.427Z", - "rust_last_wipe_ent": 65800, - "serverSteamId": "90178636121884679" - }, - "private": false, - "createdAt": "2018-11-04T19:00:15.137Z", - "updatedAt": "2023-12-13T12:38:12.422Z", - "portQuery": 28025, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - }, - "organization": { - "data": { - "type": "organization", - "id": "878" - } - } - }, - "meta": { - "timePlayed": 7969, - "firstSeen": "2021-10-28T07:06:41.137Z", - "lastSeen": "2022-06-04T07:55:17.907Z", - "online": false - } - }, - { - "type": "server", - "id": "2889799", - "attributes": { - "id": "2889799", - "name": "[AU] Rustafarian.com - 2x Mondays | Solo/Duo/Trio BP Wipe", - "address": null, - "ip": "51.161.213.172", - "port": 28020, - "players": 0, - "maxPlayers": 120, - "rank": 2857, - "location": [ - 151.2073, - -33.8678 - ], - "status": "online", - "details": { - "tags": [ - "mp120", - "cp0", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "OC", - "h47ddea0", - "stok", - "born1702248195", - "gmrust", - "cs90943", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Custom Map", - "environment": "w", - "rust_build": "90943", - "rust_ent_cnt_i": 66776, - "rust_fps": 130, - "rust_fps_avg": 130.4, - "rust_gc_cl": 188, - "rust_gc_mb": 2040, - "rust_hash": "47ddea0", - "rust_headerimage": "https://cdn.discordapp.com/attachments/622994170256031765/636104040740159492/RustafarianSoloDuoTrioHeader.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 70429, - "rust_url": "https://www.rustafarian.com/", - "rust_world_seed": 1337, - "rust_world_size": 3200, - "rust_maps": { - "seed": 1337, - "size": 4500, - "url": "https://rustmaps.com/map/4500_1337", - "thumbnailUrl": "https://content.rustmaps.com/maps/243/7559cdc37406421391d0107e33480ae4/thumbnail.png", - "monuments": 148, - "barren": false, - "updatedAt": "2023-11-26T20:45:16.008Z" - }, - "rust_description": "Welcome To Rustafarian \n|Hosted In Aust| \n|Slightly Modded| \n|Last Wipe| 11/12/23 (BP wipe) \n|Next Wipe 18/12/23(Map Wipe) \n|Map Size| 3300 \n|Discord| www.rustafarian.com/discord \n \nModded Status: \n \n~2x Gather~ \n~2x Craft~ \n~2x Smelting~ \n~2x Recycle~ \n~Better Loot~ \n~Reduced Decay~ \n \n .:Rules:. \n MAX GROUP SIZE 3 \n \n1. No Hacking \n2. No IRL threats (keep rust in the game) \n3. No Doxxing \n4. No Admin Abuse \n TimeZone: GMT+10", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-10T22:43:15.000Z", - "rust_last_ent_drop": "2023-12-12T17:03:31.439Z", - "rust_last_seed_change": "2023-08-06T21:00:03.027Z", - "rust_last_wipe": "2023-12-12T17:03:31.439Z", - "rust_map_size_ent_count": "2021-01-10T15:04:42.446Z", - "rust_last_wipe_ent": 0, - "serverSteamId": "90178639046067218" - }, - "private": false, - "createdAt": "2018-11-23T02:34:17.013Z", - "updatedAt": "2023-12-13T12:34:10.203Z", - "portQuery": 28020, - "country": "AU", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 546, - "firstSeen": "2019-01-28T21:25:01.011Z", - "lastSeen": "2019-01-28T21:34:07.000Z", - "online": false - } - }, - { - "type": "server", - "id": "2933685", - "attributes": { - "id": "2933685", - "name": "Rusty Moose |US Biweekly|", - "address": "biweekly.us.moose.gg", - "ip": "168.100.163.13", - "port": 28010, - "players": 78, - "maxPlayers": 200, - "rank": 25, - "location": [ - -96.8022, - 32.7797 - ], - "status": "online", - "details": { - "tags": [ - "mp200", - "cp79", - "ptrak", - "qp0", - "v2515", - "vanilla", - "biweekly", - "NA", - "h14d5a3a9", - "stok", - "born1701975662", - "gmrust", - "cs90996" - ], - "official": true, - "rust_type": "official", - "map": "Moose Maps", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 278045, - "rust_fps": 30, - "rust_fps_avg": 29.88, - "rust_gc_cl": 446, - "rust_gc_mb": 8556, - "rust_hash": "14d5a3a9", - "rust_headerimage": "https://i.imgur.com/pNucqzG.jpg", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 163968, - "rust_url": "https://moose.gg", - "rust_world_seed": 1337, - "rust_world_size": 4000, - "rust_maps": { - "seed": 1337, - "size": 4000, - "url": "https://rustmaps.com/map/0e14dd2da5634c5cadba75468bf3393c", - "thumbnailUrl": "https://content.rustmaps.com/maps/243/0e14dd2da5634c5cadba75468bf3393c/thumbnail.png", - "monuments": 137, - "barren": false, - "updatedAt": "2023-12-07T00:25:20.868Z", - "mapUrl": "https://maps.rustmaps.com/243/38a7f8e7310d441ca06edb12f57acd04/4000_z1tdvYVcFECSZy1w48Er5Q.map" - }, - "rust_description": "Official Rusty Moose US Biweekly \n\nMap Wipes: Biweekly (2 weeks) @ 3pm EST (unless forced wipe) \nBlueprint Wipes: N/A (doesn't wipe BP) \n\nBe sure to join our discord to get more involved with the community: discord.gg/moose", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:01:02.000Z", - "rust_last_ent_drop": "2023-12-07T19:13:48.990Z", - "rust_last_seed_change": "2021-05-06T18:01:23.501Z", - "rust_last_wipe": "2023-12-07T19:13:48.990Z", - "rust_last_wipe_ent": 73839, - "serverSteamId": "90178615138481177" - }, - "private": false, - "createdAt": "2018-12-04T04:08:54.060Z", - "updatedAt": "2023-12-13T12:37:29.033Z", - "portQuery": 28015, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 25879, - "firstSeen": "2020-06-26T13:38:18.801Z", - "lastSeen": "2020-06-28T18:36:49.916Z", - "online": false - } - }, - { - "type": "server", - "id": "2950091", - "attributes": { - "id": "2950091", - "name": "Rustafied.com - AU Main", - "address": "aumain.rustafied.com", - "ip": "172.111.33.3", - "port": 28015, - "players": 86, - "maxPlayers": 250, - "rank": 70, - "location": [ - 151.2073, - -33.8678 - ], - "status": "online", - "details": { - "tags": [ - "mp250", - "cp85", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "oc", - "h52933105", - "stok", - "born1701974867", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 214882, - "rust_fps": 56, - "rust_fps_avg": 56.07, - "rust_gc_cl": 658, - "rust_gc_mb": 4100, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/AU Main.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 63366, - "rust_url": "https://forum.rustafied.com/store/product/47-vip-slot-au-main/", - "rust_world_seed": 864167228, - "rust_world_size": 4000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_AU_Main.map", - "rust_maps": { - "seed": 864167228, - "size": 4000, - "url": "https://rustmaps.com/map/f34226c2a62b44f4986ba62f040948c5", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/f34226c2a62b44f4986ba62f040948c5/thumbnail.png", - "monuments": 132, - "barren": false, - "updatedAt": "2023-12-13T11:05:53.506Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_AU_Main.map" - }, - "rust_description": "AU Main: Our original server, now in AU!\n\nMap wipe schedule: Weekly (or when forced)\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:47:47.000Z", - "rust_last_ent_drop": "2023-11-30T04:05:08.635Z", - "rust_last_seed_change": "2023-12-07T18:53:16.272Z", - "rust_last_wipe": "2023-12-07T18:53:16.272Z", - "rust_map_size_ent_count": "2021-02-18T02:59:40.047Z", - "rust_last_wipe_ent": 86956, - "serverSteamId": "90178640696803338" - }, - "private": false, - "createdAt": "2018-12-08T19:23:38.988Z", - "updatedAt": "2023-12-13T12:38:27.803Z", - "portQuery": 28018, - "country": "AU", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 39, - "firstSeen": "2023-07-10T10:55:15.499Z", - "lastSeen": "2023-07-10T10:55:54.473Z", - "online": false - } - }, - { - "type": "server", - "id": "3070655", - "attributes": { - "id": "3070655", - "name": "[US] CNDBLOOD Solo Only | 2x Vanilla | Thursdays [03/30]", - "address": "us-solo.cndblood.ca", - "ip": "142.44.143.143", - "port": 28020, - "players": 0, - "maxPlayers": 125, - "rank": 9224, - "location": [ - -73.8779, - 45.3151 - ], - "status": "dead", - "details": { - "official": false, - "rust_type": "modded", - "map": "Procedural Map", - "environment": "w", - "rust_build": "80462", - "rust_ent_cnt_i": 65440, - "rust_fps": 138, - "rust_fps_avg": 138.42, - "rust_gc_cl": 361, - "rust_gc_mb": 3374, - "rust_hash": "6ee71e1", - "rust_headerimage": "https://i.imgur.com/OMsvUFG.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 236103, - "rust_url": "https://cndblood.com", - "rust_world_seed": 124060703, - "rust_world_size": 3500, - "rust_maps": { - "seed": 124060703, - "size": 3500, - "url": "https://rustmaps.com/map/3500_124060703", - "thumbnailUrl": "https://files.rustmaps.com/img/231/00b91bb6-17fc-4de2-a428-d75b0b8fcdf1/Thumbnail.png", - "monuments": 170, - "barren": false - }, - "rust_description": "Welcome to CNDBLOOD's Solo Only \n \n * Server wipes every week on Thursday \n * Blueprint wipes are monthly \n * High performance \n * No Allies allowed \n * Map size | 3500 \n * Max group limit | ( 1 ) \n \nDo you think you found a cheater? Wish to report them? Please use the following command to report a player ( /report *player* ) and if it is an urgent situation, such as IRL threats or similar, join our Discord server at cndblood.com/discord and send an Admin a DM. Do NOT report him in the general chat! We don't want the cheater to toggle off knowing an Admin is watching them. \n \nPaying for a high performance Dedicated server can be super expensive. Please consider purchasing a VIP rank over at >> cndblood.com << Follow the instructions in the #how-to-verify channel to unlock all other channels.\n \nPlease remember, this is just a video game. We are all here to have fun!", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-03-30T15:37:07.000Z", - "rust_last_ent_drop": "2022-03-17T15:41:08.471Z", - "rust_last_seed_change": "2023-03-30T15:40:44.236Z", - "rust_last_wipe": "2023-03-30T15:40:44.236Z", - "rust_last_wipe_ent": 57327, - "serverSteamId": "90170941398544393" - }, - "private": false, - "createdAt": "2019-01-02T02:00:34.453Z", - "updatedAt": "2023-12-12T22:38:35.412Z", - "portQuery": 28022, - "country": "CA", - "queryStatus": "timeout" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 8197, - "firstSeen": "2019-05-10T02:28:50.254Z", - "lastSeen": "2021-10-30T08:52:03.464Z", - "online": false - } - }, - { - "type": "server", - "id": "3076312", - "attributes": { - "id": "3076312", - "name": "Rustafied.com - US Medium III", - "address": "usmedium3.rustafied.com", - "ip": "104.143.2.1", - "port": 28015, - "players": 35, - "maxPlayers": 350, - "rank": 82, - "location": [ - -77.0369, - 38.9072 - ], - "status": "online", - "details": { - "tags": [ - "mp350", - "cp35", - "ptrak", - "qp0", - "v2515", - "biweekly", - "vanilla", - "na", - "hec50568", - "stok", - "born1701974617", - "gmrust", - "cs91101", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "91101", - "rust_ent_cnt_i": 231041, - "rust_fps": 60, - "rust_fps_avg": 59.8, - "rust_gc_cl": 414, - "rust_gc_mb": 3037, - "rust_hash": "ec50568", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/US Medium 3.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 5565, - "rust_url": "https://forum.rustafied.com/store/product/65-vip-slot-medium-iii/", - "rust_world_seed": 1901963346, - "rust_world_size": 4000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Medium_III.map", - "rust_maps": { - "seed": 1901963346, - "size": 4000, - "url": "https://rustmaps.com/map/048a67939de34a389ca24ab08674f58b", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/048a67939de34a389ca24ab08674f58b/thumbnail.png", - "monuments": 138, - "barren": false, - "updatedAt": "2023-12-13T11:11:26.454Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_US_Medium_III.map" - }, - "rust_description": "Medium: That sweet spot between main and low pop.\n\nMap wipe schedule: 2 weeks (or when forced)\nBP and wipe info: rustafied.com/discord\n\nWant to skip the queue? Get VIP at rustafied.com/vip\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules\n\nNeed help? rustafied.com/support\nJoin our community! forum.rustafied.com", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:43:37.000Z", - "rust_last_ent_drop": "2023-11-16T20:02:35.601Z", - "rust_last_seed_change": "2023-12-07T18:46:58.584Z", - "rust_last_wipe": "2023-12-07T18:46:58.584Z", - "rust_map_size_ent_count": "2021-02-04T18:57:39.669Z", - "rust_last_wipe_ent": 90589, - "serverSteamId": "90178658741534724" - }, - "private": false, - "createdAt": "2019-01-02T22:07:42.479Z", - "updatedAt": "2023-12-13T12:37:11.359Z", - "portQuery": 28018, - "country": "US", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 56, - "firstSeen": "2023-07-10T10:36:49.174Z", - "lastSeen": "2023-07-10T10:37:45.243Z", - "online": false - } - }, - { - "type": "server", - "id": "3298068", - "attributes": { - "id": "3298068", - "name": "RGS Vanilla Monthly - 1/4th Upkeep | No BP Wipe | 2x nodes", - "address": null, - "ip": "216.39.240.66", - "port": 28010, - "players": 28, - "maxPlayers": 160, - "rank": 223, - "location": [ - -77.0369, - 38.9072 - ], - "status": "online", - "details": { - "tags": [ - "mp160", - "cp27", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "h47ddea0", - "stok", - "born1701976145", - "gmrust", - "cs90943", - "oxide" - ], - "official": false, - "rust_type": "community", - "map": "Custom Map", - "environment": "w", - "rust_build": "90943", - "rust_ent_cnt_i": 235250, - "rust_fps": 30, - "rust_fps_avg": 29.88, - "rust_gc_cl": 278, - "rust_gc_mb": 4483, - "rust_hash": "47ddea0", - "rust_headerimage": "https://media.discordapp.net/attachments/1006963182889349150/1135862384771203122/4k-Wallpaper1_1.png?width=818&height=460", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 84261, - "rust_url": "https://discord.gg/rgsofficial", - "rust_world_seed": 1337, - "rust_world_size": 3900, - "rust_maps": { - "seed": 1158535886, - "size": 4250, - "url": "https://rustmaps.com/map/4250_1158535886", - "thumbnailUrl": "https://files.rustmaps.com/img/231/abe58db2-9389-4d37-8d58-99daeaab00ee/Thumbnail.png", - "monuments": 169, - "barren": false - }, - "rust_description": "Our Server's have all been built and designed to fill voids in the Rust Community. At RGS, were committed to serving the Rust Community in creative and fun way's. High Performance Dedicated Server's, so you can frag out without lag! All the server rules can be found in our discord. \n\nServer Features\n\u2022 1/4 Upkeep, so you can build bigger\n\u2022 2X the amount of Nodes, Tree's, Animals, Hemp and Berry Spawns in the map\n\u2022 Mini copters spawn on the roads (Like OG Vanilla)\n\u2022 2X Plant Growth Times for all you Plant Farmers \n\u2022 Bags only need to be 10 meters apart for separate bag timers (Instead of 50 Meters)\n\u2022 More wolves, bears and Boars for easy animal fat and leather... Zero Chickens n Deers\n\u2022 8 minute Hackable Locked Crate Timer vs the standard 15 minute Timer...\n\nhttps://discord.gg/rgsofficial | The Best Vanilla Experience!", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:09:05.000Z", - "rust_last_ent_drop": "2023-12-07T19:10:13.865Z", - "rust_last_seed_change": "2023-03-02T19:05:04.913Z", - "rust_last_wipe": "2023-12-07T19:10:13.865Z", - "rust_last_wipe_ent": 75524, - "serverSteamId": "90178635828713474" - }, - "private": false, - "createdAt": "2019-02-21T23:54:38.434Z", - "updatedAt": "2023-12-13T12:37:18.711Z", - "portQuery": 28015, - "country": "US", - "queryStatus": "valid", - "rconActive": true, - "metadata": { - "connectionType": "ws", - "statusInterval": 15, - "disabledReason": null, - "disableLocked": false, - "clientPerf": false - }, - "rconStatus": "connected", - "rconLastConnected": "2023-12-12T13:13:16.480Z", - "rconDisconnected": null - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - }, - "organization": { - "data": { - "type": "organization", - "id": "13771" - } - } - }, - "meta": { - "timePlayed": 79295, - "firstSeen": "2022-12-03T04:47:49.717Z", - "lastSeen": "2023-07-10T01:56:33.182Z", - "online": false - } - }, - { - "type": "server", - "id": "3469444", - "attributes": { - "id": "3469444", - "name": "[EU] RustAcademy.net 5X No BPs [Loot+/Shop/Kits] JUST WIPED", - "address": "5xnobps.rustacademy.eu", - "ip": "64.52.81.215", - "port": 28010, - "players": 1, - "maxPlayers": 200, - "rank": 1793, - "location": [ - -0.03, - 51.5031 - ], - "status": "online", - "details": { - "tags": [ - "mp200", - "cp1", - "ptrak", - "qp0", - "v2515", - "eu", - "weekly", - "h5e602aa3", - "stok", - "born1702303279", - "gmrust", - "cs90996", - "oxide", - "modded", - "rustmaps" - ], - "official": false, - "rust_type": "modded", - "map": "Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 60572, - "rust_fps": 60, - "rust_fps_avg": 59.83, - "rust_gc_cl": 423, - "rust_gc_mb": 1773, - "rust_hash": "5e602aa3", - "rust_headerimage": "https://i.imgur.com/p5RYStA.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 24084, - "rust_url": "https://www.rustacademy.net/", - "rust_world_seed": 1337, - "rust_world_size": 3500, - "rust_maps": { - "seed": 1337, - "size": 3500, - "url": "https://rustmaps.com/map/96d246a5d6634060ac7429a6c4df422e", - "thumbnailUrl": "https://content.rustmaps.com/maps/240/96d246a5d6634060ac7429a6c4df422e/thumbnail.png", - "monuments": 139, - "barren": false, - "updatedAt": "2023-10-05T17:27:12.711Z", - "mapUrl": "https://github.com/NOSLLP/Maps/raw/master/July%202023/3500/procedural_3500_3a7b0aef063d4d12933c6937649945b5.map" - }, - "rust_description": "Welcome To RustAcademy's 5X NO BPs.\nThe heart of competitive Rust.\n\nYou start with all blueprints and do not have to research anything in our servers.\nThe server is 5X meaning you will gain things at 5 times the speed.\n\nWant to skip the queue and get access to incredible ranks and kits? store.rustacademy.net\nWant to join the Discord for announcements and information? discord.gg/XqDx84m\n\n\nMax team limit: 8, English in chat only!\n\nThis server supports http://just-wiped.net", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T14:01:19.000Z", - "rust_last_ent_drop": "2022-08-19T13:00:30.240Z", - "rust_last_seed_change": "2021-05-31T12:06:12.377Z", - "rust_last_wipe": "2022-08-19T13:00:30.240Z", - "rust_map_size_ent_count": "2021-04-02T12:22:46.588Z", - "rust_last_wipe_ent": 31042, - "serverSteamId": "90178652936714256" - }, - "private": false, - "createdAt": "2019-04-12T00:43:45.107Z", - "updatedAt": "2023-12-13T12:37:12.480Z", - "portQuery": 28015, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 1987, - "firstSeen": "2020-05-12T15:29:29.089Z", - "lastSeen": "2020-05-12T16:02:36.544Z", - "online": false - } - }, - { - "type": "server", - "id": "3567809", - "attributes": { - "id": "3567809", - "name": "[AU/NZ] Stevious 2x Large | Vanilla | 7/12", - "address": null, - "ip": "51.161.215.215", - "port": 28010, - "players": 10, - "maxPlayers": 250, - "rank": 325, - "location": [ - 151.209, - -33.8402 - ], - "status": "online", - "details": { - "tags": [ - "mp250", - "cp9", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "OC", - "hc1579f8a", - "stok", - "born1701975364", - "gmrust", - "cs90920", - "rustmaps", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Custom Map", - "environment": "w", - "rust_build": "90920", - "rust_ent_cnt_i": 110862, - "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 945, - "rust_gc_mb": 2607, - "rust_hash": "c1579f8a", - "rust_headerimage": "https://www.stevious.io/svr_images/Stevious_2x_Background_1.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 58047, - "rust_url": "https://stevious.io/", - "rust_world_seed": 1567196672, - "rust_world_size": 3900, - "rust_world_levelurl": "https://maps.rustmaps.com/243/2f5cb5b9548c4123ad0ae927ec19991e/rrE2vDbYSEumK5Jm6xIikg/stevious_large_3900_1567196672v1.map", - "rust_maps": { - "seed": 1567196672, - "size": 3900, - "url": "https://rustmaps.com/map/f255db8f32e94f298df0c420ed7d4eb7", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/f255db8f32e94f298df0c420ed7d4eb7/thumbnail.png", - "monuments": 124, - "barren": false, - "updatedAt": "2023-12-13T12:07:45.515Z", - "mapUrl": "https://maps.rustmaps.com/243/2f5cb5b9548c4123ad0ae927ec19991e/rrE2vDbYSEumK5Jm6xIikg/stevious_large_3900_1567196672v1.map" - }, - "rust_description": "Wiped weekly on Thursday @ 4PM AEST (With update on force). Server modifications: \n\n2x Gather Rates (2.5x for Sulfur and Wood) \nHalf smelt and crafting speeds (Vanilla for raiding items) \nBuilding and Level 1 Workbench blueprints unlocked \nComponent System loot tables (Junk items removed) \n\nVisit https://stevious.io for VIP (Queue Skip) and Rules / Discord information.", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:56:04.000Z", - "rust_last_ent_drop": "2023-12-07T19:01:27.706Z", - "rust_last_seed_change": "2023-12-07T19:01:27.706Z", - "rust_last_wipe": "2023-12-07T19:01:27.706Z", - "rust_map_size_ent_count": "2021-03-11T06:02:08.612Z", - "rust_last_wipe_ent": 47696, - "serverSteamId": "90178641584783384" - }, - "private": false, - "createdAt": "2019-05-09T05:35:03.000Z", - "updatedAt": "2023-12-13T12:38:26.507Z", - "portQuery": 28015, - "country": "AU", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 26590, - "firstSeen": "2021-11-18T11:34:50.676Z", - "lastSeen": "2021-11-19T08:05:04.683Z", - "online": false - } - }, - { - "type": "server", - "id": "3896634", - "attributes": { - "id": "3896634", - "name": "Rustafied.com - EU Trio II", - "address": "eutrio2.rustafied.com", - "ip": "64.40.9.32", - "port": 28015, - "players": 87, - "maxPlayers": 200, - "rank": 117, - "location": [ - -0.093, - 51.5088 - ], - "status": "online", - "details": { - "tags": [ - "mp200", - "cp87", - "ptrak", - "qp0", - "v2515", - "biweekly", - "vanilla", - "eu", - "h52933105", - "stok", - "born1701974738", - "gmrust", - "cs90996", - "rustmaps" - ], - "official": true, - "rust_type": "official", - "map": "Rustafied Custom Map", - "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 253475, - "rust_fps": 58, - "rust_fps_avg": 58.2, - "rust_gc_cl": 546, - "rust_gc_mb": 3907, - "rust_hash": "52933105", - "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU Trio 2.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 23842, - "rust_url": "https://forum.rustafied.com/store/product/73-eu-trio-ii/", - "rust_world_seed": 737396920, - "rust_world_size": 4000, - "rust_world_levelurl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Trio_II.map", - "rust_maps": { - "seed": 737396920, - "size": 4000, - "url": "https://rustmaps.com/map/a23d7e428e6a4aa8a393744d9b0b7cd1", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/a23d7e428e6a4aa8a393744d9b0b7cd1/thumbnail.png", - "monuments": 156, - "barren": false, - "updatedAt": "2023-12-13T11:12:56.464Z", - "mapUrl": "https://cdn.rustamaps.com/2023-12-07_Rustafied.com_-_EU_Trio_II.map" - }, - "rust_description": "EU Trio II: Thrice the fun\nWant to skip queue? Get VIP at rustafied.com/vip\nFor Ban appeals and support visit rustafied.com/support\nWipe schedule, maps, polls and more at our discord on rustafied.com/discord\nWish to report a player? rustafied.com/report\n\nTrio rules:\n\\tMax. 3 players authorized on TC over the course of a wipe\n\\tMax. 3 players in a group, one member swap permitted\n\\tMax. 3 players basing together\n\\tMax. 3 players roaming/raiding together\n\\tAlliances / teaming with other groups is not allowed\n\\tNo giving away or receiving bases\n\\tCode raiding may result in a ban\n\\tIf in doubt, contact a moderator instead - moderators have final say\n\nPlease behave in a mature manner. Trolls, asshats, and toxic players are not welcome. Server rules: rustafied.com/rules", - "rust_modded": false, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:45:38.000Z", - "rust_last_ent_drop": "2023-11-16T15:05:06.505Z", - "rust_last_seed_change": "2023-12-07T18:47:56.712Z", - "rust_last_wipe": "2023-12-07T18:47:56.712Z", - "rust_map_size_ent_count": "2021-01-07T19:13:33.207Z", - "rust_last_wipe_ent": 91148, - "serverSteamId": "90178653027975196" - }, - "private": false, - "createdAt": "2019-07-03T03:01:05.743Z", - "updatedAt": "2023-12-13T12:38:21.394Z", - "portQuery": 28018, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 244, - "firstSeen": "2023-07-10T11:14:09.538Z", - "lastSeen": "2023-07-10T11:20:06.526Z", - "online": false - } - }, - { - "type": "server", - "id": "4963880", - "attributes": { - "id": "4963880", - "name": "[AU] Skitzy 3x \u2022 TRIO [Skins/TP/Kits/Events]", - "address": null, - "ip": "51.161.199.41", - "port": 26015, - "players": 0, - "maxPlayers": 150, - "rank": 4272, - "location": [ - 151.2073, - -33.8678 - ], - "status": "online", - "details": { - "tags": [ - "mp150", - "cp0", - "ptrak", - "qp0", - "v2515", - "weekly", - "vanilla", - "OC", - "h3219af31", - "stok", - "born1701978498", - "gmrust", - "cs90996", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Discord.gg/Skitzy", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 52883, - "rust_fps": 60, - "rust_fps_avg": 59.98, - "rust_gc_cl": 174, - "rust_gc_mb": 2067, - "rust_hash": "3219af31", - "rust_headerimage": "https://i.imgur.com/tzsuQXT.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 64260, - "rust_url": "https://discord.gg/skitzy", - "rust_world_seed": 1337, - "rust_world_size": 2800, - "rust_maps": { - "seed": 175359945, - "size": 3500, - "url": "https://rustmaps.com/map/3500_175359945", - "thumbnailUrl": "https://files.rustmaps.com/img/225/533514da-842a-4546-9d25-a91c993f426d/Thumbnail.png", - "monuments": 167, - "barren": false - }, - "rust_description": "\u3010 Wipes Times \u3011 \u3010 Important Links \u3011\n\u2605 Friday @ 4:00pm (AEDT). \u2605 Discord \u2022 discord.gg/skitzy\n\u2605 Friday @ 4:00pm (AEDT). \u2605 Website \u2022 skitzy.net\n\n\u3010 Modded Status \u3011\n\u2611 3x Gathers \u2611 No Rads \u2611 Leaderboards \u2611 Optimized Map\n\u2611 3x Smelt \u2611 No Cold \u2611 Fastnights \u2611 Performance+\n\u2611 3x Loots \u2611 No Decay \u2611 Buy Vehicles \u2611 Anti Cheat\n\u2611 Better BPs \u2611 Clear Days \u2611 Custom Events \u2611 Team Limits\n\n\u3010 Server Rules \u3011\n \u2022 No Extreme toxicity or Racism in global chat or PMs.\n \u2022 No Spamming or advertising in global chat or PMs.\n \u2022 No Hacking, scripting, or exploiting on our servers.\n \u2022 No Doxxing, Releasing of personal information or others.\n \u2022 No Impersonating Staff or other server members.\n \u2022 No Exceeding the Group limit & No Allies.\n", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:48:18.000Z", - "rust_last_ent_drop": "2023-09-30T02:04:02.338Z", - "rust_last_seed_change": "2022-07-16T02:02:27.348Z", - "rust_last_wipe": "2023-09-30T02:04:02.338Z", - "rust_last_wipe_ent": 46504, - "serverSteamId": "90178640378337283" - }, - "private": false, - "createdAt": "2019-12-13T16:00:20.836Z", - "updatedAt": "2023-12-13T12:36:53.089Z", - "portQuery": 26017, - "country": "AU", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - } - }, - "meta": { - "timePlayed": 19908, - "firstSeen": "2021-05-11T14:04:31.839Z", - "lastSeen": "2021-10-27T11:55:10.861Z", - "online": false - } - }, - { - "type": "server", - "id": "5589149", - "attributes": { - "id": "5589149", - "name": "[EU] HollowServers.co - 2x Solo/Duo/Trio | JUST WIPED", - "address": null, - "ip": "64.52.81.38", - "port": 28015, - "players": 19, - "maxPlayers": 100, - "rank": 357, - "location": [ - -0.03, - 51.5031 - ], - "status": "online", - "details": { - "tags": [ - "mp100", - "cp21", - "ptrak", - "qp0", - "v2515", - "weekly", - "eu", - "h3219af31", - "stok", - "born1702303116", - "gmrust", - "cs90996", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "Custom Map", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 110888, - "rust_fps": 60, - "rust_fps_avg": 60, - "rust_gc_cl": 492, - "rust_gc_mb": 4893, - "rust_hash": "3219af31", - "rust_headerimage": "", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 167972, - "rust_url": "https://hollowservers.co/", - "rust_world_seed": 1337, - "rust_world_size": 3350, - "rust_maps": { - "seed": 558926749, - "size": 4000, - "url": "https://rustmaps.com/map/4000_558926749", - "thumbnailUrl": "https://files.rustmaps.com/img/231/fb0d394d-94fb-407b-8c57-f6924b39eefb/Thumbnail.png", - "monuments": 154, - "barren": false - }, - "rust_description": "Welcome to Hollow Servers, the heart of modded rust\n\n\\t - 2x Gather Rate\n\\t - Max Team: 3\n\\t - Custom Loot Tables\n\\t - Tier 1 BPs unlocked\n\\t - Recyclers at Dome, Oilrigs, Cargo & Fishing Villages\n\\t - Long Days & Short Nights\n\\t - Automated Teaming Detection\n\\t - Custom AntiCheat", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-11T13:58:36.000Z", - "rust_last_ent_drop": "2023-11-27T13:59:01.607Z", - "rust_last_seed_change": "2022-12-28T14:05:05.553Z", - "rust_last_wipe": "2023-11-27T13:59:01.607Z", - "rust_last_wipe_ent": 51539, - "serverSteamId": "90178613906491423" - }, - "private": false, - "createdAt": "2020-02-11T18:16:03.602Z", - "updatedAt": "2023-12-13T12:37:56.199Z", - "portQuery": 28015, - "country": "GB", - "queryStatus": "valid" - }, - "relationships": { - "game": { - "data": { - "type": "game", - "id": "rust" - } - }, - "organization": { - "data": { - "type": "organization", - "id": "17965" - } - } - }, - "meta": { - "timePlayed": 471, - "firstSeen": "2020-10-02T00:51:37.623Z", - "lastSeen": "2020-10-13T09:54:26.865Z", - "online": false - } - }, - { - "type": "server", - "id": "5718182", - "attributes": { - "id": "5718182", - "name": "[AU] Winterust - 2x Main", - "address": "au-main.winterust.net", - "ip": "51.161.198.69", - "port": 28014, - "players": 11, - "maxPlayers": 75, - "rank": 275, - "location": [ - 151.209, - -33.8402 - ], - "status": "online", - "details": { - "tags": [ - "mp75", - "cp12", - "ptrak", - "qp0", - "v2515", - "weekly", - "OC", - "h3219af31", - "stok", - "born1702008084", - "gmrust", - "cs90996", - "oxide", - "modded" - ], - "official": false, - "rust_type": "modded", - "map": "The Official Home of Ser Winter", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 159019, - "rust_fps": 40, - "rust_fps_avg": 40, - "rust_gc_cl": 554, - "rust_gc_mb": 3479, - "rust_hash": "3219af31", - "rust_headerimage": "https://imgur.com/ldigxI9.png", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 67061, - "rust_url": "https://www.winterust.net", - "rust_world_seed": 3777, - "rust_world_size": 3750, - "rust_maps": { - "seed": 2112806912, - "size": 3850, - "url": "https://rustmaps.com/map/3850_2112806912", - "thumbnailUrl": "https://files.rustmaps.com/img/227/27667b32-ae15-4815-ab29-49865c0eb5ae/Thumbnail.png", - "monuments": 196, - "barren": false - }, - "rust_description": "Weekly Wipes\n- 2x Gather rates\n- 2x Smelting and crafting times\n- Faster Recycling\n- All level 1 BP's and more unlocked\n- Junk items removed from loot tables (more components)\n\nVIP Queue Skip @ store.Winterust.net or click below", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-08T04:01:24.000Z", - "rust_last_ent_drop": "2023-06-09T05:00:33.160Z", - "rust_last_seed_change": "2023-12-08T04:07:04.579Z", - "rust_last_wipe": "2023-12-08T04:07:04.579Z", - "rust_last_wipe_ent": 81734, - "serverSteamId": "90178639949603871" }, + "organizations": { + "data": [ + { + "type": "organization", + "id": "8218" + }, + { + "type": "organization", + "id": "13771" + }, + { + "type": "organization", + "id": "17965" + }, + { + "type": "organization", + "id": "19039" + }, + { + "type": "organization", + "id": "22301" + } + ] + } + } + }, + { + "type": "identifier", + "id": "400287345", + "attributes": { + "type": "name", + "identifier": "[DTTL] Aleski", + "lastSeen": "2023-11-14T18:21:51.517Z", "private": false, - "createdAt": "2020-02-23T08:19:29.616Z", - "updatedAt": "2023-12-13T12:38:09.292Z", - "portQuery": 28015, - "country": "AU", - "queryStatus": "valid" + "metadata": null }, "relationships": { - "game": { + "player": { "data": { - "type": "game", - "id": "rust" + "type": "player", + "id": "982404963" } } - }, - "meta": { - "timePlayed": 2346, - "firstSeen": "2022-06-03T11:46:35.025Z", - "lastSeen": "2022-06-03T12:25:41.120Z", - "online": false } }, { - "type": "server", - "id": "6333894", + "type": "identifier", + "id": "534217682", "attributes": { - "id": "6333894", - "name": "Rustocado Solo/Duo/Trio 2x | FULLWIPE 24.09 19:00 CEST", - "address": null, - "ip": "51.195.61.12", - "port": 28035, - "players": 0, - "maxPlayers": 150, - "rank": 10078, - "location": [ - 8.07286, - 50.3878 - ], - "status": "dead", - "details": { - "official": false, - "rust_type": "modded", - "map": "Procedural Map", - "environment": "l", - "rust_build": "74277", - "rust_ent_cnt_i": 108605, - "rust_fps": 108, - "rust_fps_avg": 107.25, - "rust_gc_cl": 198, - "rust_gc_mb": 2065, - "rust_hash": "5e0dd9f", - "rust_headerimage": "https://www.dropbox.com/s/6ti9gdvsfx0z7fb/logo_512_2.jpg?raw=1", - "rust_mem_pv": null, - "rust_mem_ws": null, - "pve": false, - "rust_uptime": 60413, - "rust_url": "http://rustocado.tebex.io/", - "rust_world_seed": 1698331082, - "rust_world_size": 3500, - "rust_maps": { - "seed": 1698331082, - "size": 3500, - "url": "https://rustmaps.com/map/3500_1698331082", - "thumbnailUrl": "https://files.rustmaps.com/img/228/22339468-02ad-47d8-a7a1-8a73f34cafdb/Thumbnail.png", - "monuments": 182, - "barren": false - }, - "rust_description": "Welcome to our Rustocado Solo/Duo/Trio 2x Server!\n\nGroup limit: 3\nMap size: 3500\n- 2x stacksize(except syringes/ammo)\n- 2x gathering\n- 2x components/scrap\n- 2x smelting\n- short night times (5 min) & always bright nights\n- anti-teaming plugin\n\nWipe schedule:\nFULL wipe every Tuesday at 19:00 (7 pm) CEST\nMAP wipe every Saturday at 19:00 (7 pm) CEST\n*Optional map wipe on Thursday at 18:00 (6 pm) CEST if the pop is below 10%\n**Server restarts every day at 05:00 (5 am) CEST\n\nDiscord: discord.gg/r8CzWzyy9F\nSteam group: steamcommunity.com/groups/rustocado\nWebsite: rustocado.tebex.io", - "rust_modded": true, - "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2022-09-24T16:58:59.000Z", - "rust_last_ent_drop": "2022-04-10T14:31:25.996Z", - "rust_last_seed_change": "2022-09-24T17:02:51.926Z", - "rust_last_wipe": "2022-09-24T17:02:51.926Z", - "rust_last_wipe_ent": 56502, - "serverSteamId": "90164791226694658" - }, - "private": false, - "createdAt": "2020-04-03T11:50:06.853Z", - "updatedAt": "2023-12-13T05:11:06.380Z", - "portQuery": 28035, - "country": "DE", - "queryStatus": "timeout" + "type": "ip", + "identifier": "172.56.73.131", + "lastSeen": "2024-01-12T03:19:14.354Z", + "private": true, + "metadata": { + "country": "US", + "lastCheck": "2024-01-12T03:19:14.461Z", + "connectionInfo": { + "tor": false, + "datacenter": false, + "proxy": false, + "asn": "AS21928", + "block": 0, + "isp": "T-MOBILE-AS21928" + } + } }, "relationships": { - "game": { + "player": { "data": { - "type": "game", - "id": "rust" + "type": "player", + "id": "982404963" + } + }, + "organizations": { + "data": [ + { + "type": "organization", + "id": "8218" + }, + { + "type": "organization", + "id": "13771" + } + ] + } + } + }, + { + "type": "identifier", + "id": "538312543", + "attributes": { + "type": "ip", + "identifier": "172.56.77.116", + "lastSeen": "2024-01-12T14:50:36.055Z", + "private": true, + "metadata": { + "country": "US", + "lastCheck": "2024-01-12T14:50:36.168Z", + "connectionInfo": { + "tor": false, + "datacenter": false, + "proxy": false, + "asn": "AS21928", + "block": 0, + "isp": "T-MOBILE-AS21928" } } }, - "meta": { - "timePlayed": 6364, - "firstSeen": "2021-04-21T08:30:43.856Z", - "lastSeen": "2021-04-21T10:16:47.635Z", - "online": false + "relationships": { + "player": { + "data": { + "type": "player", + "id": "982404963" + } + }, + "organizations": { + "data": [ + { + "type": "organization", + "id": "13771" + } + ] + } } }, { "type": "server", - "id": "6792417", + "id": "1451019", "attributes": { - "id": "6792417", - "name": "UKN.GG - US Training Grounds - Main", - "address": null, - "ip": "208.103.169.198", - "port": 28014, - "players": 35, - "maxPlayers": 250, - "rank": 65, + "id": "1451019", + "name": "Rustafied.com - EU Solo", + "address": "eusolo.rustafied.com", + "ip": "64.40.9.138", + "port": 28015, + "players": 148, + "maxPlayers": 150, + "rank": 226, "location": [ - -96.8704, - 32.8137 + -0.093, + 51.5088 ], "status": "online", "details": { "tags": [ - "mp250", - "cp33", + "mp150", + "cp149", "ptrak", - "qp0", - "v2515", - "training", - "minigame", - "hc1579f8a", + "qp33", + "v2516", + "biweekly", + "vanilla", + "eu", + "rs00kW(0rAi40Ixz[0Q#q*", + "ha534670a", "stok", - "born1701975385", + "born1705589857", "gmrust", - "cs90920", - "oxide", - "modded" + "cs91742", + "rustmaps" ], - "official": false, - "rust_type": "modded", - "map": "UKN Map", + "official": true, + "rust_type": "official", + "map": "Rustafied Custom Map", "environment": "w", - "rust_build": "90920", - "rust_ent_cnt_i": 43054, - "rust_fps": 30, - "rust_fps_avg": 29.92, - "rust_gc_cl": 2116, - "rust_gc_mb": 36861, - "rust_hash": "c1579f8a", - "rust_headerimage": "https://ukn.gg/assets/512x256.png", + "rust_build": "91742", + "rust_ent_cnt_i": 123866, + "rust_fps": 40, + "rust_fps_avg": 39.97, + "rust_gc_cl": 565, + "rust_gc_mb": 2643, + "rust_hash": "a534670a", + "rust_headerimage": "https://cdn.rustafied.systems/server-header-images/EU SOLO.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 495619, - "rust_url": "https://ukn.gg", - "rust_world_seed": 1337, - "rust_world_size": 6000, + "rust_uptime": 12192, + "rust_url": "https://forum.rustafied.com/store/product/52-eu-solo/", + "rust_world_seed": 581036237, + "rust_world_size": 3250, + "rust_world_levelurl": "https://cdn.rustamaps.com/2024-01-18_Rustafied.com_-_EU_Solo.map", "rust_maps": { - "seed": 1337, - "size": 1024, - "url": "https://rustmaps.com/map/1024_1337", - "thumbnailUrl": "https://files.rustmaps.com/img/231/7b8db14f-b52d-4b61-9189-009e6108cabd/Thumbnail.png", - "monuments": 5, - "barren": false + "seed": 581036237, + "size": 3250, + "url": "https://rustmaps.com/map/bc1010c76af54d9ca5af1fbad4092f1c", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/bc1010c76af54d9ca5af1fbad4092f1c/thumbnail.png", + "monuments": 130, + "barren": false, + "updatedAt": "2024-01-19T09:15:24.859Z", + "mapUrl": "https://cdn.rustamaps.com/2024-01-18_Rustafied.com_-_EU_Solo.map" }, - "rust_description": "The best server to train your aim and gameplay!\n\n\t- FFA\n\t- Scrims\n\t- Arenas\n\t- Gungame \n\t- Targets\n\t- Aimbots\n\nUKN Store @ UKN.GG/Store\nUKN Discord @ UKN.GG/Discord", - "rust_modded": true, - "rust_queued_players": 0, + "rust_description": "Wipe: Biweekly on Thursdays @ 3PM London time (or when forced)\nBase Pop: 150 players | Map size: 3250 | BP Wipe: Monthly\n\n\\tREPORT A PLAYER: my.rustafied.com or in-game using /report\n\n\\tSTORE: rustafied.com/store\\t\\t|\\tSUPPORT: rustafied.com/support\n\\tRULES: rustafied.com/solo\\t\\t|\\tDISCORD: discord.gg/rustafied\n\nWhat to expect:\n\\t- High quality gameplay and player experience\n\\t- Player based map voting for upcoming wipes\n\\t- Custom anti-cheat and active server moderation\n\\t- Hosted on the highest-end server infrastructure available", + "rust_modded": false, + "rust_queued_players": 33, "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:56:25.000Z", - "rust_last_ent_drop": "2023-12-03T11:58:39.533Z", - "rust_last_seed_change": "2020-09-03T18:00:15.694Z", - "rust_last_wipe": "2023-12-03T11:58:39.533Z", - "rust_last_wipe_ent": 16799, - "serverSteamId": "90178523244978187" + "rust_born": "2024-01-18T14:57:37.000Z", + "rust_last_ent_drop": "2024-01-18T14:59:43.201Z", + "rust_last_seed_change": "2024-01-18T14:59:43.201Z", + "rust_last_wipe": "2024-01-18T14:59:43.201Z", + "rust_last_wipe_ent": 58624, + "rust_settings_source": "user", + "rust_settings": { + "version": 3, + "teamUILimit": 1, + "groupLimit": 1, + "timeZone": "Europe/London", + "rates": { + "gather": 1, + "craft": 1, + "component": 1, + "scrap": 1 + }, + "blueprints": true, + "kits": false, + "decay": true, + "decayScale": 1, + "forceWipeType": "full", + "wipes": [ + { + "weeks": [ + 0, + 0, + 1, + 0, + 1 + ], + "days": [ + "TH" + ], + "type": "map", + "hour": 15, + "minute": 0 + } + ] + }, + "rust_wipes": [ + { + "type": "full", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-15T15:00:00.000Z" + } + ], + "rust_next_wipe": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_map": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_bp": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_full": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179704653341702" }, "private": false, - "createdAt": "2020-05-02T21:09:07.286Z", - "updatedAt": "2023-12-13T12:38:07.522Z", - "portQuery": 28015, - "country": "US", + "createdAt": "2017-08-31T16:23:58.554Z", + "updatedAt": "2024-01-19T09:31:36.195Z", + "portQuery": 28018, + "country": "GB", "queryStatus": "valid" }, "relationships": { @@ -4918,45 +3438,38 @@ "id": "rust" } } - }, - "meta": { - "timePlayed": 123, - "firstSeen": "2021-12-26T07:46:15.149Z", - "lastSeen": "2021-12-26T07:48:17.702Z", - "online": false } }, { "type": "server", - "id": "8005608", + "id": "2371178", "attributes": { - "id": "8005608", - "name": "Rusticated.com - US | 2x Vanilla | Monday | Shared Bps | 12/11", + "id": "2371178", + "name": "Rusticated.com - 2x Solo/Duo/Trio | JUST WIPED | 1/16", "address": null, - "ip": "168.100.162.200", + "ip": "64.40.8.96", "port": 28010, - "players": 16, + "players": 0, "maxPlayers": 150, - "rank": 495, + "rank": 1192, "location": [ - -96.8022, - 32.7797 + -96.8704, + 32.8137 ], "status": "online", "details": { "tags": [ "mp150", - "cp17", + "cp0", "ptrak", "qp0", - "v2515", - "weekly", + "v2516", "NA", - "h5e602aa3", + "h12fd6e5b", "stok", - "born1702324811", + "born1705435080", "gmrust", - "cs90996", + "cs91458", "oxide", "modded", "rustmaps" @@ -4965,46 +3478,143 @@ "rust_type": "modded", "map": "Rusticated Generated Maps", "environment": "w", - "rust_build": "90996", - "rust_ent_cnt_i": 152013, + "rust_build": "91458", + "rust_ent_cnt_i": 66537, "rust_fps": 40, - "rust_fps_avg": 39.93, - "rust_gc_cl": 1031, - "rust_gc_mb": 6708, - "rust_hash": "5e602aa3", + "rust_fps_avg": 40, + "rust_gc_cl": 1283, + "rust_gc_mb": 4318, + "rust_hash": "12fd6e5b", "rust_headerimage": "https://cdn.discordapp.com/attachments/375878034496028672/475052886338961419/banner_512x256.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 146413, - "rust_url": "https://rusticated.com/", - "rust_world_seed": 851162953, - "rust_world_size": 3800, - "rust_world_levelurl": "https://maps.rustmaps.com/244/78bd3bd2b5154c88ac2cf6be1d5d37dd/procedural__3800_x_MY9DAJzESUPMELR9ZNXQ.map", + "rust_uptime": 221689, + "rust_url": "https://rusticated.com/link/", + "rust_world_seed": 2019562663, + "rust_world_size": 3500, + "rust_world_levelurl": "https://maps.rustmaps.com/244/f3fbbf05ff504311bb7dab32982a69c0/procedural__3500_dgDUlqafoUet8K7zgClRuw.map", "rust_maps": { - "seed": 851162953, - "size": 3800, - "url": "https://rustmaps.com/map/4b8bc9b885764103b12e8cd71182fea4", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/4b8bc9b885764103b12e8cd71182fea4/thumbnail.png", - "monuments": 137, + "seed": 2019562663, + "size": 3500, + "url": "https://rustmaps.com/map/cc9ddbd6d5d046c7815fb71a24aeaff1", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/cc9ddbd6d5d046c7815fb71a24aeaff1/thumbnail.png", + "monuments": 161, "barren": false, - "updatedAt": "2023-12-13T11:26:17.141Z", - "mapUrl": "https://maps.rustmaps.com/244/78bd3bd2b5154c88ac2cf6be1d5d37dd/procedural__3800_x_MY9DAJzESUPMELR9ZNXQ.map" + "updatedAt": "2024-01-19T08:35:38.813Z", + "mapUrl": "https://maps.rustmaps.com/244/f3fbbf05ff504311bb7dab32982a69c0/procedural__3500_dgDUlqafoUet8K7zgClRuw.map" }, - "rust_description": "Monday weekly map wipes, Bps wipe on force wipe\nPurchase Vip at: www.rusticated.com/vip\nDiscord: rusticated.com/discord\n\nUse /rules in game to see our rules \n\nShared BP's with Team \nHalf Craft & Half Recycling \nFull Base WorkBench \nJunk removed from loot tables \nPlus More!", + "rust_description": "Wipes: Saturday @ 1PM ET & Tuesday @ 3PM ET, Bps wipe on force wipe\nPurchase Kits at: www.rusticated.com/vip\nDiscord: rusticated.com/discord\n\nUse /rules to see our rules\n\n Swapping Rules:\n- Remove all bags/beds for the players that is leaving \n- Change codes ( If you don't change codes you can potentially be banned for authorizing more than 3) \n- Clear TC \n- Player that is leaving can not return to your group for the rest of wipe \n\n- Communications may be recorded for rule enforcement, gameplay improvement, and issue resolution. By joining and playing, you consent to recording in accordance with applicable laws. Opt-out by not joining or leaving.", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-11T20:00:11.000Z", - "rust_last_ent_drop": "2023-07-06T17:58:14.472Z", - "rust_last_seed_change": "2023-12-07T18:59:27.093Z", - "rust_last_wipe": "2023-12-07T18:59:27.093Z", - "rust_last_wipe_ent": 77408, - "serverSteamId": "90178621021351956" + "rust_born": "2024-01-16T19:58:00.000Z", + "rust_last_ent_drop": "2023-10-10T19:02:29.590Z", + "rust_last_seed_change": "2024-01-04T18:56:30.420Z", + "rust_last_wipe": "2024-01-04T18:56:30.420Z", + "rust_map_size_ent_count": "2018-07-28T17:03:41.711Z", + "rust_last_wipe_ent": 62495, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "full", + "groupLimit": 3, + "teamUILimit": 3, + "kits": true, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [ + { + "days": [ + "TU" + ], + "hour": 15, + "minute": 0, + "type": "map", + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ] + }, + { + "days": [ + "SA" + ], + "hour": 13, + "minute": 0, + "type": "map", + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/New_York", + "version": 3 + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-01-20T18:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-23T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-27T18:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-30T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-03T18:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-06T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-10T18:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-13T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-17T18:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-20T18:00:00.000Z", + "rust_next_wipe_map": "2024-01-20T18:00:00.000Z", + "rust_next_wipe_bp": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_full": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179640715581468" }, "private": false, - "createdAt": "2020-08-15T23:51:09.055Z", - "updatedAt": "2023-12-13T12:37:22.303Z", + "createdAt": "2018-06-16T01:09:24.658Z", + "updatedAt": "2024-01-19T09:30:50.989Z", "portQuery": 28015, "country": "US", "queryStatus": "valid" @@ -5016,91 +3626,148 @@ "id": "rust" } } - }, - "meta": { - "timePlayed": 11206, - "firstSeen": "2020-10-04T01:41:58.809Z", - "lastSeen": "2020-10-04T04:48:44.978Z", - "online": false } }, { "type": "server", - "id": "8161581", + "id": "2522221", "attributes": { - "id": "8161581", - "name": "[EU] HollowServers.co - 3x Solo/Duo/Trio | FULL WIPED", + "id": "2522221", + "name": "[US] Stevious 2x | Solo/Duo/Trio | 1/18", "address": null, - "ip": "64.52.81.40", - "port": 28015, - "players": 91, - "maxPlayers": 200, - "rank": 54, + "ip": "205.234.243.2", + "port": 28010, + "players": 232, + "maxPlayers": 480, + "rank": 212, "location": [ - -0.03, - 51.5031 + -87.6288, + 41.8486 ], "status": "online", "details": { "tags": [ - "mp200", - "cp89", + "mp480", + "cp232", "ptrak", "qp0", - "v2515", + "v2516", "weekly", - "eu", - "h3219af31", + "vanilla", + "NA", + "h5a346290", "stok", - "born1702303132", + "born1705611580", "gmrust", - "cs90996", + "cs91742", + "rustmaps", "oxide", "modded" ], "official": false, "rust_type": "modded", - "map": "Hollow Maps", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 266516, - "rust_fps": 56, - "rust_fps_avg": 55.63, - "rust_gc_cl": 951, - "rust_gc_mb": 7754, - "rust_hash": "3219af31", - "rust_headerimage": "", + "map": "Custom Map", + "environment": "w", + "rust_build": "91742", + "rust_ent_cnt_i": 184234, + "rust_fps": 30, + "rust_fps_avg": 30, + "rust_gc_cl": 866, + "rust_gc_mb": 4752, + "rust_hash": "5a346290", + "rust_headerimage": "https://www.stevious.io/svr_images/Stevious_2x_Background_1.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 167943, - "rust_url": "https://hollowservers.co/", - "rust_world_seed": 1337, - "rust_world_size": 3500, + "rust_uptime": 45203, + "rust_url": "https://stevious.io/", + "rust_world_seed": 446877184, + "rust_world_size": 3800, + "rust_world_levelurl": "https://maps.rustmaps.com/244/51d119baea38443183e909eccaf28620/Nbf1kWzugkeO8_f4mrr4cw/stevious_trio_3800_446877184v1.map", "rust_maps": { - "seed": 848597280, - "size": 3700, - "url": "https://rustmaps.com/map/3700_848597280", - "thumbnailUrl": "https://files.rustmaps.com/img/224/4422c3df-36f3-4715-82b4-c2344a6efd1e/Thumbnail.png", - "monuments": 179, - "barren": false + "seed": 446877184, + "size": 3800, + "url": "https://rustmaps.com/map/cbc0cd719dd945bcbbf48c21b2cd8ef5", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/cbc0cd719dd945bcbbf48c21b2cd8ef5/thumbnail.png", + "monuments": 123, + "barren": false, + "updatedAt": "2024-01-19T09:21:11.242Z", + "mapUrl": "https://maps.rustmaps.com/244/51d119baea38443183e909eccaf28620/Nbf1kWzugkeO8_f4mrr4cw/stevious_trio_3800_446877184v1.map" }, - "rust_description": "Welcome to Hollow Servers, the heart of modded rust\n\n\\t - 3x Gather Rate\n\\t - Max Team: 3\n\\t - Custom Loot Tables\n\\t - Tier 1 BPs unlocked\n\\t - Fullbase Workbench\n \\t - Instant Crafting/Faster Smelting\n\\t - Recyclers at Dome, Oilrigs, Cargo & Fishing Villages\n\\t - Long Days & Short Nights\n\\t - Automated Teaming Detection\n\\t - Custom AntiCheat\n\\t - Free skinbox for everyone", + "rust_description": "Max Teamsize: 3 players (Includes players offline)\n\nVisit https://stevious.io for VIP (Queue Skip) and Rules / Discord information.\n\nWeekly wipes and the following modifications: \n\n2x Gather Rates (2.5x for Sulfur and Wood) \nHalf smelt and crafting speeds (Vanilla for raiding items) \nBuilding and Level 1 Workbench blueprints unlocked \nComponent System loot tables (Junk items removed)", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-11T13:58:52.000Z", - "rust_last_ent_drop": "2023-12-11T14:02:12.279Z", - "rust_last_seed_change": "2022-10-24T13:04:15.945Z", - "rust_last_wipe": "2023-12-11T14:02:12.279Z", - "rust_last_wipe_ent": 66865, - "serverSteamId": "90178613966476289" + "rust_born": "2024-01-18T20:59:40.000Z", + "rust_last_ent_drop": "2024-01-18T21:05:13.070Z", + "rust_last_seed_change": "2024-01-18T21:05:13.070Z", + "rust_last_wipe": "2024-01-18T21:05:13.070Z", + "rust_map_size_ent_count": "2018-08-02T11:33:21.710Z", + "rust_last_wipe_ent": 49283, + "rust_settings_source": "user", + "rust_settings": { + "version": 3, + "teamUILimit": 3, + "groupLimit": 3, + "timeZone": "America/Chicago", + "rates": { + "gather": 2, + "craft": 2, + "component": 2, + "scrap": 1 + }, + "blueprints": true, + "kits": false, + "decay": true, + "decayScale": 1, + "forceWipeType": "full", + "wipes": [ + { + "weeks": [ + 0, + 1, + 1, + 1, + 1 + ], + "days": [ + "TH" + ], + "type": "map", + "hour": 15, + "minute": 0 + } + ] + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-01-25T21:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-08T21:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-15T21:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-25T21:00:00.000Z", + "rust_next_wipe_map": "2024-01-25T21:00:00.000Z", + "rust_next_wipe_bp": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_full": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179697181044760" }, "private": false, - "createdAt": "2020-08-28T21:26:12.511Z", - "updatedAt": "2023-12-13T12:38:04.595Z", + "createdAt": "2018-07-31T16:38:43.772Z", + "updatedAt": "2024-01-19T09:33:11.418Z", "portQuery": 28015, - "country": "GB", + "country": "US", "queryStatus": "valid" }, "relationships": { @@ -5109,99 +3776,147 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "17965" - } } - }, - "meta": { - "timePlayed": 59201, - "firstSeen": "2021-04-17T16:12:36.602Z", - "lastSeen": "2021-04-21T08:12:19.975Z", - "online": false } }, { "type": "server", - "id": "8343054", + "id": "2936493", "attributes": { - "id": "8343054", - "name": "[AU] Skitzy 3x \u2022 DUO [Skins/TP/Kits/Events]", + "id": "2936493", + "name": "Reddit.com/r/PlayRust - US Main", "address": null, - "ip": "51.161.199.41", - "port": 27015, - "players": 1, - "maxPlayers": 150, - "rank": 4313, + "ip": "45.88.228.58", + "port": 28015, + "players": 152, + "maxPlayers": 300, + "rank": 145, "location": [ - 151.2073, - -33.8678 + -96.8336, + 32.7908 ], "status": "online", "details": { "tags": [ - "mp150", - "cp1", + "mp300", + "cp150", "ptrak", "qp0", - "v2515", + "v2516", "weekly", "vanilla", - "OC", - "h3219af31", + "hf89cba59", "stok", - "born1702443372", + "born1705607943", "gmrust", - "cs90996", + "cs91742", "oxide", - "modded" + "rustmaps" ], - "official": false, - "rust_type": "modded", - "map": "Discord.gg/Skitzy", + "official": true, + "rust_type": "official", + "map": "Reddit Maps", "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 40290, - "rust_fps": 60, - "rust_fps_avg": 59.8, - "rust_gc_cl": 162, - "rust_gc_mb": 1500, - "rust_hash": "3219af31", - "rust_headerimage": "https://i.imgur.com/tzsuQXT.png", + "rust_build": "91742", + "rust_ent_cnt_i": 130063, + "rust_fps": 30, + "rust_fps_avg": 29.98, + "rust_gc_cl": 679, + "rust_gc_mb": 4394, + "rust_hash": "f89cba59", + "rust_headerimage": "https://cdn.discordapp.com/attachments/634346569029910549/877729276655444008/unknown.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 27942, - "rust_url": "https://discord.gg/skitzy", + "rust_uptime": 48713, + "rust_url": "https://reddit.com/r/playrust", "rust_world_seed": 1337, - "rust_world_size": 2800, + "rust_world_size": 3800, + "rust_world_levelurl": "https://maps.rustmaps.com/244/257ceecb574e4d67977bcd7241c559e0/RedditMaps_3800_728052769_01-16-2024.map", "rust_maps": { - "seed": 868870537, - "size": 3500, - "url": "https://rustmaps.com/map/3500_868870537", - "thumbnailUrl": "https://files.rustmaps.com/img/225/180435fd-74e2-4382-94fd-f57a137c21f3/Thumbnail.png", - "monuments": 160, - "barren": false + "seed": 1337, + "size": 3800, + "url": "https://rustmaps.com/map/da3f85d0d00e4945b40fd3bbd616bede", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/da3f85d0d00e4945b40fd3bbd616bede/thumbnail.png", + "monuments": 148, + "barren": false, + "updatedAt": "2024-01-19T08:33:23.822Z", + "mapUrl": "https://maps.rustmaps.com/244/257ceecb574e4d67977bcd7241c559e0/RedditMaps_3800_728052769_01-16-2024.map" }, - "rust_description": "\u3010 Wipes Times \u3011 \u3010 Important Links \u3011\n\u2605 Wednesday @ 4:00pm (AEDT) \u2605 Discord \u2022 discord.gg/skitzy\n\u2605 Weekly Map & BP Wipes \u2605 Website \u2022 skitzy.net\n\n\u3010 Modded Status \u3011\n\u2611 3x Gathers \u2611 No Rads \u2611 Leaderboards \u2611 Optimized Map\n\u2611 3x Smelt \u2611 No Cold \u2611 Fastnights \u2611 Performance+\n\u2611 3x Loots \u2611 No Decay \u2611 Buy Vehicles \u2611 Anti Cheat\n\u2611 Better BPs \u2611 Clear Days \u2611 Custom Events \u2611 Team Limits\n\n\u3010 Server Rules \u3011\n \u2022 No Extreme toxicity or Racism in global chat or PMs.\n \u2022 No Spamming or advertising in global chat or PMs.\n \u2022 No Hacking, scripting, or exploiting on our servers.\n \u2022 No Doxxing, Releasing of personal information or others.\n \u2022 No Impersonating Staff or other server members.\n \u2022 No Exceeding the Group limit & No Allies.\n", - "rust_modded": true, + "rust_description": "Welcome to Reddit's official /r/PlayRust US Main server! \n - No cheating or exploiting. \n - No spam, racism/slurs, discrimination. \n - No Rust gamebans on previous accounts. \n \n VIP: vip.redditplayrust.com \n Rules & Support: redditplayrust.com \n Discord: discord.gg/playrust \n Weekly Map: Thursdays @ 3PM EST / BP Wipe @ Forced", + "rust_modded": false, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-13T04:56:12.000Z", - "rust_last_ent_drop": "2023-11-05T02:03:30.535Z", - "rust_last_seed_change": "2022-07-17T02:03:29.568Z", - "rust_last_wipe": "2023-11-05T02:03:30.535Z", - "rust_last_wipe_ent": 27726, - "serverSteamId": "90178652356230147" + "rust_born": "2024-01-18T19:59:03.000Z", + "rust_last_ent_drop": "2024-01-11T19:59:01.955Z", + "rust_last_seed_change": "2021-10-28T18:55:36.471Z", + "rust_last_wipe": "2024-01-11T19:59:01.955Z", + "rust_map_size_ent_count": "2019-08-08T20:15:06.124Z", + "rust_last_wipe_ent": 67909, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "full", + "groupLimit": 999999, + "teamUILimit": 999999, + "kits": false, + "rates": { + "component": 1, + "craft": 1, + "gather": 1, + "scrap": 1 + }, + "wipes": [ + { + "days": [ + "TH" + ], + "hour": 15, + "minute": 0, + "type": "map", + "weeks": [ + 0, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/New_York", + "version": 3 + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-01-25T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-08T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-15T20:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-25T20:00:00.000Z", + "rust_next_wipe_map": "2024-01-25T20:00:00.000Z", + "rust_next_wipe_bp": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_full": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179696544004101" }, "private": false, - "createdAt": "2020-09-10T14:08:57.993Z", - "updatedAt": "2023-12-13T12:37:37.346Z", - "portQuery": 27017, - "country": "AU", + "createdAt": "2018-12-05T01:08:51.899Z", + "updatedAt": "2024-01-19T09:32:18.707Z", + "portQuery": 8401, + "country": "US", "queryStatus": "valid" }, "relationships": { @@ -5211,90 +3926,169 @@ "id": "rust" } } - }, - "meta": { - "timePlayed": 2002, - "firstSeen": "2021-11-18T10:47:41.293Z", - "lastSeen": "2021-11-18T11:21:02.864Z", - "online": false } }, { "type": "server", - "id": "8939401", + "id": "3260244", "attributes": { - "id": "8939401", - "name": "ICEFUSE.NET (2X Oblivion|Solo/Duo/Trio|Loot X2) JUST WIPED", + "id": "3260244", + "name": "[US] ICEFUSE.NET (Vanilla|Solo/Duo/Trio) JUST WIPED!", "address": null, - "ip": "205.178.168.47", - "port": 28015, - "players": 10, + "ip": "208.103.169.24", + "port": 28029, + "players": 41, "maxPlayers": 250, - "rank": 439, + "rank": 293, "location": [ - -96.8022, - 32.7797 + -96.8704, + 32.8137 ], "status": "online", "details": { "tags": [ "mp250", - "cp9", + "cp42", "ptrak", "qp0", - "v2515", + "v2516", "weekly", + "vanilla", "NA", - "h96ab90c0", + "h3d8871ed", "stok", - "born1702324992", + "born1705611781", "gmrust", - "cs90920", - "oxide", - "modded" + "cs91340", + "oxide" ], "official": false, - "rust_type": "modded", + "rust_type": "community", "map": "SOLO-DUO-TRIO", "environment": "l", - "rust_build": "90920", - "rust_ent_cnt_i": 108157, + "rust_build": "91340", + "rust_ent_cnt_i": 93736, "rust_fps": 30, "rust_fps_avg": 30, - "rust_gc_cl": 700, - "rust_gc_mb": 3609, - "rust_hash": "96ab90c0", + "rust_gc_cl": 482, + "rust_gc_mb": 2639, + "rust_hash": "3d8871ed", "rust_headerimage": "https://i.imgur.com/NlWqD19.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 146170, + "rust_uptime": 44980, "rust_url": "https://discord.gg/icefuse", - "rust_world_seed": 1353310425, + "rust_world_seed": 2140536499, "rust_world_size": 3500, "rust_maps": { - "seed": 1624856881, + "seed": 1924777699, "size": 4250, - "url": "https://rustmaps.com/map/4250_1624856881", - "thumbnailUrl": "https://files.rustmaps.com/img/231/053b0b4c-aade-4af1-9607-82ed75cdfff0/Thumbnail.png", - "monuments": 156, + "url": "https://rustmaps.com/map/4250_1924777699", + "thumbnailUrl": "https://files.rustmaps.com/img/231/432b7156-b2c3-45c0-b8be-e7d95578412b/Thumbnail.png", + "monuments": 160, "barren": false }, - "rust_description": "\u25bcSERVER FEATURES\u25bc\n \u2611 2X Gather Rates, 2X Recycle AND 2X Smelting Speeds!\n \u2611 Advanced Loot With Removed Junk, Enhanced Stack Sizes!\n \u2611 Clans, Teams, Kits, Homes, Teleporting, Bgrade, Remove\n \u2611 Vehicles Spawn With Full Health AND Parts!\n \u2611 Player Shops, Skinbox AND Discord - Steam Linking!\n \u2611 Merged Outpost And Bandit With Recyclers At Monuments\n \u2611 Hand Selected Maps: All Major Monuments, Always!\n \n\u25bcSERVER RAIDING RULES\u25bc\n \u2713 You are allowed 3 members to base with!\n \u2713 You are allowed 3 members when raiding-roaming!\n \n\u25bcSERVER INFORMATION\u25bc\n \u2726 Website: IFN.GG | Discord: IFN.GG/DISCORD\n \n\u25bcSERVER WIPE TIMES\u25bc\n \u2726 Monday at 3:00 PM Eastern\n \u2726 Fridays at 3:00 PM Eastern", - "rust_modded": true, + "rust_description": "\u25bcSERVER FEATURES\u25bc\n \u2611 Longer Days with Shorter Nights!\n \u2611 Discord - Steam Linking Systems!\n \u2611 Merged Outpost And Bandit With Recyclers At Monuments\n \u2611 Hand Selected Maps: All Major Monuments, Always!\n \n\u25bcSERVER RAIDING RULES\u25bc\n \u2713 You are allowed 3 members to base with!\n \u2713 You are allowed 3 members when raiding-roaming!\n \n\u25bcSERVER WIPE TIMES\u25bc\n \u2726 Monday at 4:00 PM Eastern\n \u2726 Thursday at 4:00 PM Eastern", + "rust_modded": false, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-11T20:03:12.000Z", - "rust_last_ent_drop": "2023-11-02T19:07:40.204Z", - "rust_last_seed_change": "2023-05-01T19:06:35.076Z", - "rust_last_wipe": "2023-11-02T19:07:40.204Z", - "rust_last_wipe_ent": 71285, - "serverSteamId": "90178620936789001" + "rust_born": "2024-01-18T21:03:01.000Z", + "rust_last_ent_drop": "2022-05-12T18:06:14.325Z", + "rust_last_seed_change": "2023-05-01T20:06:53.689Z", + "rust_last_wipe": "2023-05-01T20:06:53.689Z", + "rust_last_wipe_ent": 93505, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "unknown", + "groupLimit": 3, + "teamUILimit": 3, + "kits": false, + "rates": { + "component": 1, + "craft": 1, + "gather": 1, + "scrap": 1 + }, + "wipes": [ + { + "days": [ + "MO" + ], + "hour": 16, + "minute": 0, + "type": "unknown", + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ] + }, + { + "days": [ + "TH" + ], + "hour": 16, + "minute": 0, + "type": "unknown", + "weeks": [ + 0, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/New_York", + "version": 3 + }, + "rust_wipes": [ + { + "type": "unknown", + "timestamp": "2024-01-22T21:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-25T21:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-29T21:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-05T21:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-08T21:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-12T21:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-15T21:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-22T21:00:00.000Z", + "serverSteamId": "90179697236889629" }, "private": false, - "createdAt": "2020-10-29T12:07:25.989Z", - "updatedAt": "2023-12-13T12:36:42.747Z", - "portQuery": 28015, + "createdAt": "2019-02-11T06:50:26.597Z", + "updatedAt": "2024-01-19T09:32:50.121Z", + "portQuery": 28029, "country": "US", "queryStatus": "valid" }, @@ -5311,97 +4105,123 @@ "id": "8218" } } - }, - "meta": { - "timePlayed": 3899, - "firstSeen": "2021-04-18T19:22:23.155Z", - "lastSeen": "2021-04-18T20:27:21.864Z", - "online": false } }, { "type": "server", - "id": "10025469", + "id": "3298068", "attributes": { - "id": "10025469", - "name": "Reddit.com/r/PlayRust - AU Softcore", + "id": "3298068", + "name": "RGS Vanilla Monthly - 1/4th Upkeep | No BP Wipe | 2x nodes", "address": null, - "ip": "51.161.198.57", - "port": 28015, - "players": 41, - "maxPlayers": 150, - "rank": 413, + "ip": "216.39.240.66", + "port": 28010, + "players": 13, + "maxPlayers": 140, + "rank": 480, "location": [ - 151.209, - -33.8402 + -77.0369, + 38.9072 ], "status": "online", "details": { "tags": [ - "mp150", - "cp41", + "mp140", + "cp13", "ptrak", "qp0", - "v2515", + "v2516", "monthly", "vanilla", - "softcore", - "OC", - "h3219af31", + "hfb0bd1c", "stok", - "born1701975467", - "gmsoftcore", - "cs90996", - "oxide", - "rustmaps" + "born1704395260", + "gmrust", + "cs91340", + "oxide" ], - "official": true, - "rust_type": "official", - "map": "Reddit Maps", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 133015, - "rust_fps": 29, - "rust_fps_avg": 29.42, - "rust_gc_cl": 293, - "rust_gc_mb": 3302, - "rust_hash": "3219af31", - "rust_headerimage": "https://cdn.discordapp.com/attachments/634346569029910549/877738997139521556/AU_r3uqfcf.png", + "official": false, + "rust_type": "community", + "map": "Custom Map", + "environment": "w", + "rust_build": "91340", + "rust_ent_cnt_i": 212595, + "rust_fps": 30, + "rust_fps_avg": 29.93, + "rust_gc_cl": 211, + "rust_gc_mb": 3798, + "rust_hash": "fb0bd1c", + "rust_headerimage": "https://media.discordapp.net/attachments/1006963182889349150/1135862384771203122/4k-Wallpaper1_1.png?width=818&height=460", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 63461, - "rust_url": "https://redditplayrust.com/", + "rust_uptime": 73099, + "rust_url": "https://discord.gg/rgsofficial", "rust_world_seed": 1337, - "rust_world_size": 3600, - "rust_world_levelurl": "https://maps.rustmaps.com/244/668f4d7dee9b4c648cece78a98573ba3/RedditMap_3600_1683679972_12-06-2023.map", + "rust_world_size": 3900, "rust_maps": { - "seed": 1337, - "size": 3600, - "url": "https://rustmaps.com/map/72dd43c78b34495f84f8c415ec2a7369", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/72dd43c78b34495f84f8c415ec2a7369/thumbnail.png", - "monuments": 150, - "barren": false, - "updatedAt": "2023-12-13T10:07:23.356Z", - "mapUrl": "https://maps.rustmaps.com/244/668f4d7dee9b4c648cece78a98573ba3/RedditMap_3600_1683679972_12-06-2023.map" + "seed": 1158535886, + "size": 4250, + "url": "https://rustmaps.com/map/4250_1158535886", + "thumbnailUrl": "https://files.rustmaps.com/img/231/abe58db2-9389-4d37-8d58-99daeaab00ee/Thumbnail.png", + "monuments": 169, + "barren": false }, - "rust_description": "Welcome to Reddit's official /r/PlayRust AU Softcore server! \n - No cheating or exploiting. No impersonation of staff members. \n - No spam, racism/slurs, discrimination. \n - No account bans <100 days old. No Rust gamebans on previous accounts. \n \n VIP: vip.redditplayrust.com \n Rules & Support: redditplayrust.com \n Discord: discord.gg/playrust \n Monthly Map Wipe @ Force / BP's Do Not Wipe", + "rust_description": "Our Server's have all been built and designed to fill voids in the Rust Community. At RGS, were committed to serving the Rust Community in creative and fun way's. High Performance Dedicated Server's, so you can frag out without lag! All the server rules can be found in our discord. \n\nServer Features\n\u2022 1/4 Upkeep, so you can build bigger\n\u2022 2X the amount of Nodes, Tree's, Animals, Hemp and Berry Spawns in the map\n\u2022 Mini copters spawn on the roads (Like OG Vanilla)\n\u2022 2X Plant Growth Times for all you Plant Farmers \n\u2022 Bags only need to be 10 meters apart for separate bag timers (Instead of 50 Meters)\n\u2022 More wolves, bears and Boars for easy animal fat and leather... Zero Chickens n Deers\n\u2022 8 minute Hackable Locked Crate Timer vs the standard 15 minute Timer...\n\nhttps://discord.gg/rgsofficial | The Best Vanilla Experience!", "rust_modded": false, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-07T18:57:47.000Z", - "rust_last_ent_drop": "2023-12-07T19:01:36.557Z", - "rust_last_seed_change": "2022-05-05T18:06:15.578Z", - "rust_last_wipe": "2023-12-07T19:01:36.557Z", - "rust_last_wipe_ent": 71078, - "serverSteamId": "90178640630994963" + "rust_born": "2024-01-04T19:07:40.000Z", + "rust_last_ent_drop": "2024-01-04T19:11:00.661Z", + "rust_last_seed_change": "2023-03-02T19:05:04.913Z", + "rust_last_wipe": "2024-01-04T19:11:00.661Z", + "rust_last_wipe_ent": 74883, + "rust_settings_source": "user", + "rust_settings": { + "version": 3, + "teamUILimit": 12, + "groupLimit": 999999, + "timeZone": "America/New_York", + "rates": { + "gather": 1, + "craft": 1, + "component": 1, + "scrap": 1 + }, + "blueprints": true, + "kits": false, + "decay": true, + "decayScale": 1, + "forceWipeType": "map", + "wipes": [] + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-02-01T19:00:00.000Z" + } + ], + "rust_next_wipe": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_map": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179690398649346" }, "private": false, - "createdAt": "2021-02-09T22:44:04.447Z", - "updatedAt": "2023-12-13T12:38:19.586Z", - "portQuery": 8401, - "country": "AU", - "queryStatus": "valid" + "createdAt": "2019-02-21T23:54:38.434Z", + "updatedAt": "2024-01-19T09:31:08.203Z", + "portQuery": 28015, + "country": "US", + "queryStatus": "valid", + "rconActive": true, + "metadata": { + "connectionType": "ws", + "statusInterval": 15, + "disabledReason": null, + "disableLocked": false, + "clientPerf": false + }, + "rconStatus": "connected", + "rconLastConnected": "2024-01-18T13:13:20.903Z", + "rconDisconnected": null }, "relationships": { "game": { @@ -5409,93 +4229,119 @@ "type": "game", "id": "rust" } + }, + "organization": { + "data": { + "type": "organization", + "id": "13771" + } } - }, - "meta": { - "timePlayed": 1133, - "firstSeen": "2021-05-11T13:43:29.510Z", - "lastSeen": "2021-05-11T14:02:22.439Z", - "online": false } }, { "type": "server", - "id": "10531409", + "id": "3477804", "attributes": { - "id": "10531409", - "name": "[AU] Skitzy 3x \u2022 SOLO [Skins/TP/Kits/Events]", + "id": "3477804", + "name": "PICKLE QUAD MONTHLY US | No BP Wipe | Low Upkeep | Quad Trio", "address": null, - "ip": "51.161.199.41", + "ip": "104.238.229.42", "port": 28015, - "players": 6, - "maxPlayers": 128, - "rank": 1152, + "players": 33, + "maxPlayers": 200, + "rank": 173, "location": [ - 151.2073, - -33.8678 + -96.8022, + 32.7797 ], "status": "online", "details": { "tags": [ - "mp128", - "cp7", + "mp200", + "cp33", "ptrak", "qp0", - "v2515", - "weekly", + "v2516", + "monthly", "vanilla", - "OC", - "h3219af31", + "NA", + "hf89cba59", "stok", - "born1702270525", + "born1704394833", "gmrust", - "cs90996", - "oxide", - "modded" + "cs91742", + "oxide" ], "official": false, - "rust_type": "modded", - "map": "Discord.gg/Skitzy", + "rust_type": "community", + "map": "Custom Map", "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 68318, - "rust_fps": 60, - "rust_fps_avg": 59.72, - "rust_gc_cl": 219, - "rust_gc_mb": 2123, - "rust_hash": "3219af31", - "rust_headerimage": "https://i.imgur.com/tzsuQXT.png", + "rust_build": "91742", + "rust_ent_cnt_i": 365715, + "rust_fps": 22, + "rust_fps_avg": 20.5, + "rust_gc_cl": 508, + "rust_gc_mb": 6843, + "rust_hash": "f89cba59", + "rust_headerimage": "https://i.imgur.com/pTAV79O.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 64224, - "rust_url": "https://discord.gg/skitzy", + "rust_uptime": 63065, + "rust_url": "https://shop.pickleservers.com/", "rust_world_seed": 1337, - "rust_world_size": 2800, + "rust_world_size": 4000, "rust_maps": { - "seed": 802455695, - "size": 3500, - "url": "https://rustmaps.com/map/3500_802455695", - "thumbnailUrl": "https://files.rustmaps.com/img/223/00aded84-1b36-45fe-8bcc-10c38db09e8b/Thumbnail.png", - "monuments": 187, + "seed": 123547, + "size": 3800, + "url": "https://rustmaps.com/map/3800_123547", + "thumbnailUrl": "https://files.rustmaps.com/img/231/e2dbb288-14f6-4799-832e-ba7f39ae559b/Thumbnail.png", + "monuments": 181, "barren": false }, - "rust_description": "\u3010 Wipes Times \u3011 \u3010 Important Links \u3011\n\u2605 Monday @ 4:00pm (AEDT) \u2605 Discord \u2022 discord.gg/skitzy\n\u2605 BPs wiped 04/12 \u2605 Website \u2022 skitzy.net\n\n\u3010 Modded Status \u3011\n\u2611 3x Gathers \u2611 No Rads \u2611 Leaderboards \u2611 Optimized Map\n\u2611 3x Smelt \u2611 No Cold \u2611 Fastnights \u2611 Performance+\n\u2611 3x Loots \u2611 No Decay \u2611 Buy Vehicles \u2611 Anti Cheat\n\u2611 Better BPs \u2611 No Teams \u2611 Custom Events \u2611 Clear Days\n\n\u3010 Server Rules \u3011\n \u2022 No Extreme toxicity or Racism in global chat or PMs.\n \u2022 No Spamming or advertising in global chat or PMs.\n \u2022 No Hacking, scripting, or exploiting on our servers.\n \u2022 No Doxxing, Releasing of personal information or others.\n \u2022 No Impersonating Staff or other server members.\n \u2022 No Exceeding the Group limit & No Allies.\n", - "rust_modded": true, + "rust_description": "Visit PickleServers.com to learn about all of our various servers and rules!\nDiscord.PickleServers.com\nMap Wipe Monthly. Next map wipe 2/1\n\nPickle Servers are centered on the community, proudly serving players for over 4 years!\nNo BP Wipes unless forced cannot be bypassed(Last BP Wipe was 06/2018)\nLow upkeep - less time farming for your base upkeep. Decay is unchanged.\nActive Non-playing Admins with fast response times\n\nPlease read the full rules on our website but here is the TL;DR\nMax team/base limit of 4\nAllies are allowed but there are restrictions such as base distance\nActive Non-Playing Admin! You never have to worry about Admin abuse on the Pickle. We will not build a base/farm/PvP/break walls etc.. but are often watching activity in-game or through console.\nNo players with previous VAC/Game Bans on their steam profile allowed, no exceptions.\nAbsolutely no cheating is allowed on Pickle Servers and we work hard to detect and ban suspected cheaters.\n\nWe have many different server configurations! Search PICKLE to see what we have available!", + "rust_modded": false, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-11T04:55:25.000Z", - "rust_last_ent_drop": "2023-12-04T05:01:58.245Z", - "rust_last_seed_change": "2022-07-07T18:47:33.576Z", - "rust_last_wipe": "2023-12-04T05:01:58.245Z", - "rust_last_wipe_ent": 35723, - "serverSteamId": "90178640378471427" + "rust_born": "2024-01-04T19:00:33.000Z", + "rust_last_ent_drop": "2024-01-04T19:02:03.089Z", + "rust_last_seed_change": "2023-04-06T18:40:33.875Z", + "rust_last_wipe": "2024-01-04T19:02:03.089Z", + "rust_last_wipe_ent": 86151, + "rust_settings_source": "user", + "rust_settings": { + "version": 3, + "teamUILimit": 50, + "groupLimit": 4, + "timeZone": "Etc/UTC", + "rates": { + "gather": 1, + "craft": 1, + "component": 1, + "scrap": 1 + }, + "blueprints": true, + "kits": false, + "decay": true, + "decayScale": 1, + "forceWipeType": "map", + "wipes": [] + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-02-01T19:00:00.000Z" + } + ], + "rust_next_wipe": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_map": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179693468518418" }, "private": false, - "createdAt": "2021-03-02T18:05:07.259Z", - "updatedAt": "2023-12-13T12:36:49.672Z", - "portQuery": 28017, - "country": "AU", + "createdAt": "2019-04-14T03:04:43.514Z", + "updatedAt": "2024-01-19T09:32:47.365Z", + "portQuery": 28016, + "country": "US", "queryStatus": "valid" }, "relationships": { @@ -5505,74 +4351,144 @@ "id": "rust" } } - }, - "meta": { - "timePlayed": 10497, - "firstSeen": "2021-09-20T06:05:51.769Z", - "lastSeen": "2021-10-26T09:38:20.193Z", - "online": false } }, { "type": "server", - "id": "11334088", + "id": "6071691", "attributes": { - "id": "11334088", - "name": "RGS 2X Modded - Event's | No BP Wipe | Ez Mini's", + "id": "6071691", + "name": "[US] Stevious 2x Large | Vanilla | 1/18", "address": null, - "ip": "216.39.240.66", - "port": 28030, - "players": 0, - "maxPlayers": 100, - "rank": 12218, + "ip": "199.231.233.159", + "port": 28010, + "players": 150, + "maxPlayers": 520, + "rank": 148, "location": [ - -77.0369, - 38.9072 + -87.6288, + 41.8486 ], - "status": "dead", + "status": "online", "details": { + "tags": [ + "mp520", + "cp152", + "ptrak", + "qp0", + "v2516", + "weekly", + "vanilla", + "NA", + "h5a346290", + "stok", + "born1705613376", + "gmrust", + "cs91742", + "rustmaps", + "oxide", + "modded" + ], "official": false, "rust_type": "modded", - "map": "Procedural Map", + "map": "Custom Map", "environment": "w", - "rust_build": "78004", - "rust_ent_cnt_i": 212292, + "rust_build": "91742", + "rust_ent_cnt_i": 172057, "rust_fps": 30, "rust_fps_avg": 30, - "rust_gc_cl": 150, - "rust_gc_mb": 2318, - "rust_hash": "7aa46d19", - "rust_headerimage": "https://media.discordapp.net/attachments/882478524915679232/1054843062918058085/2xMonthly.png", + "rust_gc_cl": 848, + "rust_gc_mb": 4508, + "rust_hash": "5a346290", + "rust_headerimage": "https://www.stevious.io/svr_images/Stevious_2x_Background_1.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 17162, - "rust_url": "https://www.RustGamingServers.com", - "rust_world_seed": 3074340, - "rust_world_size": 3800, + "rust_uptime": 42747, + "rust_url": "https://stevious.io/", + "rust_world_seed": 838641792, + "rust_world_size": 3900, + "rust_world_levelurl": "https://maps.rustmaps.com/244/d65791a272174fd3ab5abf8375e768dc/5Gem2oL2m026AzeIO4BKKg/stevious_large_3900_838641792v1.map", "rust_maps": { - "seed": 3074340, - "size": 3800, - "url": "https://rustmaps.com/map/3800_3074340", - "thumbnailUrl": "https://files.rustmaps.com/img/231/04fe70d5-8396-40b1-b4a8-52ce44f95de3/Thumbnail.png", - "monuments": 172, - "barren": false + "seed": 838641792, + "size": 3900, + "url": "https://rustmaps.com/map/c23dfbe97b8641548cc63322f27ebcf9", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/c23dfbe97b8641548cc63322f27ebcf9/thumbnail.png", + "monuments": 117, + "barren": false, + "updatedAt": "2024-01-19T06:57:42.667Z", + "mapUrl": "https://maps.rustmaps.com/244/d65791a272174fd3ab5abf8375e768dc/5Gem2oL2m026AzeIO4BKKg/stevious_large_3900_838641792v1.map" }, - "rust_description": "R.G.S. | The Best Vanilla Experience\n\nHigh Performance Dedicated Server's, so you can frag out without lag!\n\nServer Features\n1) 1/4 Upkeep, so you can build bigger :wink:\n2) 2X the amount of Nodes, Tree's, Animals, Hemp and Berry Spawns in the map\n3) Mini copters spawn on the roads (Like OG Vanilla)\n4) 2X Plant Growth Times for all you Plant Farmers :)~\n5) Bags only need to be 10 meters apart for separate bag timers (Instead of 50 Meters)\n6) More wolves, bears and Boars for easy animal fat and leather... Zero Chickens n Deers\n7) 8 minute Hackable Locked Crate Timer vs the standard 15 minute Timer...\n\nWe know your gonna love our Rust Servers. They have all been built and designed\nto fill voids in the Rust Community. At RGS, were committed to serving the Rust\nCommunity in creative and fun way's. Join the RGS Discord > https://discord.gg/rgsofficial\nand take part in votes, events and giveaway's!", + "rust_description": "Wiped weekly on Thursday @ 4.30PM ET. Visit https://stevious.io for VIP (Queue Skip) and Rules / Discord information.\n\nServer modifications:\n\n2x Gather Rates (2.5x for Sulfur and Wood) \nHalf smelt and crafting speeds (Vanilla for raiding items) \nBuilding and Level 1 Workbench blueprints unlocked \nComponent System loot tables (Junk items removed)", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-01-05T21:29:01.000Z", - "rust_last_ent_drop": "2023-01-05T19:22:13.574Z", - "rust_last_seed_change": "2023-01-05T19:37:18.541Z", - "rust_last_wipe": "2023-01-05T19:37:18.541Z", - "rust_last_wipe_ent": 69549, - "serverSteamId": "90168925821803522" + "rust_born": "2024-01-18T21:29:36.000Z", + "rust_last_ent_drop": "2024-01-18T21:49:46.583Z", + "rust_last_seed_change": "2024-01-18T21:49:46.583Z", + "rust_last_wipe": "2024-01-18T21:49:46.583Z", + "rust_map_size_ent_count": "2021-03-04T19:11:53.550Z", + "rust_last_wipe_ent": 55857, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "unknown", + "groupLimit": 999999, + "teamUILimit": 999999, + "kits": false, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [ + { + "days": [ + "TH" + ], + "hour": 16, + "minute": 0, + "type": "unknown", + "weeks": [ + 0, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/Chicago", + "version": 3 + }, + "rust_wipes": [ + { + "type": "unknown", + "timestamp": "2024-01-25T22:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-08T22:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-15T22:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-25T22:00:00.000Z", + "serverSteamId": "90179698663049243" }, "private": false, - "createdAt": "2021-04-29T17:59:39.733Z", - "updatedAt": "2023-12-12T22:27:10.374Z", - "portQuery": 28030, + "createdAt": "2020-03-19T07:46:03.353Z", + "updatedAt": "2024-01-19T09:32:53.276Z", + "portQuery": 28015, "country": "US", "queryStatus": "timeout" }, @@ -5582,89 +4498,148 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "13771" - } } - }, - "meta": { - "timePlayed": 7885, - "firstSeen": "2022-12-10T16:57:43.204Z", - "lastSeen": "2022-12-10T19:09:07.967Z", - "online": false } }, { "type": "server", - "id": "11334532", + "id": "6727424", "attributes": { - "id": "11334532", - "name": "[US] Dubs 10x NoBPs |PvP+|Loot+|Raid+|Shop|Kits|Clans", + "id": "6727424", + "name": "Rusticated.com - US | 2x Vanilla | Thursday | Shared Bps | 1/18", "address": null, - "ip": "168.100.163.9", - "port": 28016, - "players": 0, - "maxPlayers": 200, - "rank": 12219, + "ip": "199.231.233.72", + "port": 28010, + "players": 200, + "maxPlayers": 225, + "rank": 209, "location": [ - -96.8022, - 32.7797 + -96.8336, + 32.7908 ], - "status": "dead", + "status": "online", "details": { + "tags": [ + "mp225", + "cp201", + "ptrak", + "qp0", + "v2516", + "weekly", + "NA", + "h5a346290", + "stok", + "born1705607839", + "gmrust", + "cs91742", + "oxide", + "modded", + "rustmaps" + ], "official": false, "rust_type": "modded", - "map": "DubsRust FPS+ Map", - "environment": "l", - "rust_build": "89530", - "rust_ent_cnt_i": 61816, - "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 342, - "rust_gc_mb": 2911, - "rust_hash": "2c97e951", - "rust_headerimage": "https://cdn.discordapp.com/attachments/916244735872614420/1138259503847063623/USE10X.png", + "map": "Rusticated Generated Maps", + "environment": "w", + "rust_build": "91742", + "rust_ent_cnt_i": 203170, + "rust_fps": 40, + "rust_fps_avg": 39.45, + "rust_gc_cl": 1029, + "rust_gc_mb": 5469, + "rust_hash": "5a346290", + "rust_headerimage": "https://cdn.discordapp.com/attachments/375878034496028672/475052886338961419/banner_512x256.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 83463, - "rust_url": "https://dubsrust.com", - "rust_world_seed": 1236514608, - "rust_world_size": 3500, - "rust_description": "Welcome to Dubs 10x. A custom Rust environment designed for PvP.\nThe new wave of competitive Rust.\n\nMaze. Koth. Roams. Clans.\n\n\u27a4 4000+ FREE skinbox skins\n\u27a4 Always day / custom atmosphere for clarity.\n\u27a4 Free kits with materials to make a clan base.\n\u27a4 Custom in game shop for ALL your needs.\n\u27a4 RP system with high PvP kill rewards.\n\u27a4 No BPs, no workbenches.\n\u27a4 Reduced Rocket PvP.\n\u27a4 Loot++ custom loot tables to keep your wipe going.\n\u27a4 Ease of life plugins added for overall pleasure.\n\u27a4 Custom and maintained FPS improvements weekly. Custom maps with combined outpost.\n\u27a4 24/7 Admin support team.\n\nMap Size: 4250\nMax group size: 20\nNo Alliances.\n\nMap Wipe: Mondays and Thursdays 3 P.M EST\nCheck out ALL our perks on our webstore.\nThere are TONS of perks for supporting Dubs Rust Servers.\n\nwww.DubsRust.com\nwww.discord.gg/dubsrust\n\nJoin our clans server @ discord.gg/dubsrust10x", + "rust_uptime": 48957, + "rust_url": "https://rusticated.com/", + "rust_world_seed": 1916950014, + "rust_world_size": 3800, + "rust_world_levelurl": "https://maps.rustmaps.com/244/00d20c9b309c448f874d795e250608be/procedural__3800_1V6iPG41Uk-LXuXc3CZzyA.map", + "rust_maps": { + "seed": 1916950014, + "size": 3800, + "url": "https://rustmaps.com/map/40d20157fe124c7f8392aee177993a60", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/40d20157fe124c7f8392aee177993a60/thumbnail.png", + "monuments": 145, + "barren": false, + "updatedAt": "2024-01-19T08:20:34.478Z", + "mapUrl": "https://maps.rustmaps.com/244/00d20c9b309c448f874d795e250608be/procedural__3800_1V6iPG41Uk-LXuXc3CZzyA.map" + }, + "rust_description": "Thursday weekly map wipes, Bps wipe on force wipe\nPurchase Vip at: www.rusticated.com/vip\nDiscord: rusticated.com/discord\n\nUse /rules in game to see our rules \n\nShared BP's with Team \nHalf Craft & Half Recycling \nFull Base WorkBench \nJunk removed from loot tables \nPlus More!", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-11-30T19:56:32.000Z", - "rust_last_ent_drop": "2023-11-30T20:00:19.729Z", - "rust_last_seed_change": "2023-05-15T13:54:17.498Z", - "rust_last_wipe": "2023-11-30T20:00:19.729Z", - "rust_last_wipe_ent": 16337, - "serverSteamId": "90178406294586389" - }, - "private": false, - "createdAt": "2021-04-29T18:31:50.328Z", - "updatedAt": "2023-12-13T07:58:07.616Z", - "portQuery": 28015, - "country": "US", - "queryStatus": "timeout", - "rconActive": false, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "reservedSlots": 0, - "reservedSlotKickReason": "m", - "reservedSlotsKickLastToJoin": false, - "disabledReason": "We have been unable to connect for an extended period of time. Please ensure your connection settings are correct and the server is available.", - "disableLocked": false, - "clientPerf": false + "rust_born": "2024-01-18T19:57:19.000Z", + "rust_last_ent_drop": "2022-06-16T19:00:27.381Z", + "rust_last_seed_change": "2024-01-04T18:57:10.677Z", + "rust_last_wipe": "2024-01-04T18:57:10.677Z", + "rust_last_wipe_ent": 75204, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "full", + "groupLimit": 999999, + "teamUILimit": 999999, + "kits": false, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [ + { + "days": [ + "TH" + ], + "hour": 14, + "minute": 0, + "type": "map", + "weeks": [ + 0, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/Chicago", + "version": 3 + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-01-25T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-08T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-15T20:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-25T20:00:00.000Z", + "rust_next_wipe_map": "2024-01-25T20:00:00.000Z", + "rust_next_wipe_bp": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_full": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179696423772164" }, - "rconStatus": "disconnected", - "rconLastConnected": "2023-12-02T19:01:10.428Z", - "rconDisconnected": "2023-12-03T18:12:54.247Z" + "private": false, + "createdAt": "2020-04-27T20:26:01.167Z", + "updatedAt": "2024-01-19T09:32:59.948Z", + "portQuery": 28015, + "country": "US", + "queryStatus": "valid" }, "relationships": { "game": { @@ -5672,89 +4647,187 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "25433" - } } - }, - "meta": { - "timePlayed": 274602, - "firstSeen": "2021-05-01T23:41:10.292Z", - "lastSeen": "2022-09-08T13:28:22.391Z", - "online": false } }, { "type": "server", - "id": "11408459", + "id": "8113868", "attributes": { - "id": "11408459", - "name": "[EU] Dubs 10x NoBPs |PvP+|Loot+|Raid+|Shop|Kits|Clans", - "address": null, - "ip": "168.100.161.209", - "port": 28016, - "players": 0, - "maxPlayers": 200, - "rank": 12238, + "id": "8113868", + "name": "ProjectNova.gg Mars|3X|Solo/Duo/Trio|X3 JUST WIPED 01/16", + "address": "mars.projectnova.gg", + "ip": "199.231.233.34", + "port": 28015, + "players": 38, + "maxPlayers": 50, + "rank": 99, "location": [ - -0.093, - 51.5088 + -96.8336, + 32.7908 ], - "status": "dead", + "status": "online", "details": { + "tags": [ + "mp50", + "cp38", + "ptrak", + "qp0", + "v2516", + "weekly", + "rs0rSAawch}(0S&#H01.N0", + "hfb0bd1c", + "stok", + "born1705435176", + "gmrust", + "cs91340", + "oxide", + "modded", + "rustmaps" + ], "official": false, "rust_type": "modded", - "map": "DubsRust FPS+ Map", - "environment": "l", - "rust_build": "89530", - "rust_ent_cnt_i": 36721, - "rust_fps": 40, - "rust_fps_avg": 40, - "rust_gc_cl": 183, - "rust_gc_mb": 1906, - "rust_hash": "2c97e951", - "rust_headerimage": "https://cdn.discordapp.com/attachments/916244735872614420/1138260011831799949/EU10X.png", + "map": "Mars by Project Nova", + "environment": "w", + "rust_build": "91340", + "rust_ent_cnt_i": 124227, + "rust_fps": 57, + "rust_fps_avg": 57.78, + "rust_gc_cl": 2102, + "rust_gc_mb": 4331, + "rust_hash": "fb0bd1c", + "rust_headerimage": "https://i.imgur.com/1Sj20Ms.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 18447, - "rust_url": "https://dubsrust.com", - "rust_world_seed": 1526108904, - "rust_world_size": 3500, - "rust_description": "Welcome to Dubs 10x. A custom Rust environment designed for PvP.\nThe new wave of competitive Rust.\n\nMaze. Koth. Roams. Clans.\n\n\u27a4 4000+ FREE skinbox skins\n\u27a4 Always day / custom atmosphere for clarity.\n\u27a4 Free kits with materials to make a clan base.\n\u27a4 Custom in game shop for ALL your needs.\n\u27a4 RP system with high PvP kill rewards.\n\u27a4 No BPs, no workbenches.\n\u27a4 Reduced Rocket PvP.\n\u27a4 Loot++ custom loot tables to keep your wipe going.\n\u27a4 Ease of life plugins added for overall pleasure.\n\u27a4 Custom and maintained FPS improvements weekly. Custom maps with combined outpost.\n\u27a4 24/7 Admin support team.\n\nMap Size: 4250\nMax group size: 20\nNo Alliances.\n\nMap Wipe: Mondays and Thursdays 3 P.M EST\nCheck out ALL our perks on our webstore.\nThere are TONS of perks for supporting Dubs Rust Servers.\n\nwww.DubsRust.com\nwww.discord.gg/dubsrust\n\nJoin our clans server @ discord.gg/dubsrust10x", + "rust_uptime": 221466, + "rust_url": "https://discord.gg/6ru78Vx2wt", + "rust_world_seed": 1337, + "rust_world_size": 3000, + "rust_world_levelurl": "https://maps.rustmaps.com/244/44525765ae314c89ae28c80f0fcbca93/-kB5XZbhi0iqwvCBQUj2tw/Marsv29v1.0.9993.map", + "rust_maps": { + "seed": 1337, + "size": 3000, + "url": "https://rustmaps.com/map/6ee44dc1dbd042f9938fccf7bce73307", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/6ee44dc1dbd042f9938fccf7bce73307/thumbnail.png", + "monuments": 27, + "barren": false, + "updatedAt": "2024-01-19T08:32:38.941Z", + "mapUrl": "https://maps.rustmaps.com/244/44525765ae314c89ae28c80f0fcbca93/-kB5XZbhi0iqwvCBQUj2tw/Marsv29v1.0.9993.map" + }, + "rust_description": "WIPES TUE & FRI @ 3PM EST \nBLUEPRINTS WIPE ONLY FRIDAYS @ 3PM EST \n-------------------------------------------------------------------------------\n\u20223x Gather + Perfectly Balanced Loot \n\u2022SOLO/DUO/TRIO \n\u2022Oxygen System \n\u2022Custom Items In Loot, Custom Anti-Cheats, Customized Vanilla Monuments, Boost Jumps, and MUCH more! \n \nVIP now available at ProjectNova.gg\n Join our Discord at Discord.ProjectNova.gg\n \n Team Swapping Rules\n - Be sure to clear TC\n - English only in global chat!\n - Change door codes\n - Remove any beds or bags placed by the player your booting\n - The booted player cannot rejoin for the rest of the wipe\n Unless strictly following these rules you are subject to being banned", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-01T15:57:00.000Z", - "rust_last_ent_drop": "2023-12-01T15:58:46.034Z", - "rust_last_seed_change": "2023-11-02T19:05:04.229Z", - "rust_last_wipe": "2023-12-01T15:58:46.034Z", - "rust_last_wipe_ent": 17279, - "serverSteamId": "90178425543421981" + "rust_born": "2024-01-16T19:59:36.000Z", + "rust_last_ent_drop": "2024-01-16T20:07:39.563Z", + "rust_last_seed_change": "2023-01-24T15:17:02.062Z", + "rust_last_wipe": "2024-01-16T20:07:39.563Z", + "rust_last_wipe_ent": 24290, + "rust_settings_source": "query", + "rust_settings": { + "version": 3, + "teamUILimit": 3, + "groupLimit": 3, + "timeZone": "Etc/UTC", + "rates": { + "gather": 3, + "craft": 100, + "component": 3, + "scrap": 3 + }, + "forceWipeType": "full", + "blueprints": true, + "kits": true, + "decay": 2, + "upkeep": 1, + "wipes": [ + { + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ], + "days": [ + "TU" + ], + "type": "map", + "hour": 20, + "minute": 0 + }, + { + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ], + "days": [ + "FR" + ], + "type": "full", + "hour": 20, + "minute": 0 + } + ] + }, + "rust_wipes": [ + { + "type": "full", + "timestamp": "2024-01-19T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-23T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-01-26T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-30T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-02T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-06T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-09T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-13T20:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-16T20:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-19T20:00:00.000Z", + "rust_next_wipe_map": "2024-01-19T20:00:00.000Z", + "rust_next_wipe_bp": "2024-01-19T20:00:00.000Z", + "rust_next_wipe_full": "2024-01-19T20:00:00.000Z", + "serverSteamId": "90179640606367774" }, "private": false, - "createdAt": "2021-05-06T15:08:40.351Z", - "updatedAt": "2023-12-13T00:11:44.181Z", - "portQuery": 28015, - "country": "GB", - "queryStatus": "timeout", - "rconActive": false, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "reservedSlots": 0, - "reservedSlotKickReason": "1", - "reservedSlotsKickLastToJoin": false, - "disabledReason": "We have been unable to connect for an extended period of time. Please ensure your connection settings are correct and the server is available.", - "disableLocked": false, - "clientPerf": false - }, - "rconStatus": "disconnected", - "rconLastConnected": "2023-12-03T13:01:24.874Z", - "rconDisconnected": "2023-12-03T18:12:57.184Z" + "createdAt": "2020-08-25T00:14:11.208Z", + "updatedAt": "2024-01-19T09:32:17.877Z", + "portQuery": 28014, + "country": "US", + "queryStatus": "valid" }, "relationships": { "game": { @@ -5766,93 +4839,132 @@ "organization": { "data": { "type": "organization", - "id": "25433" + "id": "22301" } } - }, - "meta": { - "timePlayed": 180981, - "firstSeen": "2021-05-11T13:33:44.794Z", - "lastSeen": "2022-06-21T14:46:14.455Z", - "online": false } }, { "type": "server", - "id": "12171979", + "id": "9347971", "attributes": { - "id": "12171979", - "name": "UKN.GG - US Training Grounds - Medium II", + "id": "9347971", + "name": "[US] ProjectLazarus Original: 2x Free-Battlepass|Skill|Youtubers|Economy+", "address": null, - "ip": "208.103.169.87", - "port": 28020, - "players": 1, + "ip": "216.39.242.6", + "port": 28014, + "players": 18, "maxPlayers": 150, - "rank": 900, + "rank": 604, "location": [ - -96.8704, - 32.8137 + -96.8336, + 32.7908 ], "status": "online", "details": { "tags": [ "mp150", - "cp1", + "cp17", "ptrak", "qp0", - "v2515", - "training", - "minigame", - "hc1579f8a", + "v2516", + "weekly", + "na", + "h5a346290", "stok", - "born1701976665", + "born1705607688", "gmrust", - "cs90920", + "cs91742", "oxide", "modded" ], "official": false, "rust_type": "modded", - "map": "UKN Map", + "map": "Project Lazarus Maps", "environment": "w", - "rust_build": "90920", - "rust_ent_cnt_i": 22258, - "rust_fps": 30, - "rust_fps_avg": 29.98, - "rust_gc_cl": 1298, - "rust_gc_mb": 1977, - "rust_hash": "c1579f8a", - "rust_headerimage": "https://ukn.gg/assets/512x256.png", + "rust_build": "91742", + "rust_ent_cnt_i": 80298, + "rust_fps": 40, + "rust_fps_avg": 39.85, + "rust_gc_cl": 500, + "rust_gc_mb": 3112, + "rust_hash": "5a346290", + "rust_headerimage": "https://i.imgur.com/cJNLWGo.jpg", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 494307, - "rust_url": "https://ukn.gg", + "rust_uptime": 9050, + "rust_url": "https://www.theprojectlazarus.com/", "rust_world_seed": 1337, - "rust_world_size": 6000, - "rust_maps": { - "seed": 1337, - "size": 4500, - "url": "https://rustmaps.com/map/4500_1337", - "thumbnailUrl": "https://content.rustmaps.com/maps/239/29e643e922874c70b124d149ecdaf8f5/thumbnail.png", - "monuments": 155, - "barren": false, - "updatedAt": "2023-07-09T08:56:02.929Z" - }, - "rust_description": "The best server to train your aim and gameplay!\n\n\t- FFA\n\t- Scrims\n\t- Arenas\n\t- Gungame \n\t- Targets\n\t- Aimbots\n\nUKN Store @ UKN.GG/Store\nUKN Discord @ UKN.GG/Discord", + "rust_world_size": 3250, + "rust_description": "The Project Lazarus server strives to bring many survival aspects from games such as Dayz and incorporate them into the Rust.\n\nThis server wipes every Thursday at 4 PM EST (Except for Force)\n\nThe server has the following modifications:\n\u2726 2x Resource Rate\n\u2726 Half Smelt & Crafting Speeds\n\u2726 Group Limit: 4\n\u2726 All Tier 1 BPs Unlocked\n\u2726 Improved Loot Tables\n\u2726 Weekly Wipes\n\nThe server has the following custom mechanics:\n\u2726 Ground Loot System: Loot items from the ground similar to DayZ.\n\u2726 Monument Heists: Rob banks across the map and sell the gold bars at outposts.\n\u2726 XP System: Redeem XP rewards by leveling up through farming and killing NPCs.\n\u2726 Quest System: Complete various tasks to earn skill points which can be used to unlock perks.\n\u2726 Drug System: Grow cocaine, heroine and cannabis at your base. You can then sell these drugs at the outpost once processed.\n\u2726 Redemption System: Earn points for each kill on a geared player. These points can be used to unlock loot crates.\n\u2726 Team Competitions: Earn points by doing various things. The team with the most points wins.\n\u2726 Tiered Tool Cupboard: Players must upgrade their tool cupboard with cash to be able to upgrade to the next building tier.\n\u2726 Player Run Marketplace: Players can access a marketplace through their mobile which allows them to earn cash where ever they are.\n\u2726 DayZ Inspired Mechanics: Backpacks, parachutes, molotovs and drones.", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:17:45.000Z", - "rust_last_ent_drop": "2023-08-30T08:48:44.795Z", - "rust_last_wipe": "2023-08-30T08:48:44.795Z", - "rust_last_wipe_ent": 19060, - "serverSteamId": "90178523461599260" + "rust_born": "2024-01-18T19:54:48.000Z", + "rust_last_ent_drop": "2024-01-18T19:55:31.135Z", + "rust_last_wipe": "2024-01-18T19:55:31.135Z", + "rust_last_wipe_ent": 52418, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "unknown", + "groupLimit": 4, + "teamUILimit": 4, + "kits": false, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [ + { + "days": [ + "TH" + ], + "hour": 15, + "minute": 0, + "type": "unknown", + "weeks": [ + 0, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/New_York", + "version": 3 + }, + "rust_wipes": [ + { + "type": "unknown", + "timestamp": "2024-01-25T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-08T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-15T20:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-25T20:00:00.000Z", + "serverSteamId": "90179705197283334" }, "private": false, - "createdAt": "2021-07-15T08:03:46.048Z", - "updatedAt": "2023-12-13T12:34:38.797Z", - "portQuery": 28020, + "createdAt": "2020-12-11T14:01:50.513Z", + "updatedAt": "2024-01-19T09:32:07.895Z", + "portQuery": 28015, "country": "US", "queryStatus": "valid" }, @@ -5862,83 +4974,172 @@ "type": "game", "id": "rust" } + }, + "organization": { + "data": { + "type": "organization", + "id": "19039" + } } - }, - "meta": { - "timePlayed": 1346, - "firstSeen": "2021-12-26T07:55:24.495Z", - "lastSeen": "2021-12-26T08:17:50.861Z", - "online": false } }, { "type": "server", - "id": "13412962", + "id": "9890273", "attributes": { - "id": "13412962", - "name": "[US-W] Dubs 10x NoBPs|Loot++|PvP++|Raid++|MYMINI|JUST WIPED", + "id": "9890273", + "name": "HollowServers.co - 2x Solo/Duo/Trio | JUST WIPED", "address": null, - "ip": "168.100.163.9", - "port": 28031, - "players": 0, - "maxPlayers": 200, - "rank": 13008, + "ip": "199.231.233.52", + "port": 28010, + "players": 2, + "maxPlayers": 100, + "rank": 80, "location": [ - -96.8022, - 32.7797 + -96.8336, + 32.7908 ], - "status": "dead", + "status": "online", "details": { + "tags": [ + "mp100", + "cp1", + "ptrak", + "qp0", + "v2516", + "biweekly", + "na", + "h2097cfc5", + "stok", + "born1705345111", + "gmrust", + "cs91458", + "oxide", + "modded" + ], "official": false, "rust_type": "modded", - "map": "DubsRust Custom FPS+(10x/5x/2x)", + "map": "Custom Map", "environment": "l", - "rust_build": "85678", - "rust_ent_cnt_i": 97711, - "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 295, - "rust_gc_mb": 2114, - "rust_hash": "11d52e2e", - "rust_headerimage": "https://cdn.discordapp.com/attachments/916244735872614420/965640917375676416/usw10x.png", + "rust_build": "91458", + "rust_ent_cnt_i": 191087, + "rust_fps": 60, + "rust_fps_avg": 59.98, + "rust_gc_cl": 1193, + "rust_gc_mb": 8574, + "rust_hash": "2097cfc5", + "rust_headerimage": "1", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 15479, - "rust_url": "https://dubsrust.com", - "rust_world_seed": 319258300, - "rust_world_size": 3750, - "rust_description": "Welcome to Dubs 10x US-W. A custom Rust environment designed for PvP.\n\nWe offer fast paced gaming on top of the line hardware.\n\n\u27a4 4000+ FREE skinbox skins\n\u27a4 Always day / custom atmosphere for clarity.\n\u27a4 Non pay to win kits (no m2 kits).\n\u27a4 Free kits with materials to make a clan base.\n\u27a4 Custom in game shop for ALL your needs.\n\u27a4 RP system with high PvP kill rewards.\n\u27a4 No BPs, no workbenches.\n\u27a4 Reduced Rocket PvP.\n\u27a4 Loot++ custom loot tables to keep your wipe going.\n\u27a4 Ease of life plugins added for overall pleasure.\n\u27a4 Custom and maintained FPS improvements weekly. Custom maps with combined outpost.\n\u27a4 24/7 Admin support team.\n\nMap Size: 3750\nMax group size: 8\nNo Alliances.\n\nMap Wipe: Mondays and Thursdays 3 P.M EST\nCheck out ALL our perks on our webstore.\nThere are TONS of perks for supporting Dubs Rust Servers.\n\nwww.DubsRust.com\nwww.discord.gg/dubsrust", + "rust_uptime": 311553, + "rust_url": "https://hollowservers.co/", + "rust_world_seed": 1337, + "rust_world_size": 3500, + "rust_maps": { + "seed": 1284897998, + "size": 4000, + "url": "https://rustmaps.com/map/4000_1284897998", + "thumbnailUrl": "https://files.rustmaps.com/img/231/079fcd41-2ad6-48d4-9c73-a009951a376e/Thumbnail.png", + "monuments": 136, + "barren": false + }, + "rust_description": "Welcome to Hollow Servers, the heart of modded rust\n\n\\t - 2x Gather Rate\n\\t - Max Team: 3\n\\t - Custom Loot Tables\n\\t - Free skinbox for everyone\n\\t - Tier 1 BPs unlocked\n\\t - Recyclers at Dome, Oilrigs, Cargo & Fishing Villages\n\\t - Long Days & Short Nights\n\\t - Automated Teaming Detection\n\\t - Custom AntiCheat", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-08-04T20:57:18.000Z", - "rust_last_ent_drop": "2023-07-31T20:59:13.189Z", - "rust_last_seed_change": "2023-08-03T18:00:41.411Z", - "rust_last_wipe": "2023-08-03T18:00:41.411Z", - "rust_last_wipe_ent": 75058, - "serverSteamId": "90175029071141909" + "rust_born": "2024-01-15T18:58:31.000Z", + "rust_last_ent_drop": "2024-01-15T18:59:26.693Z", + "rust_last_seed_change": "2022-12-28T19:03:15.394Z", + "rust_last_wipe": "2024-01-15T18:59:26.693Z", + "rust_last_wipe_ent": 67908, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "unknown", + "groupLimit": 3, + "teamUILimit": 3, + "kits": false, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [ + { + "days": [ + "MO", + "FR" + ], + "hour": 13, + "minute": 0, + "type": "unknown", + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/Chicago", + "version": 3 + }, + "rust_wipes": [ + { + "type": "unknown", + "timestamp": "2024-01-19T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-22T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-26T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-29T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-02T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-05T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-09T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-12T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-16T19:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-19T19:00:00.000Z", + "serverSteamId": "90179618001486864" }, "private": false, - "createdAt": "2021-11-24T23:53:39.044Z", - "updatedAt": "2023-12-12T21:43:21.970Z", - "portQuery": 28029, + "createdAt": "2021-01-29T21:41:07.745Z", + "updatedAt": "2024-01-19T09:31:30.633Z", + "portQuery": 28015, "country": "US", - "queryStatus": "timeout", - "rconActive": false, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "reservedSlots": 0, - "reservedSlotKickReason": "1", - "reservedSlotsKickLastToJoin": false, - "disabledReason": "We have been unable to connect for an extended period of time. Please ensure your connection settings are correct and the server is available.", - "disableLocked": false, - "clientPerf": false - }, - "rconStatus": "disconnected", - "rconLastConnected": "2023-08-05T18:04:08.660Z", - "rconDisconnected": "2023-08-05T22:25:07.124Z" + "queryStatus": "valid" }, "relationships": { "game": { @@ -5950,103 +5151,72 @@ "organization": { "data": { "type": "organization", - "id": "25433" + "id": "17965" } } - }, - "meta": { - "timePlayed": 23240, - "firstSeen": "2021-12-05T08:34:23.820Z", - "lastSeen": "2022-01-29T07:07:09.303Z", - "online": false } }, { "type": "server", - "id": "14487951", + "id": "12074336", "attributes": { - "id": "14487951", - "name": "RGS Vanilla Quad - Monthly | No BP Wipe | 2x nodes | Ez Mini's", + "id": "12074336", + "name": "[NEW] RUST N CHILL 2x | VANILLA+ | NOOBS WELCOME", "address": null, - "ip": "216.39.240.66", - "port": 28020, - "players": 10, - "maxPlayers": 80, - "rank": 570, + "ip": "208.52.153.221", + "port": 29315, + "players": 0, + "maxPlayers": 100, + "rank": 15021, "location": [ - -77.0369, - 38.9072 + -96.879204, + 32.814899 ], - "status": "online", + "status": "removed", "details": { - "tags": [ - "mp80", - "cp10", - "ptrak", - "qp0", - "v2515", - "monthly", - "vanilla", - "h47ddea0", - "stok", - "born1701976285", - "gmrust", - "cs90943", - "oxide" - ], "official": false, - "rust_type": "community", - "map": "Custom Map", - "environment": "w", - "rust_build": "90943", - "rust_ent_cnt_i": 120486, + "rust_type": "modded", + "map": "Procedural Map", + "environment": "l", + "rust_build": "73419", + "rust_ent_cnt_i": 112950, "rust_fps": 30, - "rust_fps_avg": 30, - "rust_gc_cl": 225, - "rust_gc_mb": 3006, - "rust_hash": "47ddea0", - "rust_headerimage": "https://media.discordapp.net/attachments/1006963182889349150/1135863687907922001/free-lostdoes.art_2.png?width=818&height=460", + "rust_fps_avg": 29.92, + "rust_gc_cl": 172, + "rust_gc_mb": 1839, + "rust_hash": "455e76db", + "rust_headerimage": "https://cdn.discordapp.com/attachments/699310938536280154/857887057104076811/512x256.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 83650, - "rust_url": "https://www.RustGamingServers.com", - "rust_world_seed": 1337, + "rust_uptime": 26244, + "rust_url": "https://discord.gg/93zg2bzb9Z", + "rust_world_seed": 1833289891, "rust_world_size": 3700, "rust_maps": { - "seed": 950923024, - "size": 4250, - "url": "https://rustmaps.com/map/4250_950923024", - "thumbnailUrl": "https://files.rustmaps.com/img/231/b6c24492-4127-4ce9-bf49-3a8388ce9396/Thumbnail.png", - "monuments": 150, + "seed": 1833289891, + "size": 3700, + "url": "https://rustmaps.com/map/3700_1833289891", + "thumbnailUrl": "https://files.rustmaps.com/img/227/0b9b50a8-5be7-4518-8010-669a12368a45/Thumbnail.png", + "monuments": 192, "barren": false }, - "rust_description": "Our Server's have all been built and designed to fill voids in the Rust Community. At RGS, were committed to serving the Rust Community in creative and fun way's. High Performance Dedicated Server's, so you can frag out without lag! All the server rules can be found in our discord. \n\nServer Features\n\u2022 1/4 Upkeep, so you can build bigger\n\u2022 2X the amount of Nodes, Tree's, Animals, Hemp and Berry Spawns in the map\n\u2022 Mini copters spawn on the roads (Like OG Vanilla)\n\u2022 2X Plant Growth Times for all you Plant Farmers \n\u2022 Bags only need to be 10 meters apart for separate bag timers (Instead of 50 Meters)\n\u2022 More wolves, bears and Boars for easy animal fat and leather... Zero Chickens n Deers\n\u2022 8 minute Hackable Locked Crate Timer vs the standard 15 minute Timer...\n\nhttps://discord.gg/rgsofficial | The Best Vanilla Experiance!", - "rust_modded": false, + "rust_description": "Welcome to Rust n Chill\n \nNo racism, homophobia or overly aggressive toxic behavior, you will be muted/banned.\n\nNo Rust game banned alts allowed\nNo VAC bans less than 365 days\nVanilla team limit (8) Teaming is bannable\nMap wipes every Thursday at 3pm EST - Blueprints wipe monthly on forced wipe. (first Thursday of the month)\n\u2726 2x Gather rates for resources, modified stack sizes\n\u2726 Improved barrels\n\u2726 Clear and short nights (10 mins)\n\u2726 Neutral animals\n\u2726 Furnace Splitter\n\u2726 Active non-playing admins. Active playing chat mods.\n\u2726 Skins (use command /skin in chat)\n\nJoin the Rust n Chill discord if you need help, want to chat, need a team or want to suggest something for next wipe!\nhttps://discord.gg/93zg2bzb9Z", + "rust_modded": true, "rust_queued_players": 0, - "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:11:25.000Z", - "rust_last_ent_drop": "2023-12-07T19:16:35.682Z", - "rust_last_seed_change": "2023-03-02T19:11:11.980Z", - "rust_last_wipe": "2023-12-07T19:16:35.682Z", - "rust_last_wipe_ent": 68153, - "serverSteamId": "90178635832567810" + "rust_born": "2022-08-18T19:29:51.000Z", + "rust_last_ent_drop": "2022-08-11T19:23:32.676Z", + "rust_last_seed_change": "2022-08-18T19:32:09.559Z", + "rust_last_wipe": "2022-08-18T19:32:09.559Z", + "rust_last_wipe_ent": 55489, + "serverSteamId": "90162844066323462" }, "private": false, - "createdAt": "2022-02-26T20:48:49.222Z", - "updatedAt": "2023-12-13T12:36:47.734Z", - "portQuery": 28025, + "createdAt": "2021-07-05T05:19:30.133Z", + "updatedAt": "2022-09-30T05:07:02.220Z", + "portQuery": 29315, "country": "US", - "queryStatus": "valid", - "rconActive": true, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "clientPerf": false - }, - "rconStatus": "connected", - "rconLastConnected": "2023-12-12T13:23:20.574Z", - "rconDisconnected": null + "queryStatus": "timeout" }, "relationships": { "game": { @@ -6054,113 +5224,150 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "13771" - } } - }, - "meta": { - "timePlayed": 1945, - "firstSeen": "2022-09-13T15:16:21.650Z", - "lastSeen": "2022-09-13T15:48:46.548Z", - "online": false } }, { "type": "server", - "id": "18130785", + "id": "12410930", "attributes": { - "id": "18130785", - "name": "POLAR | EU Vanilla Main | Just Wiped!", - "address": null, - "ip": "95.214.180.69", - "port": 28095, - "players": 53, - "maxPlayers": 150, - "rank": 222, + "id": "12410930", + "name": "Rustoria.co - US Mondays", + "address": "mon.rustoria.us", + "ip": "208.103.169.85", + "port": 28010, + "players": 122, + "maxPlayers": 200, + "rank": 6, "location": [ - 8.6843, - 50.1188 + -96.8704, + 32.8137 ], "status": "online", "details": { "tags": [ - "mp150", - "cp53", + "mp200", + "cp131", "ptrak", "qp0", - "v2515", - "monthly", + "v2516", + "weekly", "vanilla", - "eu", - "h6979574", + "h1035d032", "stok", - "born1701976149", + "born1705348915", "gmrust", - "cs90996", - "carbon" + "cs91339", + "rustmaps", + "oxide", + "rustmaps" ], - "official": false, - "rust_type": "community", - "map": "Custom Map", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 197253, - "rust_fps": 29, - "rust_fps_avg": 29.15, - "rust_gc_cl": 183, - "rust_gc_mb": 4024, - "rust_hash": "6979574", - "rust_headerimage": "https://i.imgur.com/08yTQM4.jpg", + "official": true, + "rust_type": "official", + "map": "Rustoria Map Generation", + "environment": "w", + "rust_build": "91339", + "rust_ent_cnt_i": 311172, + "rust_fps": 30, + "rust_fps_avg": 29.98, + "rust_gc_cl": 317, + "rust_gc_mb": 5872, + "rust_hash": "1035d032", + "rust_headerimage": "https://i.imgur.com/hArBtva.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 19576, - "rust_url": "https://discord.gg/playpolar", - "rust_world_seed": 1337, - "rust_world_size": 3900, + "rust_uptime": 66069, + "rust_url": "http://rustoria.co", + "rust_world_seed": 37677, + "rust_world_size": 4000, + "rust_world_levelurl": "https://maps.rustmaps.com/244/699432c85066446ea6a610ecaab337a9/procedural__4000_CeFnqjCNTU-J_33e-ICubA.map", "rust_maps": { - "seed": 1337, - "size": 4500, - "url": "https://rustmaps.com/map/4500_1337", - "thumbnailUrl": "https://files.rustmaps.com/img/231/ab042349-3fe7-4d68-8ba8-d9925e60fc02/Thumbnail.png", - "monuments": 174, - "barren": false + "seed": 37677, + "size": 4000, + "url": "https://rustmaps.com/map/adf9bcaef39849baa12932ba9cf77834", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/adf9bcaef39849baa12932ba9cf77834/thumbnail.png", + "monuments": 144, + "barren": false, + "updatedAt": "2024-01-19T09:23:11.277Z", + "mapUrl": "https://maps.rustmaps.com/244/699432c85066446ea6a610ecaab337a9/procedural__4000_CeFnqjCNTU-J_33e-ICubA.map" }, - "rust_description": "Polar | The ultimate vanilla rust experience with no turret limit!\nTeam Limit: Unlimited\nMap Wipe: Monthly\nBP Wipe: Never!\n\nMinicopters spawn on roads\nExtra recyclers/dronemarkets @ ranch & fishing village\n\nCustom anticheat/antiteaming detections to keep the servers safe & fair!", + "rust_description": "Wipe Schedule:\n\\tMap - Weekly on Mondays @ 3PM EST, or when force updates occur.\n\\tBPs - Never\n\nVIP: donate.rustoria.co\n\nRules:\n\\t- No hacking / scripting\n\\t- No intentional bug abuse\n\\t- No EAC / FP banned alts\n\\t- No ban evading\n\\t- No racism\n\nGood performance\nActive non playing admins\nSeeds are carefully picked\n\nDiscord: rustoria.co/discord\nFull rules: rustoria.co/vanilla/rules", "rust_modded": false, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:09:09.000Z", - "rust_last_ent_drop": "2023-12-07T19:17:13.251Z", - "rust_last_seed_change": "2023-05-27T18:00:16.454Z", - "rust_last_wipe": "2023-12-07T19:17:13.251Z", - "rust_last_wipe_ent": 76420, - "serverSteamId": "90178653834947613" + "rust_born": "2024-01-15T20:01:55.000Z", + "rust_last_ent_drop": "2024-01-15T20:03:49.884Z", + "rust_last_seed_change": "2021-09-27T19:03:46.195Z", + "rust_last_wipe": "2024-01-15T20:03:49.884Z", + "rust_last_wipe_ent": 91093, + "rust_settings_source": "user", + "rust_settings": { + "version": 3, + "teamUILimit": 999999, + "groupLimit": 999999, + "timeZone": "America/New_York", + "rates": { + "gather": 1, + "craft": 1, + "component": 1, + "scrap": 1 + }, + "blueprints": true, + "kits": false, + "decay": true, + "decayScale": 1, + "forceWipeType": "map", + "wipes": [ + { + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ], + "days": [ + "MO" + ], + "type": "map", + "hour": 15, + "minute": 0 + } + ] + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-01-22T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-29T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-05T20:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-12T20:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-22T20:00:00.000Z", + "rust_next_wipe_map": "2024-01-22T20:00:00.000Z", + "serverSteamId": "90179692475783194" }, "private": false, - "createdAt": "2023-01-06T11:47:24.237Z", - "updatedAt": "2023-12-13T12:38:18.763Z", - "portQuery": 28096, - "country": "DE", - "queryStatus": "valid", - "rconActive": true, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "reservedSlots": 0, - "reservedSlotKickReason": "error", - "reservedSlotsKickLastToJoin": false, - "disabledReason": null, - "disableLocked": false, - "clientPerf": false - }, - "rconStatus": "connected", - "rconLastConnected": "2023-12-13T07:12:06.400Z", - "rconDisconnected": null + "createdAt": "2021-08-09T21:05:03.699Z", + "updatedAt": "2024-01-19T09:32:27.137Z", + "portQuery": 28015, + "country": "US", + "queryStatus": "timeout" }, "relationships": { "game": { @@ -6168,113 +5375,158 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "61559" - } } - }, - "meta": { - "timePlayed": 97, - "firstSeen": "2023-07-11T09:22:27.259Z", - "lastSeen": "2023-07-11T09:24:04.109Z", - "online": false } }, { "type": "server", - "id": "18588571", + "id": "13519849", "attributes": { - "id": "18588571", - "name": "[AU] RustyFeels.com - 2x Long | Max 6 | Full Wiped 07/12", + "id": "13519849", + "name": "WARBANDITS.GG US 3X |Solo/Duo/Trio/Quad|LootX3| JUST WIPED 01/1", "address": null, - "ip": "103.187.104.61", - "port": 28015, - "players": 39, - "maxPlayers": 150, - "rank": 491, + "ip": "199.231.233.119", + "port": 28010, + "players": 11, + "maxPlayers": 200, + "rank": 393, "location": [ - 151.12, - -33.7798 + -96.8336, + 32.7908 ], "status": "online", "details": { "tags": [ - "mp150", - "cp38", + "mp200", + "cp11", "ptrak", "qp0", - "v2515", - "monthly", - "vanilla", - "OC", - "h3219af31", + "v2516", + "biweekly", + "NA", + "hfb0bd1c", "stok", - "born1701976437", + "born1705435144", "gmrust", - "cs90996", - "rustmaps", + "cs91340", "oxide", - "modded" + "modded", + "rustmaps" ], "official": false, "rust_type": "modded", - "map": "Rusty Feels FPS+", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 163455, - "rust_fps": 30, - "rust_fps_avg": 29.82, - "rust_gc_cl": 446, - "rust_gc_mb": 3818, - "rust_hash": "3219af31", - "rust_headerimage": "https://media.discordapp.net/attachments/1070150613964423260/1082224802011549696/serverheader.png", + "map": "WarBandits Map Generation", + "environment": "w", + "rust_build": "91340", + "rust_ent_cnt_i": 154137, + "rust_fps": 58, + "rust_fps_avg": 57.8, + "rust_gc_cl": 977, + "rust_gc_mb": 5909, + "rust_hash": "fb0bd1c", + "rust_headerimage": "https://warbandits.gg/assets/media/rust/us3xquad.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 70416, - "rust_url": "https://discord.gg/rustyfeels", - "rust_world_seed": 1, - "rust_world_size": 3700, - "rust_world_levelurl": "https://maps.rustmaps.com/244/065875261c6342c4a85534e178916f2c/procedural_3700_BXmZqTUCYUieP0pCdH8-YA.map", + "rust_uptime": 221807, + "rust_url": "https://discord.gg/nXJSJSZ", + "rust_world_seed": 1402563851, + "rust_world_size": 3850, + "rust_world_levelurl": "https://maps.rustmaps.com/244/ba6169f043f449a8b5710b9288178e02/WarBandits_ba6169f043f449a8b5710b9288178e02.map", "rust_maps": { - "seed": 1, - "size": 3700, - "url": "https://rustmaps.com/map/323751ff88144fddbed604860297aee5", - "thumbnailUrl": "https://content.rustmaps.com/maps/244/323751ff88144fddbed604860297aee5/thumbnail.png", + "seed": 1402563851, + "size": 3850, + "url": "https://rustmaps.com/map/ab9af1591db046ccb272bd81c2052425", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/ab9af1591db046ccb272bd81c2052425/thumbnail.png", "monuments": 142, "barren": false, - "updatedAt": "2023-12-13T11:24:15.238Z", - "mapUrl": "https://maps.rustmaps.com/244/065875261c6342c4a85534e178916f2c/procedural_3700_BXmZqTUCYUieP0pCdH8-YA.map" + "updatedAt": "2024-01-19T06:56:09.081Z", + "mapUrl": "https://maps.rustmaps.com/244/ba6169f043f449a8b5710b9288178e02/WarBandits_ba6169f043f449a8b5710b9288178e02.map" }, - "rust_description": "Welcome to AU Rusty Feels 2x Long!\nThe #1 AU Rust Modded Servers\n\n\u2714 Monthly Map Wipes\n\u2714 BPs wipe on Force\n\u2714 Max 6 Team Limit\n\u2714 2x Crafting, Smelting & Recycling Speed\n\u2714 2x Resource Gathering\n\u2714 2x Stack Size (Resources, Food, Construction)\n\u2714 Drone Marketplace at Large Fishing Village\n\u2714 Recyclers at all Fishing Villages\n\nDiscord: discord.gg/rustyfeels\nRestarts daily at 6am AEST for performance", + "rust_description": "Welcome to WarBandits.gg 3x Solo/Duo/Trio/Quad! \nOn our servers we provide the best Rust gameplay. We run multiple balanced plugins to improve the quality of the game. Our servers also run on the best Network & Hardware possible to improve your ingame experience on our servers! \n \u2726 3x Gather Rates \n \u2726 3x Crafting Speed \n \u2726 3x Components and Scrap \n \u2726 Recyclers at additional monuments \n \u2726 Custom High Performance Maps \n \u2726 Extended Workbench range \n \u2726 Tier 1 BPs unlocked \n \u2726 Long Days & Short Nights \n \u2726 Group Limit: 4 \n \u2726 Active Staff \n \u2726 Fast Smelt \n Make sure to join our discord server before playing by pressing the view webpage button or by visiting the link warbandits.gg/discord", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:13:57.000Z", - "rust_last_ent_drop": "2023-12-07T19:05:22.627Z", - "rust_last_seed_change": "2023-12-07T19:15:31.697Z", - "rust_last_wipe": "2023-12-07T19:15:31.697Z", - "rust_last_wipe_ent": 72497, - "serverSteamId": "90178639288821774" + "rust_born": "2024-01-16T19:59:04.000Z", + "rust_last_ent_drop": "2024-01-04T19:03:00.538Z", + "rust_last_seed_change": "2024-01-16T20:02:14.149Z", + "rust_last_wipe": "2024-01-16T20:02:14.149Z", + "rust_last_wipe_ent": 84307, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "unknown", + "groupLimit": 4, + "teamUILimit": 4, + "kits": false, + "rates": { + "component": 3, + "craft": 3, + "gather": 3, + "scrap": 3 + }, + "wipes": [ + { + "rrule": "DTSTART;TZID=America/Chicago:20231212T140000\nRRULE:INTERVAL=72;FREQ=HOURLY", + "type": "unknown" + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "America/Chicago", + "version": 3 + }, + "rust_wipes": [ + { + "type": "unknown", + "timestamp": "2024-01-20T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-23T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-26T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-01-29T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-01T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-04T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-07T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-10T20:00:00.000Z" + }, + { + "type": "unknown", + "timestamp": "2024-02-13T20:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-20T20:00:00.000Z", + "serverSteamId": "90179640725160979" }, "private": false, - "createdAt": "2023-02-03T18:07:55.535Z", - "updatedAt": "2023-12-13T12:38:26.573Z", - "portQuery": 28016, - "country": "AU", - "queryStatus": "valid", - "rconActive": true, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "clientPerf": false - }, - "rconStatus": "connected", - "rconLastConnected": "2023-12-12T17:01:47.546Z", - "rconDisconnected": null + "createdAt": "2021-12-04T21:42:35.535Z", + "updatedAt": "2024-01-19T09:33:09.280Z", + "portQuery": 28015, + "country": "US", + "queryStatus": "valid" }, "relationships": { "game": { @@ -6282,111 +5534,116 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "67589" - } } - }, - "meta": { - "timePlayed": 150, - "firstSeen": "2023-07-11T10:04:19.177Z", - "lastSeen": "2023-07-11T10:06:49.249Z", - "online": false } }, { "type": "server", - "id": "21552172", + "id": "14216011", "attributes": { - "id": "21552172", - "name": "POLAR | EU Solo/Duo | Noob Friendly - JUST WIPED", - "address": null, - "ip": "156.236.84.193", - "port": 28015, - "players": 31, + "id": "14216011", + "name": "Helix 2x Monthly Solo/Duo/Trio/Quad|No BP wipes|Noob Friendly", + "address": "2xquad.helixrust.gg", + "ip": "199.231.233.95", + "port": 28010, + "players": 63, "maxPlayers": 200, - "rank": 430, + "rank": 82, "location": [ - -0.093, - 51.5088 + -96.8336, + 32.7908 ], "status": "online", "details": { "tags": [ "mp200", - "cp31", + "cp63", "ptrak", "qp0", - "v2515", - "vanilla", + "v2516", "monthly", - "eu", - "h3219af31", + "hfb0bd1c", "stok", - "born1701975701", + "born1704394483", "gmrust", - "cs90996", - "oxide" + "cs91340", + "oxide", + "modded", + "rustmaps" ], "official": false, - "rust_type": "community", - "map": "Custom Map", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 156965, - "rust_fps": 29, - "rust_fps_avg": 29.03, - "rust_gc_cl": 376, - "rust_gc_mb": 2805, - "rust_hash": "3219af31", - "rust_headerimage": "https://i.imgur.com/08yTQM4.jpg", + "rust_type": "modded", + "map": "Helix Better FPS Map | x2", + "environment": "w", + "rust_build": "91340", + "rust_ent_cnt_i": 395884, + "rust_fps": 44, + "rust_fps_avg": 43.38, + "rust_gc_cl": 568, + "rust_gc_mb": 7638, + "rust_hash": "fb0bd1c", + "rust_headerimage": "https://i.imgur.com/UR5sZGO.png", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 21940, - "rust_url": "https://discord.gg/playpolar", + "rust_uptime": 66398, + "rust_url": "https://store.helixrust.gg", "rust_world_seed": 1337, - "rust_world_size": 3900, + "rust_world_size": 4250, + "rust_world_levelurl": "https://maps.rustmaps.com/244/8bd595c1ec8f46b9930b1b5ea7f787f0/Helix_4250__EFdqyqBQEyk4SvOFtR4CA.map", "rust_maps": { - "seed": 2147483647, - "size": 3800, - "url": "https://rustmaps.com/map/3800_2147483647", - "thumbnailUrl": "https://content.rustmaps.com/maps/238/47b9d5860907435aa3e5ff3179280fe7/thumbnail.png", - "monuments": 156, + "seed": 1337, + "size": 4250, + "url": "https://rustmaps.com/map/8295266001dc4741bd51b4d620189301", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/8295266001dc4741bd51b4d620189301/thumbnail.png", + "monuments": 143, "barren": false, - "updatedAt": "2023-06-08T04:30:43.926Z" + "updatedAt": "2024-01-19T09:22:41.244Z", + "mapUrl": "https://maps.rustmaps.com/244/8bd595c1ec8f46b9930b1b5ea7f787f0/Helix_4250__EFdqyqBQEyk4SvOFtR4CA.map" }, - "rust_description": "DISCORD.GG/PLAYPOLAR | The ultimate laidback rust experience!\nTeam Limit: 2\nMap Wipe: Monthly\nBP Wipe: Never!\n\n50% base upkeep (your base stays alive for longer!)\nMinicopters spawn on roads\nExtra recyclers/dronemarkets @ ranch & fishing village\n\nCustom anticheat/antiteaming detections to keep the servers safe & fair!\n\nSERVER RULES:\nNo EAC/Rust banned alts under 365 days (maximum: 1)\nNo VAC/Gamebans under 35 days\nNo Walling/Turreting Monuments/Quarries\n\nwe reserve the right to remove players from our servers at any time.", - "rust_modded": false, + "rust_description": "Helix Rust - perfectly modded rust servers\nMonthly map wipes on Forced wipes (first Thursday of each month at 2pm EST)\nBlueprints don't wipe\nJoin our discord at helixrust.gg/discord\nPurchase ranks at store.helixrust.gg\nMax group size is 4, no alliences/truces, etc. Read /teamlimits to avoid being banned\n\\tFree skinbox for everyone - skin any item with any skin using /skinbox\n\\t2x gather rates on everything\n\\t2x craft times, recycler & smelting speed\n\\t2x stack sizes\n\\tSome minicopters spawn on the roads\n\\tDrone marketplaces at Fishing Villages & Ranches\n\\tBandit Camp merged with outpost\n\\tIncreased shoreside boat spawns\n\\tRecyclers at Dome, Oilrigs, Cargo, Ranches & Fishing Villages\n\\tNights are 5 minutes long\n\\tNo fog or rain\n\\tFood doesn't burn\n---------------\nRules: (in-game /rules for more)\n\\tNo cheating/exploiting.\n\\tNo Rust game banned alts in the last 180 days\n\\tNo more than 1 Rust game banned alt\n\\tNo VAC bans that are less than 15 days old\n\\tPlaying with cheaters/evaders will result in a ban\n\\tNo more than 2 steam bans (vac/game bans combined)\n\\tNo limited and no not setup steam accounts", + "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:01:41.000Z", - "rust_last_ent_drop": "2023-12-07T19:04:59.797Z", - "rust_last_seed_change": "2023-06-08T06:06:22.052Z", - "rust_last_wipe": "2023-12-07T19:04:59.797Z", - "rust_last_wipe_ent": 75266, - "serverSteamId": "90178653366178838" + "rust_born": "2024-01-04T18:54:43.000Z", + "rust_last_ent_drop": "2024-01-04T18:58:48.188Z", + "rust_last_wipe": "2024-01-04T18:58:48.188Z", + "rust_last_wipe_ent": 94171, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "map", + "groupLimit": 4, + "teamUILimit": 4, + "kits": false, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [], + "decay": 1, + "upkeep": 1, + "timeZone": "America/New_York", + "version": 3 + }, + "rust_wipes": [ + { + "type": "map", + "timestamp": "2024-02-01T19:00:00.000Z" + } + ], + "rust_next_wipe": "2024-02-01T19:00:00.000Z", + "rust_next_wipe_map": "2024-02-01T19:00:00.000Z", + "serverSteamId": "90179692467529755" }, "private": false, - "createdAt": "2023-06-01T13:57:04.018Z", - "updatedAt": "2023-12-13T12:37:11.148Z", - "portQuery": 28016, - "country": "GB", - "queryStatus": "valid", - "rconActive": true, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "disabledReason": null, - "disableLocked": false, - "clientPerf": false - }, - "rconStatus": "connected", - "rconLastConnected": "2023-12-13T06:32:11.066Z", - "rconDisconnected": null + "createdAt": "2022-02-01T03:43:49.470Z", + "updatedAt": "2024-01-19T09:32:40.670Z", + "portQuery": 28015, + "country": "US", + "queryStatus": "valid" }, "relationships": { "game": { @@ -6394,112 +5651,201 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "61559" - } } - }, - "meta": { - "timePlayed": 25, - "firstSeen": "2023-07-11T09:28:50.142Z", - "lastSeen": "2023-07-11T09:29:15.587Z", - "online": false } }, { "type": "server", - "id": "21871300", + "id": "14702632", "attributes": { - "id": "21871300", - "name": "[EU] POLAR | 2X Solo/Duo | No BP Wipe - JUST WIPED!", + "id": "14702632", + "name": "Survivors.gg [ 2x Solo/Duo ] WIPED 16.01", "address": null, - "ip": "95.214.180.69", - "port": 28045, - "players": 34, - "maxPlayers": 150, - "rank": 416, + "ip": "154.6.138.9", + "port": 28015, + "players": 24, + "maxPlayers": 300, + "rank": 87, "location": [ - 8.6843, - 50.1188 + -0.03, + 51.5031 ], "status": "online", "details": { "tags": [ - "mp150", - "cp33", + "mp300", + "cp26", "ptrak", "qp0", - "v2515", - "monthly", - "vanilla", - "eu", - "h3219af31", + "v2516", + "weekly", + "h12fd6e5b", "stok", - "born1701977137", - "gmvanilla", - "cs90996", + "born1705409945", + "gmrust", + "cs91458", "oxide", - "modded" + "modded", + "rustmaps" ], "official": false, "rust_type": "modded", "map": "Custom Map", - "environment": "l", - "rust_build": "90996", - "rust_ent_cnt_i": 189628, - "rust_fps": 26, - "rust_fps_avg": 26.43, - "rust_gc_cl": 420, - "rust_gc_mb": 3449, - "rust_hash": "3219af31", - "rust_headerimage": "https://i.imgur.com/08yTQM4.jpg", + "environment": "w", + "rust_build": "91458", + "rust_ent_cnt_i": 209766, + "rust_fps": 59, + "rust_fps_avg": 58.88, + "rust_gc_cl": 492, + "rust_gc_mb": 5460, + "rust_hash": "12fd6e5b", + "rust_headerimage": "https://cdn.discordapp.com/attachments/1007577972640849921/1101863355439915048/survivor.jpg", "rust_mem_pv": null, "rust_mem_ws": null, "pve": false, - "rust_uptime": 15947, - "rust_url": "https://playpolar.uk", - "rust_world_seed": 1337, - "rust_world_size": 3900, + "rust_uptime": 96597, + "rust_url": "https://survivors.gg", + "rust_world_seed": 11943, + "rust_world_size": 3750, + "rust_world_levelurl": "https://maps.rustmaps.com/244/9322c5a93bd44977898b957e8e2b729f/procedural__3750_IjBq1kfB7Uy0xnTAFtWRmQ.map", "rust_maps": { - "seed": 154493489, - "size": 3500, - "url": "https://rustmaps.com/map/3500_154493489", - "thumbnailUrl": "https://content.rustmaps.com/maps/239/2dc8982ecde24b02b574fb8bd2193a42/thumbnail.png", - "monuments": 133, + "seed": 11943, + "size": 3750, + "url": "https://rustmaps.com/map/8996fa3815c045688c3675c689bec8ec", + "thumbnailUrl": "https://content.rustmaps.com/maps/244/8996fa3815c045688c3675c689bec8ec/thumbnail.png", + "monuments": 127, "barren": false, - "updatedAt": "2023-08-03T16:22:26.637Z" + "updatedAt": "2024-01-19T06:41:34.662Z", + "mapUrl": "https://maps.rustmaps.com/244/9322c5a93bd44977898b957e8e2b729f/procedural__3750_IjBq1kfB7Uy0xnTAFtWRmQ.map" }, - "rust_description": "Team Limit: 2 (No Allies)\nMap Wipe: Monthly (No Blueprint Wipe)\nNo Turret Limit\n\n\u2745 FEATURES \u2745\nAdditional recyclers, refineries & drone marketplaces\n50% Base Upkeep (keep your base alive with half the cost)\nCustom Outpost, vending machines & events to keep your wipe fun & fresh\nEarn FREE VIP by playing! /freevip\n\nDISCORD.GG/PLAYPOLAR", + "rust_description": "\n \u272f Welcome to Survivors.gg \n \u272f\u272f Rust gaming community since 2014 \n \u272f\u272f\u272f Join Us: www.discord.survivors.gg \n\n \u272f Want to skip the queue? Get it at www.survivors.gg \n \u272f Map wipes every Tuesday and Friday at 14:00 CET \n \u272f Full wipes every 2 weeks on Friday at 16:00 CET \n \u272f No wipe on Friday after Forced Update \n \u272f Max Team: 2 Players \n \u272f Electric BP's are unlocked \n \u272f 2x Gather Rates. \n \u272f Half smelt, crafting speeds \n \u272f Faster nights \n \u272f Fishing Village and Large Barn with Recycler \n \u272f write /help for all commands \n \u272f no Kits, no TP and no P2W! \n\n Admins do not play or interfere with gameplay. \n Visit www.Survivors.gg for more information.", "rust_modded": true, "rust_queued_players": 0, "rust_gamemode": "standard", - "rust_born": "2023-12-07T19:25:37.000Z", - "rust_last_ent_drop": "2023-12-07T19:30:58.709Z", - "rust_last_seed_change": "2023-08-03T18:12:55.858Z", - "rust_last_wipe": "2023-12-07T19:30:58.709Z", - "rust_last_wipe_ent": 75737, - "serverSteamId": "90178654370893853" + "rust_born": "2024-01-16T12:59:05.000Z", + "rust_last_ent_drop": "2024-01-16T13:05:10.372Z", + "rust_last_seed_change": "2024-01-16T13:05:10.372Z", + "rust_last_wipe": "2024-01-16T13:05:10.372Z", + "rust_last_wipe_ent": 78154, + "rust_settings_source": "detected", + "rust_settings": { + "blueprints": true, + "forceWipeType": "map", + "groupLimit": 2, + "teamUILimit": 2, + "kits": false, + "rates": { + "component": 2, + "craft": 2, + "gather": 2, + "scrap": 2 + }, + "wipes": [ + { + "days": [ + "TU" + ], + "hour": 14, + "minute": 0, + "type": "map", + "weeks": [ + 1, + 1, + 1, + 1, + 1 + ] + }, + { + "days": [ + "FR" + ], + "hour": 16, + "minute": 0, + "type": "full", + "weeks": [ + 1, + 0, + 1, + 0, + 1 + ] + }, + { + "days": [ + "FR" + ], + "hour": 16, + "minute": 0, + "type": "map", + "weeks": [ + 0, + 1, + 0, + 1, + 0 + ] + } + ], + "decay": 1, + "upkeep": 1, + "timeZone": "Europe/Paris", + "version": 3 + }, + "rust_wipes": [ + { + "type": "full", + "timestamp": "2024-01-19T15:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-23T13:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-26T15:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-01-30T13:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-01T19:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-02T15:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-06T13:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-09T15:00:00.000Z" + }, + { + "type": "map", + "timestamp": "2024-02-13T13:00:00.000Z" + }, + { + "type": "full", + "timestamp": "2024-02-16T15:00:00.000Z" + } + ], + "rust_next_wipe": "2024-01-19T15:00:00.000Z", + "rust_next_wipe_map": "2024-01-19T15:00:00.000Z", + "rust_next_wipe_bp": "2024-01-19T15:00:00.000Z", + "rust_next_wipe_full": "2024-01-19T15:00:00.000Z", + "serverSteamId": "90179682795375638" }, "private": false, - "createdAt": "2023-06-14T12:06:22.984Z", - "updatedAt": "2023-12-13T12:38:00.916Z", - "portQuery": 28046, - "country": "DE", - "queryStatus": "valid", - "rconActive": true, - "metadata": { - "connectionType": "ws", - "statusInterval": 30, - "disabledReason": null, - "disableLocked": false, - "clientPerf": false - }, - "rconStatus": "connected", - "rconLastConnected": "2023-12-13T08:12:34.644Z", - "rconDisconnected": null + "createdAt": "2022-03-19T06:32:59.295Z", + "updatedAt": "2024-01-19T09:31:59.532Z", + "portQuery": 28014, + "country": "GB", + "queryStatus": "timeout" }, "relationships": { "game": { @@ -6507,77 +5853,76 @@ "type": "game", "id": "rust" } - }, - "organization": { - "data": { - "type": "organization", - "id": "61559" - } } - }, - "meta": { - "timePlayed": 29, - "firstSeen": "2023-07-11T09:26:19.471Z", - "lastSeen": "2023-07-11T09:26:48.688Z", - "online": false } }, { - "type": "playerFlag", - "id": "d6ca0cb0-67b5-11ec-a3b5-5504f08c6982", + "type": "server", + "id": "15389887", "attributes": { - "createdAt": "2021-12-28T08:12:03.195Z", - "updatedAt": "2021-12-28T08:12:03.195Z", - "icon": "verified_user", - "name": "Dubs Admin", - "color": "#1400ff", - "description": "Dubs Rust Administrator" - }, - "relationships": { - "user": { - "data": { - "type": "user", - "id": "325963" - } + "id": "15389887", + "name": "Titan Rust | Vanilla | Solo Duo Trio Quad | Just Wiped", + "address": null, + "ip": "205.178.177.41", + "port": 28015, + "players": 0, + "maxPlayers": 250, + "rank": 18443, + "location": [ + -96.608879, + 33.635658 + ], + "status": "removed", + "details": { + "official": false, + "rust_type": "community", + "map": "Titan Rust Vanilla", + "environment": "l", + "rust_build": "72647", + "rust_ent_cnt_i": 62330, + "rust_fps": 76, + "rust_fps_avg": 73.73, + "rust_gc_cl": 340, + "rust_gc_mb": 1678, + "rust_hash": "72fddce6", + "rust_headerimage": "https://media.discordapp.net/attachments/979249065072132116/979255568080461834/Screenshot_2022-05-26_153105.png", + "rust_mem_pv": null, + "rust_mem_ws": null, + "pve": false, + "rust_uptime": 12567, + "rust_url": "https://discord.gg/trs", + "rust_world_seed": 1245451847, + "rust_world_size": 3800, + "rust_maps": { + "seed": 1245451847, + "size": 3750, + "url": "https://rustmaps.com/map/3750_1245451847", + "thumbnailUrl": "https://files.rustmaps.com/img/224/0105c4da-f64a-462e-b9a8-167c0643e726/Thumbnail.png", + "monuments": 180, + "barren": false + }, + "rust_description": "Titan Rust Vanilla Solo Duo Trio Quad.\n\nWelcome to Titan Rust pure vanilla gameplay with active admins and a awesome staff team to protect you from cheaters.\n\nMax group limit is 4\nNo cheating\nNo racial Slurs\nNo exploiting\n\nJoin our discord to view all our rust server rules at Titan Rust.\n\nServers wipe twice a week Friday\u2019s and Tuesday\u2019s at 4 Pm EST. Monthly BP wipes\nJoin our discord to stay up to date and come and check out our other servers !\nAll rules are in discord.", + "rust_modded": false, + "rust_queued_players": 0, + "rust_born": "2022-08-02T20:29:00.000Z", + "rust_last_ent_drop": "2022-08-02T20:02:24.853Z", + "rust_last_seed_change": "2022-07-29T19:59:55.954Z", + "rust_last_wipe": "2022-08-02T20:02:24.853Z", + "rust_last_wipe_ent": 43320, + "serverSteamId": "90161960637088777" }, - "organization": { - "data": { - "type": "organization", - "id": "25433" - } - } - } - }, - { - "type": "flagPlayer", - "id": "579979635:d6ca0cb0-67b5-11ec-a3b5-5504f08c6982", - "attributes": { - "addedAt": "2021-12-28T19:57:52.113Z", - "removedAt": null + "private": false, + "createdAt": "2022-05-26T02:55:01.301Z", + "updatedAt": "2022-08-12T11:15:00.796Z", + "portQuery": 28015, + "country": "US", + "queryStatus": "timeout" }, "relationships": { - "user": { - "data": { - "type": "user", - "id": "325963" - } - }, - "playerFlag": { - "data": { - "type": "playerFlag", - "id": "d6ca0cb0-67b5-11ec-a3b5-5504f08c6982" - } - }, - "player": { - "data": { - "type": "player", - "id": "579979635" - } - }, - "organization": { + "game": { "data": { - "type": "organization", - "id": "25433" + "type": "game", + "id": "rust" } } }