mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-30 04:40:54 +02:00
spooky_forest update
This commit is contained in:
parent
29cf2d953b
commit
9302059098
@ -21,6 +21,7 @@ require "score"
|
||||
--require "maps.modules.restrictive_fluid_mining"
|
||||
--require "maps.modules.fluids_are_explosive"
|
||||
--require "maps.modules.explosives_are_explosive"
|
||||
--require "maps.modules.explosive_biters"
|
||||
--require "maps.modules.railgun_enhancer"
|
||||
-----------------------------
|
||||
|
||||
@ -28,12 +29,12 @@ require "score"
|
||||
--require "maps.biter_battles"
|
||||
--require "maps.cave_miner"
|
||||
--require "maps.labyrinth"
|
||||
--require "maps.spooky_forest"
|
||||
require "maps.spooky_forest"
|
||||
--require "maps.nightfall"
|
||||
--require "maps.atoll"
|
||||
--require "maps.tank_battles"
|
||||
--require "maps.spiral_troopers"
|
||||
require "maps.fish_defender"
|
||||
--require "maps.fish_defender"
|
||||
--require "maps.crossing"
|
||||
--require "maps.anarchy"
|
||||
--require "maps.spaghettorio"
|
||||
|
@ -87,7 +87,7 @@ local function anarchy_gui(player)
|
||||
for _, member in pairs (group.members) do
|
||||
local p = game.players[member]
|
||||
if p.connected then
|
||||
local l = tt.add({ type = "label", caption = p.name})
|
||||
local l = tt.add({ type = "label", caption = tostring(p.name)})
|
||||
local color = {r = p.color.r * 0.6 + 0.4, g = p.color.g * 0.6 + 0.4, b = p.color.b * 0.6 + 0.4, a = 1}
|
||||
l.style.font_color = color
|
||||
l.style.maximal_width = members_width * 2
|
||||
@ -97,7 +97,7 @@ local function anarchy_gui(player)
|
||||
for _, member in pairs (group.members) do
|
||||
local p = game.players[member]
|
||||
if not p.connected then
|
||||
local l = tt.add({ type = "label", caption = p.name})
|
||||
local l = tt.add({ type = "label", caption = tostring(p.name)})
|
||||
local color = {r = 0.59, g = 0.59, b = 0.59, a = 1}
|
||||
l.style.font_color = color
|
||||
l.style.maximal_width = members_width * 2
|
||||
@ -153,19 +153,19 @@ end
|
||||
|
||||
local function destroy_request_guis(player)
|
||||
for _, p in pairs(game.players) do
|
||||
if p.gui.center["alliance_request_" .. player.name] then p.gui.center["alliance_request_" .. player.name].destroy() end
|
||||
if p.gui.center["alliance_request_" .. tostring(player.name)] then p.gui.center["alliance_request_" .. tostring(player.name)].destroy() end
|
||||
end
|
||||
end
|
||||
|
||||
local function request_alliance(group, requesting_player)
|
||||
if not global.alliance_groups[group] then return end
|
||||
global.spam_protection[requesting_player.name] = game.tick + 900
|
||||
global.spam_protection[tostring(requesting_player.name)] = game.tick + 900
|
||||
|
||||
destroy_request_guis(requesting_player)
|
||||
|
||||
for _, member in pairs(global.alliance_groups[group].members) do
|
||||
local player = game.players[member]
|
||||
local frame = player.gui.center.add({type = "frame", caption = requesting_player.name .. ' wants to join your group "' .. group .. '"', name = "alliance_request_" .. requesting_player.name})
|
||||
local frame = player.gui.center.add({type = "frame", caption = tostring(requesting_player.name) .. ' wants to join your group "' .. group .. '"', name = "alliance_request_" .. tostring(requesting_player.name)})
|
||||
frame.add({type = "label", caption = "", name = group})
|
||||
frame.add({type = "label", caption = "", name = requesting_player.index})
|
||||
frame.add({type = "button", caption = "Accept"})
|
||||
@ -194,18 +194,21 @@ local function refresh_alliances()
|
||||
if i == 0 then
|
||||
game.print('Group "' .. group.name .. '" has been abandoned!!', {r=0.90, g=0.0, b=0.0})
|
||||
global.alliance_groups[group.name] = nil
|
||||
game.merge_forces(game.forces[group.name], game.forces.spectator)
|
||||
--game.merge_forces(game.forces[group.name], game.forces.spectator)
|
||||
game.merge_forces(game.forces[group.name], game.forces.player)
|
||||
end
|
||||
end
|
||||
|
||||
for _, player in pairs(game.players) do
|
||||
if players_to_process[player.index] then
|
||||
player.gui.top["anarchy_group_button"].caption = "[Group]"
|
||||
player.tag = ""
|
||||
player.force = game.forces.spectator
|
||||
local permission_group = game.permissions.get_group("spectator")
|
||||
permission_group.add_player(player.name)
|
||||
players_to_process[player.index] = nil
|
||||
if player.force.name ~= "player" then
|
||||
player.gui.top["anarchy_group_button"].caption = "[Group]"
|
||||
player.tag = ""
|
||||
player.force = game.forces.spectator
|
||||
local permission_group = game.permissions.get_group("spectator")
|
||||
permission_group.add_player(player.name)
|
||||
end
|
||||
players_to_process[player.index] = nil
|
||||
player.print("Please join / create a group to play!", message_color)
|
||||
end
|
||||
end
|
||||
@ -217,7 +220,9 @@ local function new_group(frame, player)
|
||||
local new_group_description = frame.frame2.group_table.new_group_description.text
|
||||
if new_group_name ~= "" and new_group_name ~= "Name" and new_group_description ~= "Description" then
|
||||
|
||||
if new_group_name == "spectator" then
|
||||
new_group_name = tostring(new_group_name)
|
||||
|
||||
if new_group_name == "spectator" or new_group_name == "player" then
|
||||
player.print("Invalid group name.", {r=0.90, g=0.0, b=0.0})
|
||||
return
|
||||
end
|
||||
@ -250,9 +255,9 @@ local function new_group(frame, player)
|
||||
local color = player.color
|
||||
color = {r = color.r * 0.6 + 0.4, g = color.g * 0.6 + 0.4, b = color.b * 0.6 + 0.4, a = 1}
|
||||
|
||||
global.alliance_groups[new_group_name] = {name = new_group_name, color = color, description = new_group_description, members = {[player.name] = player.index}}
|
||||
global.alliance_groups[new_group_name] = {name = new_group_name, color = color, description = new_group_description, members = {[tostring(player.name)] = player.index}}
|
||||
local color = {r = player.color.r * 0.7 + 0.3, g = player.color.g * 0.7 + 0.3, b = player.color.b * 0.7 + 0.3, a = 1}
|
||||
game.print(player.name .. " has founded a new group!", color)
|
||||
game.print(tostring(player.name) .. " has founded a new group!", color)
|
||||
game.print('>> ' .. new_group_name, { r=0.98, g=0.66, b=0.22})
|
||||
game.print(new_group_description, { r=0.85, g=0.85, b=0.85})
|
||||
|
||||
@ -261,8 +266,11 @@ local function new_group(frame, player)
|
||||
|
||||
if not game.forces[new_group_name] then game.create_force(new_group_name) end
|
||||
game.forces[new_group_name].share_chart = true
|
||||
game.forces[new_group_name].set_friend("spectator", true)
|
||||
game.forces["spectator"].set_friend(new_group_name, true)
|
||||
--game.forces[new_group_name].set_friend("spectator", true)
|
||||
--game.forces["spectator"].set_friend(new_group_name, true)
|
||||
|
||||
game.forces[new_group_name].set_friend("player", true)
|
||||
game.forces["player"].set_friend(new_group_name, true)
|
||||
|
||||
refresh_alliances()
|
||||
return
|
||||
@ -285,12 +293,12 @@ local function on_gui_click(event)
|
||||
if requesting_player.tag then
|
||||
if requesting_player.tag ~= "" then
|
||||
local requesting_player_group = string.sub(requesting_player.tag, 2, string.len(requesting_player.tag) - 1)
|
||||
global.alliance_groups[requesting_player_group].members[requesting_player.name] = nil
|
||||
global.alliance_groups[requesting_player_group].members[tostring(requesting_player.name)] = nil
|
||||
end
|
||||
end
|
||||
|
||||
global.alliance_groups[group].members[requesting_player.name] = requesting_player.index
|
||||
game.print(requesting_player.name .. ' has been accepted into group "' .. group .. '"', message_color)
|
||||
game.print(tostring(requesting_player.name) .. ' has been accepted into group "' .. group .. '"', message_color)
|
||||
|
||||
refresh_alliances()
|
||||
|
||||
@ -304,11 +312,11 @@ local function on_gui_click(event)
|
||||
local group = frame.children[1].name
|
||||
local requesting_player = game.players[tonumber(frame.children[2].name)]
|
||||
|
||||
game.print(requesting_player.name .. ' has been rejected to join group "' .. group .. '"', message_color)
|
||||
game.print(tostring(requesting_player.name) .. ' has been rejected to join group "' .. group .. '"', message_color)
|
||||
|
||||
for _, member in pairs(global.alliance_groups[group].members) do
|
||||
local p = game.players[member]
|
||||
if p.gui.center["alliance_request_" .. requesting_player.name] then p.gui.center["alliance_request_" .. requesting_player.name].destroy() end
|
||||
if p.gui.center["alliance_request_" .. tostring(requesting_player.name)] then p.gui.center["alliance_request_" .. tostring(requesting_player.name)].destroy() end
|
||||
end
|
||||
return
|
||||
end
|
||||
@ -321,8 +329,8 @@ local function on_gui_click(event)
|
||||
if p then
|
||||
if p.name == "groups_table" then
|
||||
if event.element.type == "button" and event.element.caption == "Join" then
|
||||
if global.spam_protection[player.name] > game.tick then
|
||||
player.print("Please wait " .. math.ceil((global.spam_protection[player.name] - game.tick)/60) .. " seconds before sending another request.", message_color)
|
||||
if global.spam_protection[tostring(player.name)] > game.tick then
|
||||
player.print("Please wait " .. math.ceil((global.spam_protection[tostring(player.name)] - game.tick)/60) .. " seconds before sending another request.", message_color)
|
||||
return
|
||||
end
|
||||
destroy_request_guis(player)
|
||||
@ -332,8 +340,8 @@ local function on_gui_click(event)
|
||||
|
||||
if event.element.type == "button" and event.element.caption == "Leave" then
|
||||
destroy_request_guis(player)
|
||||
global.alliance_groups[event.element.parent.name].members[player.name] = nil
|
||||
game.print(player.name .. ' has left group "' .. event.element.parent.name .. '"', message_color)
|
||||
global.alliance_groups[event.element.parent.name].members[tostring(player.name)] = nil
|
||||
game.print(tostring(player.name) .. ' has left group "' .. event.element.parent.name .. '"', message_color)
|
||||
refresh_alliances()
|
||||
return
|
||||
end
|
||||
@ -357,7 +365,7 @@ local function on_player_joined_game(event)
|
||||
local player = game.players[event.player_index]
|
||||
if not global.alliance_groups then global.alliance_groups = {} end
|
||||
if not global.spam_protection then global.spam_protection = {} end
|
||||
if not global.spam_protection[player.name] then global.spam_protection[player.name] = game.tick end
|
||||
if not global.spam_protection[tostring(player.name)] then global.spam_protection[tostring(player.name)] = game.tick end
|
||||
if not game.forces["spectator"] then game.create_force("spectator") end
|
||||
|
||||
local permission_group = game.permissions.get_group("spectator")
|
||||
@ -385,7 +393,12 @@ local function on_player_joined_game(event)
|
||||
|
||||
anarchy_gui_button(player)
|
||||
|
||||
refresh_alliances()
|
||||
if player.online_time == 0 then
|
||||
player.print("Join / Create a group to play!", message_color)
|
||||
permission_group.add_player(player.name)
|
||||
end
|
||||
|
||||
--refresh_alliances()
|
||||
end
|
||||
|
||||
----------share chat -------------------
|
||||
|
@ -15,7 +15,7 @@ local function fish_in_space_toggle_button(player)
|
||||
button.style.bottom_padding = 2
|
||||
end
|
||||
|
||||
function fish_in_space_gui(player)
|
||||
local function fish_in_space_gui(player)
|
||||
if not global.fish_in_space then return end
|
||||
|
||||
fish_in_space_toggle_button(player)
|
||||
|
@ -3,7 +3,11 @@
|
||||
require "maps.modules.hunger"
|
||||
require "maps.modules.fish_respawner"
|
||||
global.fish_respawner_water_tiles_per_fish = 10
|
||||
global.fish_respawner_max_respawnrate_per_chunk = 1
|
||||
|
||||
require "maps.modules.fluids_are_explosive"
|
||||
require "maps.modules.explosives_are_explosive"
|
||||
require "maps.modules.explosive_biters"
|
||||
require "maps.modules.dynamic_landfill"
|
||||
|
||||
local shapes = require "maps.tools.shapes"
|
||||
local event = require 'utils.event'
|
||||
@ -142,7 +146,8 @@ local function get_noise(name, pos)
|
||||
end
|
||||
seed = seed + noise_seed_add
|
||||
if name == "grass" then
|
||||
noise[1] = simplex_noise(pos.x * 0.1, pos.y * 0.1, seed)
|
||||
--noise[1] = simplex_noise(pos.x * 0.1, pos.y * 0.1, seed)
|
||||
noise[1] = simplex_noise(pos.x * 0.08, pos.y * 0.08, seed)
|
||||
seed = seed + noise_seed_add
|
||||
local noise = noise[1]
|
||||
return noise
|
||||
@ -204,21 +209,19 @@ end
|
||||
local function get_noise_tile(position)
|
||||
local noise = get_noise("grass", position)
|
||||
local tile_name
|
||||
--local decorative = false
|
||||
|
||||
if noise > 0 then
|
||||
tile_name = "grass-1"
|
||||
--decorative = "green-pita"
|
||||
if noise > 0.5 then
|
||||
tile_name = "dirt-5"
|
||||
end
|
||||
else
|
||||
tile_name = "grass-2"
|
||||
--decorative = "green-hairy-grass"
|
||||
-- table.insert(decoratives, {name = "green-croton", position = pos, amount = 3})
|
||||
--table.insert(decoratives, {name = "green-asterisk", position = pos, amount = 2})
|
||||
tile_name = "grass-2"
|
||||
end
|
||||
|
||||
local noise = get_noise("water", position)
|
||||
if noise > 0.71 then
|
||||
tile_name = "water"
|
||||
--decorative = false
|
||||
tile_name = "water"
|
||||
if noise > 0.78 then
|
||||
tile_name = "deepwater"
|
||||
end
|
||||
@ -226,35 +229,48 @@ local function get_noise_tile(position)
|
||||
|
||||
if noise < -0.76 then
|
||||
tile_name = "water-green"
|
||||
--decorative = false
|
||||
end
|
||||
|
||||
return tile_name
|
||||
end
|
||||
|
||||
local function create_decoratives_around_position(surface, position)
|
||||
local decoratives = {}
|
||||
|
||||
for _, position_modifier in pairs(shapes.circles[uncover_radius - 2]) do
|
||||
local pos = {x = position.x + position_modifier.x, y = position.y + position_modifier.y}
|
||||
local area = {{pos.x - 0.01, pos.y - 0.01},{pos.x + 0.01, pos.y + 0.01}}
|
||||
surface.destroy_decoratives(area)
|
||||
insert(decoratives, {name = "green-pita", position = pos, amount = 1})
|
||||
local function get_chunk_position(position)
|
||||
local chunk_position = {}
|
||||
position.x = math.floor(position.x, 0)
|
||||
position.y = math.floor(position.y, 0)
|
||||
for x = 0, 31, 1 do
|
||||
if (position.x - x) % 32 == 0 then chunk_position.x = (position.x - x) / 32 end
|
||||
end
|
||||
|
||||
if #decoratives > 0 then
|
||||
surface.create_decoratives{check_collision=true, decoratives=decoratives}
|
||||
for y = 0, 31, 1 do
|
||||
if (position.y - y) % 32 == 0 then chunk_position.y = (position.y - y) / 32 end
|
||||
end
|
||||
return chunk_position
|
||||
end
|
||||
|
||||
local function regenerate_decoratives_for_chunk(surface, position)
|
||||
local chunk = get_chunk_position(position)
|
||||
surface.destroy_decoratives({{chunk.x * 32, chunk.y * 32}, {chunk.x * 32 + 32, chunk.y * 32 + 32}})
|
||||
local decorative_names = {}
|
||||
for k,v in pairs(game.decorative_prototypes) do
|
||||
if v.autoplace_specification then
|
||||
decorative_names[#decorative_names+1] = k
|
||||
end
|
||||
end
|
||||
surface.regenerate_decorative(decorative_names, {chunk})
|
||||
surface.regenerate_decorative(decorative_names, {chunk})
|
||||
surface.regenerate_decorative(decorative_names, {chunk})
|
||||
end
|
||||
|
||||
local function uncover_map(surface, position, radius_min, radius_max)
|
||||
local circles = shapes.circles
|
||||
local tiles = {}
|
||||
local fishes = {}
|
||||
local regenerate_decoratives = false
|
||||
for r = radius_min, radius_max, 1 do
|
||||
for _, position_modifier in pairs(circles[r]) do
|
||||
local pos = {x = position.x + position_modifier.x, y = position.y + position_modifier.y}
|
||||
if surface.get_tile(pos).name == "out-of-map" then
|
||||
regenerate_decoratives = true
|
||||
local tile_name = get_noise_tile(pos)
|
||||
insert(tiles, {name = tile_name, position = pos})
|
||||
if tile_name == "water" or tile_name == "deepwater" or tile_name == "water-green" then
|
||||
@ -288,6 +304,11 @@ local function uncover_map(surface, position, radius_min, radius_max)
|
||||
for _, fish in pairs(fishes) do
|
||||
surface.create_entity({name = "fish", position = fish})
|
||||
end
|
||||
if regenerate_decoratives then
|
||||
if math_random(1,3) == 1 then
|
||||
regenerate_decoratives_for_chunk(surface, position)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local function uncover_map_for_player(player)
|
||||
@ -297,11 +318,12 @@ local function uncover_map_for_player(player)
|
||||
local tiles = {}
|
||||
local fishes = {}
|
||||
local uncover_map_schedule = {}
|
||||
|
||||
local regenerate_decoratives = false
|
||||
for r = uncover_radius - 1, uncover_radius, 1 do
|
||||
for _, position_modifier in pairs(circles[r]) do
|
||||
local pos = {x = position.x + position_modifier.x, y = position.y + position_modifier.y}
|
||||
if surface.get_tile(pos).name == "out-of-map" then
|
||||
regenerate_decoratives = true
|
||||
local tile_name = get_noise_tile(pos)
|
||||
insert(tiles, {name = tile_name, position = pos})
|
||||
if tile_name == "water" or tile_name == "deepwater" or tile_name == "water-green" then
|
||||
@ -335,9 +357,7 @@ local function uncover_map_for_player(player)
|
||||
|
||||
if #tiles > 0 then
|
||||
surface.set_tiles(tiles, true)
|
||||
end
|
||||
|
||||
--create_decoratives_around_position(surface, position)
|
||||
end
|
||||
|
||||
for _, pos in pairs(uncover_map_schedule) do
|
||||
uncover_map(surface, pos, 1, 16)
|
||||
@ -345,6 +365,12 @@ local function uncover_map_for_player(player)
|
||||
for _, fish in pairs(fishes) do
|
||||
surface.create_entity({name = "fish", position = fish})
|
||||
end
|
||||
|
||||
if regenerate_decoratives then
|
||||
if math_random(1,3) == 1 then
|
||||
regenerate_decoratives_for_chunk(surface, position)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local biter_building_inhabitants = {}
|
||||
@ -433,7 +459,16 @@ local function on_player_joined_game(event)
|
||||
game.map_settings.enemy_evolution.destroy_factor = 0.0016
|
||||
game.map_settings.enemy_evolution.time_factor = 0
|
||||
game.map_settings.enemy_evolution.pollution_factor = 0
|
||||
|
||||
|
||||
local turret_positions = {{6, 6}, {-5, -5}, {-5, 6}, {6, -5}}
|
||||
for _, pos in pairs(turret_positions) do
|
||||
local turret = surface.create_entity({name = "gun-turret", position = pos, force = "player"})
|
||||
turret.insert({name = "firearm-magazine", count = 32})
|
||||
end
|
||||
|
||||
local radius = 320
|
||||
game.forces.player.chart(surface, {{x = -1 * radius, y = -1 * radius}, {x = radius, y = radius}})
|
||||
|
||||
global.spooky_forest_init_done = true
|
||||
end
|
||||
|
||||
@ -464,49 +499,66 @@ local function on_player_changed_position(event)
|
||||
uncover_map_for_player(player)
|
||||
end
|
||||
|
||||
local function generate_spawn_area(position_left_top)
|
||||
if position_left_top.x > 32 then return end
|
||||
if position_left_top.y > 32 then return end
|
||||
if position_left_top.x < -32 then return end
|
||||
if position_left_top.y < -32 then return end
|
||||
|
||||
local surface = game.surfaces["spooky_forest"]
|
||||
local entities = {}
|
||||
local tiles = {}
|
||||
|
||||
for x = 0, 31, 1 do
|
||||
for y = 0, 31, 1 do
|
||||
local tile_to_insert = false
|
||||
local pos = {x = position_left_top.x + x, y = position_left_top.y + y}
|
||||
if pos.x > -9 and pos.x < 9 and pos.y > -9 and pos.y < 9 then
|
||||
tile_to_insert = get_noise_tile(pos)
|
||||
if math_random(1, 4) == 1 then
|
||||
tile_to_insert = "stone-path"
|
||||
end
|
||||
if pos.x <= -7 or pos.x >= 7 or pos.y <= -7 or pos.y >= 7 then
|
||||
if math_random(1, 3) ~= 1 then
|
||||
table.insert(entities, {name = "stone-wall", position = {x = pos.x, y = pos.y}, force = "player"})
|
||||
end
|
||||
end
|
||||
end
|
||||
if tile_to_insert == "water" or tile_to_insert == "water-green" or tile_to_insert == "deepwater" then
|
||||
tile_to_insert = "grass-2"
|
||||
end
|
||||
if tile_to_insert then
|
||||
insert(tiles, {name = tile_to_insert, position = pos})
|
||||
end
|
||||
end
|
||||
end
|
||||
surface.set_tiles(tiles, true)
|
||||
|
||||
for _, entity in pairs(entities) do
|
||||
surface.create_entity(entity)
|
||||
end
|
||||
end
|
||||
|
||||
local function on_chunk_generated(event)
|
||||
if not game.surfaces["spooky_forest"] then return end
|
||||
local surface = game.surfaces["spooky_forest"]
|
||||
if surface.name ~= event.surface.name then return end
|
||||
|
||||
local position_left_top = event.area.left_top
|
||||
|
||||
local entities = {}
|
||||
local tiles = {}
|
||||
|
||||
--if position_left_top.x > 128 then return end
|
||||
--if position_left_top.y > 128 then return end
|
||||
|
||||
generate_spawn_area(position_left_top)
|
||||
|
||||
local tiles = {}
|
||||
for x = 0, 31, 1 do
|
||||
for y = 0, 31, 1 do
|
||||
local tile_to_insert = "out-of-map"
|
||||
local pos = {x = position_left_top.x + x, y = position_left_top.y + y}
|
||||
if pos.x > -9 and pos.x < 9 and pos.y > -9 and pos.y < 9 then
|
||||
tile_to_insert = get_noise_tile(pos)
|
||||
|
||||
if math_random(1, 4) == 1 then
|
||||
tile_to_insert = "stone-path"
|
||||
end
|
||||
|
||||
if pos.x <= -7 or pos.x >= 7 or pos.y <= -7 or pos.y >= 7 then
|
||||
if math_random(1, 3) ~= 1 then
|
||||
table.insert(entities, {name = "stone-wall", position = {x = pos.x, y = pos.y}, force = "player"})
|
||||
end
|
||||
end
|
||||
local tile_name = surface.get_tile(pos).name
|
||||
if tile_name == "deepwater" or tile_name == "water" then
|
||||
insert(tiles, {name = tile_to_insert, position = pos})
|
||||
end
|
||||
|
||||
if tile_to_insert == "water" or tile_to_insert == "water-green" or tile_to_insert == "deepwater" then
|
||||
tile_to_insert = "grass-2"
|
||||
end
|
||||
|
||||
insert(tiles, {name = tile_to_insert, position = pos})
|
||||
end
|
||||
end
|
||||
surface.set_tiles(tiles, true)
|
||||
|
||||
for _, entity in pairs(entities) do
|
||||
surface.create_entity(entity)
|
||||
end
|
||||
surface.set_tiles(tiles, true)
|
||||
end
|
||||
|
||||
local function on_player_mined_entity(event)
|
||||
@ -543,6 +595,7 @@ end
|
||||
|
||||
local function break_some_random_trees(surface)
|
||||
local trees = {}
|
||||
local rocks = {}
|
||||
local chunks = {}
|
||||
|
||||
for chunk in surface.get_chunks() do
|
||||
@ -555,12 +608,25 @@ local function break_some_random_trees(surface)
|
||||
trees = surface.find_entities_filtered({type = "tree", area = area})
|
||||
if #trees > 1 then break end
|
||||
end
|
||||
if #trees == 0 then return end
|
||||
trees = shuffle(trees)
|
||||
for i = 1, math_random(4 + math.floor(game.forces.enemy.evolution_factor*8), 8 + math.floor(game.forces.enemy.evolution_factor*16)), 1 do
|
||||
if not trees[i] then break end
|
||||
trees[i].die("enemy")
|
||||
if #trees ~= 0 then
|
||||
trees = shuffle(trees)
|
||||
for i = 1, math_random(4 + math.floor(game.forces.enemy.evolution_factor*8), 8 + math.floor(game.forces.enemy.evolution_factor*16)), 1 do
|
||||
if not trees[i] then break end
|
||||
trees[i].die("enemy")
|
||||
end
|
||||
end
|
||||
|
||||
for _, chunk in pairs(chunks) do
|
||||
local area = {{chunk.x * 32, chunk.y * 32}, {chunk.x * 32 + 32, chunk.y * 32 + 32}}
|
||||
rocks = surface.find_entities_filtered({type = "simple-entity", area = area})
|
||||
if #rocks > 0 then break end
|
||||
end
|
||||
if not rocks[1] then return end
|
||||
local e = math.ceil(game.forces.enemy.evolution_factor*10)
|
||||
if e < 1 then e = 1 end
|
||||
entity_name = worm_raffle_table[e][math_random(1, #worm_raffle_table[e])]
|
||||
surface.create_entity({name = entity_name, position = rocks[1].position, force = "enemy"})
|
||||
rocks[1].die("enemy")
|
||||
end
|
||||
|
||||
local function on_tick()
|
||||
|
@ -1,3 +1,8 @@
|
||||
0.09
|
||||
worms spawn out of rocks rarely
|
||||
decorative regeneration
|
||||
spawn now has 1 turret
|
||||
|
||||
0.08
|
||||
spawn is now biter free
|
||||
|
||||
|
130
session_data/AMVHRshAbzMZFyIo.lua
Normal file
130
session_data/AMVHRshAbzMZFyIo.lua
Normal file
@ -0,0 +1,130 @@
|
||||
local playsession = {
|
||||
{"mewmew", {695299}},
|
||||
{"exabyte", {852488}},
|
||||
{"AbsoluteZeroIs0K", {214269}},
|
||||
{"Gerkiz", {622374}},
|
||||
{"SpS", {815835}},
|
||||
{"gearmach1ne", {365031}},
|
||||
{"Wadiyatalkinbeet", {1001830}},
|
||||
{"Whassup", {2827}},
|
||||
{"bico", {1108}},
|
||||
{"skace", {20247}},
|
||||
{"КуКу", {14918}},
|
||||
{"quintkiller", {971787}},
|
||||
{"Porg", {151972}},
|
||||
{"lemarkiz", {10910}},
|
||||
{"Dimon312", {5549}},
|
||||
{"Lillbirro", {3126}},
|
||||
{"TheBrain2010", {24437}},
|
||||
{"Bionator7000", {283928}},
|
||||
{"larshp", {93373}},
|
||||
{"mar123322", {273730}},
|
||||
{"loutanifi", {148164}},
|
||||
{"jbj518", {3077}},
|
||||
{"Nexarius", {1854949}},
|
||||
{"GuidoCram", {14317}},
|
||||
{"robertkruijt", {31933}},
|
||||
{"A-l-a-n", {1529605}},
|
||||
{"Ed9210", {166058}},
|
||||
{"DukeGangsta", {777539}},
|
||||
{"Akhrem", {36483}},
|
||||
{"redlabel", {204402}},
|
||||
{"TheWickedMaster", {4677}},
|
||||
{"okan009", {205815}},
|
||||
{"Menander", {29833}},
|
||||
{"KingKolla", {2274}},
|
||||
{"dmitrymk", {49007}},
|
||||
{"dcgpy", {2377}},
|
||||
{"fanda249", {509}},
|
||||
{"McSailaubek", {4978}},
|
||||
{"manstro011", {4781}},
|
||||
{"dorpdorp", {3216}},
|
||||
{"KIRkomMAX", {300782}},
|
||||
{"sasha21168", {4915}},
|
||||
{"levmeowsky", {13068}},
|
||||
{"Tcheko", {23917}},
|
||||
{"shhf_alfa", {440898}},
|
||||
{"Foux3k", {4106}},
|
||||
{"minipini55", {143486}},
|
||||
{"TizianTitus", {4947}},
|
||||
{"flooxy", {106726}},
|
||||
{"COOL-ITEM", {95090}},
|
||||
{"Zory", {13261}},
|
||||
{"Maxfreez21", {71133}},
|
||||
{"xubos", {8880}},
|
||||
{"sobitome", {52468}},
|
||||
{"peggeleg", {31033}},
|
||||
{"Ommuden", {28275}},
|
||||
{"aeshettr", {15435}},
|
||||
{"Parkouralvoil", {9315}},
|
||||
{"Plawerth", {714776}},
|
||||
{"MeggalBozale", {168125}},
|
||||
{"cogito123", {1916453}},
|
||||
{"i9962784", {13531}},
|
||||
{"crusher_sut", {64031}},
|
||||
{"McSafety", {452353}},
|
||||
{"Nikkichu", {4255}},
|
||||
{"Vuldunobetro", {1624}},
|
||||
{"Cheeseftw", {5674}},
|
||||
{"1337oxi", {2161}},
|
||||
{"bl72", {9854}},
|
||||
{"DKarma", {2273129}},
|
||||
{"FingerFix", {17739}},
|
||||
{"Delqvs", {393382}},
|
||||
{"Markusx26", {98636}},
|
||||
{"PoPoo", {5957}},
|
||||
{"gibtpl", {23380}},
|
||||
{"ZiP84", {75117}},
|
||||
{"Zhukovo", {1896}},
|
||||
{"morcup", {21880}},
|
||||
{"raskl", {1075}},
|
||||
{"LaszloK", {3155}},
|
||||
{"captcougar1969", {9063}},
|
||||
{"IAmTog", {3993}},
|
||||
{"Wiwi93", {247855}},
|
||||
{"everLord", {29423}},
|
||||
{"Factorian12321", {252133}},
|
||||
{"Wadiyatalkinabeet", {7293}},
|
||||
{"wekkka", {2558}},
|
||||
{"KaRaVai", {4474}},
|
||||
{"Taylor3", {123730}},
|
||||
{"PolanStronk", {118280}},
|
||||
{"Giatros", {64700}},
|
||||
{"Jimmy50", {94661}},
|
||||
{"Reyand", {3652}},
|
||||
{"VincentMonster", {136818}},
|
||||
{"IamTzu", {12313}},
|
||||
{"tajemniczy_303", {12723}},
|
||||
{"Croustibax", {4073}},
|
||||
{"AhalaiMahalai", {16942}},
|
||||
{"Bokrug", {1646}},
|
||||
{"ETK03", {6870}},
|
||||
{"_Mash_", {4659}},
|
||||
{"trnila", {5615}},
|
||||
{"Silicon", {435957}},
|
||||
{"NappingYG", {412365}},
|
||||
{"typphon", {336006}},
|
||||
{"ThisIsMathias", {12427}},
|
||||
{"lgor007", {10647}},
|
||||
{"mzore", {15735}},
|
||||
{"Retis", {1912}},
|
||||
{"Krono", {100816}},
|
||||
{"Jhumekes", {575424}},
|
||||
{"nelch1", {151275}},
|
||||
{"mad58max", {14243}},
|
||||
{"jackazzm", {921946}},
|
||||
{"MadClown01", {650392}},
|
||||
{"SmokuNoPico", {183401}},
|
||||
{"TryonHD", {14528}},
|
||||
{"rocifier", {345219}},
|
||||
{"ice9000", {41003}},
|
||||
{"ServalKitty", {22611}},
|
||||
{"Nate66873", {446707}},
|
||||
{"lagking", {413501}},
|
||||
{"iceskaarj", {7965}},
|
||||
{"wilm", {161934}},
|
||||
{"SuddenDeathMP", {8749}},
|
||||
{"BlaQkout", {13493}},
|
||||
{"ikeikeeng", {36158}}
|
||||
}
|
||||
return playsession
|
126
session_data/AqoehKFGbGRrxqwS.lua
Normal file
126
session_data/AqoehKFGbGRrxqwS.lua
Normal file
@ -0,0 +1,126 @@
|
||||
local playsession = {
|
||||
{"Baldy34343", {179640}},
|
||||
{"changaryyy", {710354}},
|
||||
{"Kobrar", {1931945}},
|
||||
{"TheWickedMaster", {351011}},
|
||||
{"whopper", {610686}},
|
||||
{"bl72", {155122}},
|
||||
{"kelvinh92", {973718}},
|
||||
{"WiredMesh", {811912}},
|
||||
{"hyunbeen", {712642}},
|
||||
{"halpenny911", {135913}},
|
||||
{"sb22284", {31117}},
|
||||
{"Lastaustralian", {1936738}},
|
||||
{"NIK149", {1749640}},
|
||||
{"skace", {575106}},
|
||||
{"Bluestripes", {518338}},
|
||||
{"Roxmuhr", {1356351}},
|
||||
{"AurelienG", {61953}},
|
||||
{"mindriot", {448792}},
|
||||
{"Serennie", {1683665}},
|
||||
{"Krezal", {1648938}},
|
||||
{"Lordjuampa", {25101}},
|
||||
{"kingkendji", {52519}},
|
||||
{"matam666", {1622897}},
|
||||
{"Till223", {95642}},
|
||||
{"ButtChugg69", {98215}},
|
||||
{"dorpdorp", {980801}},
|
||||
{"ETK03", {236218}},
|
||||
{"KevinTheRed", {379173}},
|
||||
{"FingerFix", {14155}},
|
||||
{"Nikkichu", {402494}},
|
||||
{"ben84", {8184}},
|
||||
{"Gerkiz", {780606}},
|
||||
{"sirbarry", {12242}},
|
||||
{"Nalleknas", {288945}},
|
||||
{"andrekoul", {20812}},
|
||||
{"facere", {199415}},
|
||||
{"jackazzm", {1650834}},
|
||||
{"Killedkenny", {20184}},
|
||||
{"Rayeth", {21485}},
|
||||
{"gingerpower", {101811}},
|
||||
{"gabrielbr000", {7720}},
|
||||
{"Commander_Klaus", {774750}},
|
||||
{"numja", {779303}},
|
||||
{"ugg8", {1548413}},
|
||||
{"KingZeothh", {19298}},
|
||||
{"DamianC98", {22447}},
|
||||
{"JenkzJr", {10485}},
|
||||
{"DukeGangsta", {1460090}},
|
||||
{"hasannuh", {1100188}},
|
||||
{"matthew08m", {73429}},
|
||||
{"Avadis", {1440192}},
|
||||
{"rutgers0419", {5637}},
|
||||
{"seeyorise", {60489}},
|
||||
{"Leboydusouth", {10027}},
|
||||
{"JuanMore", {211923}},
|
||||
{"beranabus", {222954}},
|
||||
{"Roeno1997", {236998}},
|
||||
{"betta_splendens", {16978}},
|
||||
{"Azakk", {953671}},
|
||||
{"adieclay", {342303}},
|
||||
{"rcdominator", {8290}},
|
||||
{"LandOfBol", {119122}},
|
||||
{"RecLeKon", {8170}},
|
||||
{"remarkablysilly", {1007354}},
|
||||
{"JinNJuice", {567253}},
|
||||
{"Seico", {264183}},
|
||||
{"mdwild", {14716}},
|
||||
{"Ghosteye213", {258511}},
|
||||
{"HRydz", {52894}},
|
||||
{"freek18", {283047}},
|
||||
{"forkonce", {445610}},
|
||||
{"Lysander92", {9451}},
|
||||
{"Krane24", {7789}},
|
||||
{"TrashMode", {777129}},
|
||||
{"MacBeth", {96849}},
|
||||
{"Vuldunobetro", {161291}},
|
||||
{"nocturnalangel", {324348}},
|
||||
{"sobitome", {434}},
|
||||
{"mewmew", {611918}},
|
||||
{"BookaaGaming", {133423}},
|
||||
{"joker1159", {16892}},
|
||||
{"finkellll", {82128}},
|
||||
{"PerutzUK", {314478}},
|
||||
{"Patrykm", {15952}},
|
||||
{"Andaron", {94726}},
|
||||
{"Plawerth", {261839}},
|
||||
{"querrique", {35637}},
|
||||
{"stevdev", {570399}},
|
||||
{"Requelfade", {5588}},
|
||||
{"eldr420", {245262}},
|
||||
{"mustyoshi", {545492}},
|
||||
{"MontrealCrook", {250003}},
|
||||
{"DementedCreation", {201155}},
|
||||
{"suimi_s13", {23703}},
|
||||
{"Astraeus_H", {182147}},
|
||||
{"hsxu", {182342}},
|
||||
{"Hitman451", {361179}},
|
||||
{"captcougar1969", {421320}},
|
||||
{"Velguarder", {177777}},
|
||||
{"U_Wot", {375487}},
|
||||
{"MarkillerX", {4237}},
|
||||
{"Creep-Sama", {175893}},
|
||||
{"DawnbringerHUN", {43967}},
|
||||
{"ronnaldy", {290971}},
|
||||
{"Forlanceabice", {90760}},
|
||||
{"ZTX", {194392}},
|
||||
{"LunarShark", {69702}},
|
||||
{"steelhero", {16209}},
|
||||
{"JaredTheBoss", {10746}},
|
||||
{"yuanpan6666", {17210}},
|
||||
{"bodylazy", {6487}},
|
||||
{"Tesslapoop", {99951}},
|
||||
{"IDragonfyreI", {75679}},
|
||||
{"Luckystripes23", {73321}},
|
||||
{"dexcruz", {70535}},
|
||||
{"mugscraft", {507}},
|
||||
{"kevinma", {67669}},
|
||||
{"Murugi", {3189}},
|
||||
{"skatordude", {57564}},
|
||||
{"15944831778", {29008}},
|
||||
{"Doctor_Pike", {10833}},
|
||||
{"gearmach1ne", {23970}},
|
||||
{"aplavins", {4944}}
|
||||
}
|
||||
return playsession
|
150
session_data/CvwcLkLgVQYvazgv.lua
Normal file
150
session_data/CvwcLkLgVQYvazgv.lua
Normal file
@ -0,0 +1,150 @@
|
||||
local playsession = {
|
||||
{"Jugar", {1433894}},
|
||||
{"Banji", {353564}},
|
||||
{"d0t", {1095835}},
|
||||
{"ServalKitty", {644788}},
|
||||
{"hyunbeen", {382454}},
|
||||
{"remarkablysilly", {1393147}},
|
||||
{"jasta100", {299613}},
|
||||
{"marnkh", {614486}},
|
||||
{"Khizlek", {186178}},
|
||||
{"eldr420", {1317560}},
|
||||
{"glukuzzz", {604403}},
|
||||
{"whopper", {1194670}},
|
||||
{"joe32", {926310}},
|
||||
{"backburn", {1722}},
|
||||
{"halpenny911", {546325}},
|
||||
{"xcomishe", {362801}},
|
||||
{"corbin9228", {669037}},
|
||||
{"Rouden", {598386}},
|
||||
{"ikeysito", {1540}},
|
||||
{"Giatros", {1079406}},
|
||||
{"swic", {1322492}},
|
||||
{"siriushoward", {508145}},
|
||||
{"smashngrabb", {476579}},
|
||||
{"McSailaubek", {518199}},
|
||||
{"facere", {1094738}},
|
||||
{"Strangero", {8622}},
|
||||
{"jagger23", {376462}},
|
||||
{"vad7ik", {789722}},
|
||||
{"quintkiller", {259205}},
|
||||
{"Plawerth", {542673}},
|
||||
{"fanda249", {920165}},
|
||||
{"freek18", {539445}},
|
||||
{"Jfo_f", {123269}},
|
||||
{"dorpdorp", {1316023}},
|
||||
{"KIRkomMAX", {523518}},
|
||||
{"kingkendji", {85420}},
|
||||
{"232515275", {16122}},
|
||||
{"Kobrar", {1270120}},
|
||||
{"VILJAM", {62065}},
|
||||
{"a835227040", {167850}},
|
||||
{"Beelzemon", {74468}},
|
||||
{"Darc89", {11885}},
|
||||
{"co2coffee", {6966}},
|
||||
{"Markusx26", {143257}},
|
||||
{"GunaS", {287550}},
|
||||
{"Deathbear56", {559693}},
|
||||
{"S.L", {369604}},
|
||||
{"Gerkiz", {292667}},
|
||||
{"KrumTheRager", {818799}},
|
||||
{"Annihilator", {8456}},
|
||||
{"increased", {17801}},
|
||||
{"ちゃま", {37908}},
|
||||
{"Cindroms4", {16828}},
|
||||
{"COOL-ITEM", {328381}},
|
||||
{"sj3020", {8353}},
|
||||
{"drill95", {7769}},
|
||||
{"jobduck", {7369}},
|
||||
{"manstro011", {1074699}},
|
||||
{"spektorxd", {13843}},
|
||||
{"Velguarder", {52509}},
|
||||
{"The_Shadow_Sword", {37997}},
|
||||
{"whollyspokes", {186935}},
|
||||
{"Killedkenny", {98946}},
|
||||
{"mewmew", {361571}},
|
||||
{"Bigfuud", {66165}},
|
||||
{"Rayeth", {215408}},
|
||||
{"Foux3k", {33755}},
|
||||
{"seeyorise", {138115}},
|
||||
{"EdwinAxis", {77575}},
|
||||
{"bl72", {158855}},
|
||||
{"larshp", {36356}},
|
||||
{"chych", {6245}},
|
||||
{"cfritten", {94022}},
|
||||
{"cogito123", {40767}},
|
||||
{"50fffff", {718507}},
|
||||
{"gearmach1ne", {175010}},
|
||||
{"a349908148", {21338}},
|
||||
{"niko27111__", {48236}},
|
||||
{"bico", {135817}},
|
||||
{"Zhukovo", {22766}},
|
||||
{"Blooode", {4975}},
|
||||
{"Stragis", {26432}},
|
||||
{"AurelienG", {1161}},
|
||||
{"DaBigEd", {51961}},
|
||||
{"cocoilove", {43839}},
|
||||
{"Ed9210", {14055}},
|
||||
{"KingKolla", {1837}},
|
||||
{"levmeowsky", {50458}},
|
||||
{"rayijin", {15828}},
|
||||
{"Terarink", {803284}},
|
||||
{"boomfink", {4065}},
|
||||
{"kevinma", {96345}},
|
||||
{"TrickyVic", {786011}},
|
||||
{"TheWickedMaster", {468743}},
|
||||
{"changaryyy", {595844}},
|
||||
{"rykstar", {304499}},
|
||||
{"aeshettr", {23420}},
|
||||
{"tyssa", {626575}},
|
||||
{"ManuelG", {14210}},
|
||||
{"chilldude.uk", {183747}},
|
||||
{"TheColorman", {198731}},
|
||||
{"skatordude", {535257}},
|
||||
{"samuray1889", {38572}},
|
||||
{"Noller", {27274}},
|
||||
{"theoghrastus", {77572}},
|
||||
{"Maxfreez21", {544145}},
|
||||
{"Nate66873", {544270}},
|
||||
{"JuanMore", {347940}},
|
||||
{"Serennie", {364272}},
|
||||
{"mnbvbfve", {2329}},
|
||||
{"Nikkichu", {483376}},
|
||||
{"miloz24", {509}},
|
||||
{"MechaLives", {410542}},
|
||||
{"Bazhenoff", {6550}},
|
||||
{"mar123322", {413368}},
|
||||
{"Bager243", {12174}},
|
||||
{"MeggalBozale", {74156}},
|
||||
{"putinss", {311843}},
|
||||
{"IamTzu", {307542}},
|
||||
{"ZkyZerfer", {17508}},
|
||||
{"_Finley_", {5678}},
|
||||
{"KloStein", {294458}},
|
||||
{"ZiP84", {26419}},
|
||||
{"WetSpaghett", {35660}},
|
||||
{"ArcticHS", {43342}},
|
||||
{"chrisisthebe", {265672}},
|
||||
{"singsong1", {3452}},
|
||||
{"LaszloK", {15012}},
|
||||
{"SpaceTurd", {36102}},
|
||||
{"Cak3Hol3", {167509}},
|
||||
{"swan2745", {248187}},
|
||||
{"mishso", {8163}},
|
||||
{"ButtChugg69", {133127}},
|
||||
{"timocb", {173393}},
|
||||
{"Nicolixxx", {81938}},
|
||||
{"flamorand", {4997}},
|
||||
{"leeson", {27733}},
|
||||
{"samy115", {12110}},
|
||||
{"Ommuden", {170303}},
|
||||
{"crissel_b", {9831}},
|
||||
{"CallMeTaste", {103585}},
|
||||
{"Commander_Klaus", {41396}},
|
||||
{"MaZeeT", {68716}},
|
||||
{"vince527", {18766}},
|
||||
{"redlabel", {55880}},
|
||||
{"danyal_knights", {28097}},
|
||||
{"R3fr3Sh", {13639}}
|
||||
}
|
||||
return playsession
|
46
session_data/OqHeNIUMnCUCHZnx.lua
Normal file
46
session_data/OqHeNIUMnCUCHZnx.lua
Normal file
@ -0,0 +1,46 @@
|
||||
local playsession = {
|
||||
{"mewmew", {470953}},
|
||||
{"Giatros", {366029}},
|
||||
{"remarkablysilly", {4420}},
|
||||
{"MadClown01", {989491}},
|
||||
{"Pizdets", {107791}},
|
||||
{"DKarma", {941829}},
|
||||
{"dazonker", {44617}},
|
||||
{"TrickyVic", {3541}},
|
||||
{"Lillbirro", {7443}},
|
||||
{"Kryv1c", {7015}},
|
||||
{"Spocks", {5550}},
|
||||
{"cogito123", {888092}},
|
||||
{"Gerkiz", {843075}},
|
||||
{"Boris1998", {643348}},
|
||||
{"GarretShadow", {375236}},
|
||||
{"15944831778", {621004}},
|
||||
{"quintkiller", {550276}},
|
||||
{"Jhumekes", {289272}},
|
||||
{"Ghosteye213", {5922}},
|
||||
{"MatoPlayz", {8262}},
|
||||
{"Dimava", {445908}},
|
||||
{"DomekRomek", {14682}},
|
||||
{"Sneakypoop", {47530}},
|
||||
{"Menander", {16091}},
|
||||
{"Stokmeister", {4362}},
|
||||
{"ausmister", {107738}},
|
||||
{"Doctor_Goose", {361133}},
|
||||
{"LymBAOBEI", {90333}},
|
||||
{"Kyte", {25198}},
|
||||
{"Nexarius", {298788}},
|
||||
{"hsxu", {2692}},
|
||||
{"Ed9210", {6638}},
|
||||
{"flooxy", {3519}},
|
||||
{"Pablo3210", {10570}},
|
||||
{"TyapLyap", {82680}},
|
||||
{"A-l-a-n", {238325}},
|
||||
{"KingZeothh", {1309}},
|
||||
{"Progman", {2152}},
|
||||
{"factoder89", {73751}},
|
||||
{"TXL_PLAYZ", {10146}},
|
||||
{"EPO666", {131059}},
|
||||
{"trnila", {71340}},
|
||||
{"rcdominator", {1647}}
|
||||
}
|
||||
return playsession
|
93
session_data/SNSVzHcnbkzZuPtf.lua
Normal file
93
session_data/SNSVzHcnbkzZuPtf.lua
Normal file
@ -0,0 +1,93 @@
|
||||
local playsession = {
|
||||
{"skatordude", {837960}},
|
||||
{"PolanStronk", {1006891}},
|
||||
{"rutgers0419", {1007565}},
|
||||
{"corbin9228", {1004160}},
|
||||
{"uruburei1", {470877}},
|
||||
{"dexcruz", {68070}},
|
||||
{"ButtChugg69", {431478}},
|
||||
{"Iglehart", {3371}},
|
||||
{"Velguarder", {142923}},
|
||||
{"CrazyCrabEater", {4223}},
|
||||
{"Factorian12321", {809}},
|
||||
{"kelvinh92", {1729}},
|
||||
{"VincentMonster", {12058}},
|
||||
{"Rotary255", {25854}},
|
||||
{"Selroth", {8024}},
|
||||
{"antuan309", {82967}},
|
||||
{"Terarink", {925605}},
|
||||
{"eldr420", {616830}},
|
||||
{"Kobrar", {917205}},
|
||||
{"adee", {15157}},
|
||||
{"remarkablysilly", {906221}},
|
||||
{"LupusLula", {752231}},
|
||||
{"ClingyTable", {141412}},
|
||||
{"cngl", {48597}},
|
||||
{"Anti Ohm", {362642}},
|
||||
{"NappingYG", {786531}},
|
||||
{"Artengineer", {857611}},
|
||||
{"ETK03", {788469}},
|
||||
{"nateskate777", {1593}},
|
||||
{"whopper", {830828}},
|
||||
{"mustyoshi", {276298}},
|
||||
{"I_dream_of_corn", {190062}},
|
||||
{"mewmew", {800725}},
|
||||
{"PapaBrock", {3765}},
|
||||
{"Ed9210", {6939}},
|
||||
{"jaspering88", {6792}},
|
||||
{"marnkh", {183813}},
|
||||
{"Plawerth", {773579}},
|
||||
{"TrashMode", {526304}},
|
||||
{"Conan0419", {768040}},
|
||||
{"Lordjuampa", {7253}},
|
||||
{"Creedxii", {333169}},
|
||||
{"mechapanda", {35056}},
|
||||
{"Stewmaker61", {47367}},
|
||||
{"tickterd", {18900}},
|
||||
{"xcube", {144773}},
|
||||
{"firstandlast", {718554}},
|
||||
{"MadClown01", {7287}},
|
||||
{"Darkbeatmix", {4650}},
|
||||
{"biscotti", {33886}},
|
||||
{"2117882862", {12878}},
|
||||
{"deathreaper27", {2770}},
|
||||
{"murf52", {8559}},
|
||||
{"Sholvo", {575824}},
|
||||
{"chraynaus", {3390}},
|
||||
{"aniche", {177754}},
|
||||
{"Beelzemon", {309171}},
|
||||
{"BigDogtv", {6350}},
|
||||
{"jr.rabitt", {19206}},
|
||||
{"Sidic", {95237}},
|
||||
{"d0t", {400543}},
|
||||
{"mrzhalt", {1778}},
|
||||
{"SaintAodhan", {130172}},
|
||||
{"ShadowMoses", {66457}},
|
||||
{"hunter117x", {375953}},
|
||||
{"dmitrymk", {209415}},
|
||||
{"Darbius", {133512}},
|
||||
{"typphon", {3440}},
|
||||
{"MRedII", {17455}},
|
||||
{"Giatros", {160383}},
|
||||
{"ServalKitty", {314491}},
|
||||
{"Gas1", {207248}},
|
||||
{"ballbuster", {10536}},
|
||||
{"backburn", {251825}},
|
||||
{"Taurondir", {66606}},
|
||||
{"Daveyboy80", {137947}},
|
||||
{"waxyfir810198", {43988}},
|
||||
{"smashngrabb", {127137}},
|
||||
{"ice9000", {15452}},
|
||||
{"ikeikeeng", {108809}},
|
||||
{"bigboyyy", {38414}},
|
||||
{"mad58max", {77448}},
|
||||
{"jagger23", {97967}},
|
||||
{"Dimava", {13020}},
|
||||
{"Banji", {80207}},
|
||||
{"CommanderFrog", {17115}},
|
||||
{"CrazyAmphibian", {15888}},
|
||||
{"jasta100", {42851}},
|
||||
{"glukuzzz", {38542}},
|
||||
{"iReed", {19805}}
|
||||
}
|
||||
return playsession
|
159
session_data/VqNfLkSRQeXfCkFq.lua
Normal file
159
session_data/VqNfLkSRQeXfCkFq.lua
Normal file
@ -0,0 +1,159 @@
|
||||
local playsession = {
|
||||
{"Gerkiz", {92576}},
|
||||
{"Nate66873", {2051135}},
|
||||
{"zektrix", {534090}},
|
||||
{"The_Shadow_Sword", {545652}},
|
||||
{"swic", {1285631}},
|
||||
{"rutgers0419", {1931666}},
|
||||
{"JuanMore", {768668}},
|
||||
{"kevinma", {1946}},
|
||||
{"delfiler", {173372}},
|
||||
{"Conan0419", {840413}},
|
||||
{"aniche", {938152}},
|
||||
{"hunter117x", {227285}},
|
||||
{"Nikkichu", {1037518}},
|
||||
{"Kr3n3k", {10795}},
|
||||
{"Eject-Master", {338082}},
|
||||
{"TrickyVic", {1736503}},
|
||||
{"Roeno1997", {90034}},
|
||||
{"ETK03", {651991}},
|
||||
{"facere", {1259408}},
|
||||
{"TilenT2", {12898}},
|
||||
{"Krezal", {1928517}},
|
||||
{"sinanyum5", {4367}},
|
||||
{"MatoPlayz", {43694}},
|
||||
{"tjql9856", {115841}},
|
||||
{"Serennie", {368364}},
|
||||
{"Kobrar", {1759496}},
|
||||
{"Flashbacks", {1329147}},
|
||||
{"seeyorise", {1308607}},
|
||||
{"johannestechnik", {6048}},
|
||||
{"forkonce", {1346759}},
|
||||
{"Nivek3k", {1749}},
|
||||
{"Hassanka", {9846}},
|
||||
{"Liutio", {26669}},
|
||||
{"SNQE", {6449}},
|
||||
{"dorpdorp", {1105320}},
|
||||
{"AurelienG", {342216}},
|
||||
{"gearmach1ne", {134519}},
|
||||
{"jagger23", {358601}},
|
||||
{"Lastaustralian", {435362}},
|
||||
{"Federal", {250969}},
|
||||
{"mindriot", {315192}},
|
||||
{"stevdev", {237062}},
|
||||
{"CescoDTeck", {5222}},
|
||||
{"Daveyboy80", {752397}},
|
||||
{"WiredMesh", {1248927}},
|
||||
{"gingerpower", {30441}},
|
||||
{"putinss", {107398}},
|
||||
{"chilldude.uk", {1298119}},
|
||||
{"Tmin10", {2952}},
|
||||
{"PolanStronk", {1539322}},
|
||||
{"matlater", {3254}},
|
||||
{"captaineeee", {10054}},
|
||||
{"ristallderon", {4653}},
|
||||
{"freek18", {1262362}},
|
||||
{"Bokrug", {5008}},
|
||||
{"yanivger", {234674}},
|
||||
{"raskl", {78317}},
|
||||
{"fanda249", {223679}},
|
||||
{"LittleX", {25594}},
|
||||
{"twinotter", {35915}},
|
||||
{"umbrax", {6263}},
|
||||
{"burgarnils", {254675}},
|
||||
{"Unwichtig", {123611}},
|
||||
{"Si", {16577}},
|
||||
{"beranabus", {16075}},
|
||||
{"nicko412", {16274}},
|
||||
{"정환", {34409}},
|
||||
{"북치기딱치기북딱딱", {59742}},
|
||||
{"borgyosb", {5441}},
|
||||
{"FingerFix", {16719}},
|
||||
{"MrHalfaya", {37684}},
|
||||
{"Roxmuhr", {3615}},
|
||||
{"-Nightmare-", {261703}},
|
||||
{"Asador", {607498}},
|
||||
{"_Mash_", {758656}},
|
||||
{"Giatros", {153347}},
|
||||
{"Jonnston", {17253}},
|
||||
{"wdb22431000", {142713}},
|
||||
{"DiamLiam", {93416}},
|
||||
{"Presbo", {1014437}},
|
||||
{"SmokinTaco", {50548}},
|
||||
{"Dragonuv", {553967}},
|
||||
{"Pustelnik", {10118}},
|
||||
{"hasannuh", {979837}},
|
||||
{"wolfspeed201", {138510}},
|
||||
{"ServalKitty", {11991}},
|
||||
{"Lillbirro", {1993}},
|
||||
{"Davyjjj", {18998}},
|
||||
{"judos", {32135}},
|
||||
{"ksb4145", {251324}},
|
||||
{"Ghosteye213", {7903}},
|
||||
{"gingiz", {14606}},
|
||||
{"ko5h", {4195}},
|
||||
{"Gunner94", {7150}},
|
||||
{"ConstNW", {32862}},
|
||||
{"WildVine", {2385}},
|
||||
{"TryonHD", {8247}},
|
||||
{"Strannik", {67197}},
|
||||
{"diamondback", {49718}},
|
||||
{"DarkTalismaN", {90227}},
|
||||
{"dmitrymk", {394165}},
|
||||
{"mad58max", {1045039}},
|
||||
{"sumsar198", {419}},
|
||||
{"JaJaBings", {37353}},
|
||||
{"H4ppyH1pp0", {322673}},
|
||||
{"jasta100", {309857}},
|
||||
{"RvDelft", {3377}},
|
||||
{"ButtChugg69", {244009}},
|
||||
{"Bryce940", {31337}},
|
||||
{"oldmachine", {250442}},
|
||||
{"wvwisokee", {168458}},
|
||||
{"Srcaos", {4290}},
|
||||
{"U_Wot", {171760}},
|
||||
{"Artengineer", {1099170}},
|
||||
{"joe32", {528829}},
|
||||
{"TheWickedMaster", {64352}},
|
||||
{"Tivo", {4170}},
|
||||
{"happyjumper5", {195818}},
|
||||
{"sim1234", {107716}},
|
||||
{"Primar", {29423}},
|
||||
{"MechaLives", {886338}},
|
||||
{"wizzZa", {5604}},
|
||||
{"LoicB", {19145}},
|
||||
{"shadowNight", {2042}},
|
||||
{"DementedCreation", {633177}},
|
||||
{"SpaceTurd", {35599}},
|
||||
{"Explosivecoin", {44166}},
|
||||
{"tabulox", {20548}},
|
||||
{"skatordude", {820949}},
|
||||
{"Nemo91", {37221}},
|
||||
{"heffi15", {35303}},
|
||||
{"elvelazquez", {30664}},
|
||||
{"Lagger289", {376}},
|
||||
{"uruburei1", {265861}},
|
||||
{"MaZeeT", {726977}},
|
||||
{"tyssa", {559019}},
|
||||
{"yunori", {48395}},
|
||||
{"royroger", {3460}},
|
||||
{"Halik", {22993}},
|
||||
{"staalu", {55540}},
|
||||
{"PTFuza", {40680}},
|
||||
{"eldr420", {180997}},
|
||||
{"dexcruz", {399746}},
|
||||
{"Plawerth", {437720}},
|
||||
{"Qurikz", {2954}},
|
||||
{"realDonaldTrump", {4949}},
|
||||
{"AndrewStark", {75243}},
|
||||
{"Terarink", {291679}},
|
||||
{"bl72", {181476}},
|
||||
{"Anti Ohm", {233946}},
|
||||
{"mewmew", {185250}},
|
||||
{"Azakk", {153711}},
|
||||
{"Nanoc-Awagode", {2091}},
|
||||
{"rickoleum", {7295}},
|
||||
{"50fffff", {53614}},
|
||||
{"corbin9228", {19911}}
|
||||
}
|
||||
return playsession
|
257
session_data/gWRDmrkyKqXAjBbY.lua
Normal file
257
session_data/gWRDmrkyKqXAjBbY.lua
Normal file
@ -0,0 +1,257 @@
|
||||
local playsession = {
|
||||
{"Maxfreez21", {721608}},
|
||||
{"corbin9228", {2447339}},
|
||||
{"d0t", {101898}},
|
||||
{"Ommuden", {636512}},
|
||||
{"Nikkichu", {1697695}},
|
||||
{"mar123322", {614676}},
|
||||
{"facere", {1856856}},
|
||||
{"jasta100", {1044677}},
|
||||
{"Gerkiz", {53954}},
|
||||
{"dorpdorp", {2242499}},
|
||||
{"larshp", {46133}},
|
||||
{"vad7ik", {1279994}},
|
||||
{"KillingPotatoes", {280319}},
|
||||
{"okan009", {246313}},
|
||||
{"zobobob", {280171}},
|
||||
{"mewmew", {378400}},
|
||||
{"dexcruz", {351426}},
|
||||
{"remarkablysilly", {411391}},
|
||||
{"rykstar", {877148}},
|
||||
{"amadey18", {176150}},
|
||||
{"chrisisthebe", {1351934}},
|
||||
{"tyssa", {778777}},
|
||||
{"SumerSoft", {2237}},
|
||||
{"Tereble", {24102}},
|
||||
{"bbc26rus", {26371}},
|
||||
{"Giatros", {166202}},
|
||||
{"ZiP84", {523618}},
|
||||
{"TobbeHå", {658}},
|
||||
{"ragegear", {22911}},
|
||||
{"redaisenjack", {92325}},
|
||||
{"hch100", {2822}},
|
||||
{"NoDramaObama", {177275}},
|
||||
{"skatordude", {1407314}},
|
||||
{"CommanderFrog", {100544}},
|
||||
{"mustyoshi", {1498800}},
|
||||
{"PolanStronk", {1647460}},
|
||||
{"seeyorise", {641336}},
|
||||
{"N4RC", {2633}},
|
||||
{"VincentMonster", {112152}},
|
||||
{"settan", {526818}},
|
||||
{"Lordjuampa", {250136}},
|
||||
{"Plawerth", {678336}},
|
||||
{"whopper", {963816}},
|
||||
{"quintkiller", {564}},
|
||||
{"loutanifi", {106887}},
|
||||
{"Wadiyatalkinbeet", {10150}},
|
||||
{"IamTzu", {230950}},
|
||||
{"A-l-a-n", {64760}},
|
||||
{"My_Name_Is___Jeff", {1773}},
|
||||
{"tajemniczy_303", {43039}},
|
||||
{"cogito123", {29357}},
|
||||
{"dirka", {9996}},
|
||||
{"Vuldunobetro", {1037841}},
|
||||
{"Allall", {168932}},
|
||||
{"I_dream_of_corn", {140755}},
|
||||
{"Terarink", {2263598}},
|
||||
{"joe32", {785929}},
|
||||
{"Boris1998", {16008}},
|
||||
{"matam666", {326274}},
|
||||
{"Jugar", {444675}},
|
||||
{"Zhukovo", {173308}},
|
||||
{"Enderdraak", {700033}},
|
||||
{"Liandrows", {21125}},
|
||||
{"kevinma", {8635}},
|
||||
{"siriushoward", {343662}},
|
||||
{"Kyte", {692523}},
|
||||
{"Tcheko", {49421}},
|
||||
{"Combat564", {568851}},
|
||||
{"akrause", {6167}},
|
||||
{"silver2127", {7160}},
|
||||
{"SpaceTurd", {16315}},
|
||||
{"hsxu", {2327}},
|
||||
{"umtallguy", {1006717}},
|
||||
{"Qwa7", {628928}},
|
||||
{"steelhero", {2099}},
|
||||
{"CrazyAmphibian", {50423}},
|
||||
{"kelvinh92", {372550}},
|
||||
{"umbrax", {36222}},
|
||||
{"Silicon", {5918}},
|
||||
{"haizuki", {349609}},
|
||||
{"Linaori", {7718}},
|
||||
{"18145174666", {9200}},
|
||||
{"Thorhigh", {444450}},
|
||||
{"MasterTom", {15660}},
|
||||
{"Didier-Sebastien", {96725}},
|
||||
{"Bokrug", {3079}},
|
||||
{"alejandrodlrg", {67798}},
|
||||
{"Wladix", {16872}},
|
||||
{"alyptica", {134010}},
|
||||
{"bico", {1216411}},
|
||||
{"hasannuh", {1269978}},
|
||||
{"hunter117x", {305015}},
|
||||
{"IMI4tth3w", {659874}},
|
||||
{"robertkruijt", {142288}},
|
||||
{"ksb4145", {44891}},
|
||||
{"jackazzm", {693555}},
|
||||
{"holdfastt1172", {6951}},
|
||||
{"KevinoFactorioBoi", {335859}},
|
||||
{"Hawell_cze", {15573}},
|
||||
{"tickterd", {156651}},
|
||||
{"ZombieFire", {20922}},
|
||||
{"ClingyTable", {901411}},
|
||||
{"wekkka", {691231}},
|
||||
{"real_scnerd", {51268}},
|
||||
{"ailishi19", {88470}},
|
||||
{"Daveyboy80", {5132}},
|
||||
{"COOL-ITEM", {165309}},
|
||||
{"Chefkoch360", {899}},
|
||||
{"ETK03", {575322}},
|
||||
{"yomez", {14215}},
|
||||
{"Rayeth", {63692}},
|
||||
{"jackalex", {171158}},
|
||||
{"RAFEDAS", {197002}},
|
||||
{"ZTX", {30835}},
|
||||
{"Dialko", {18923}},
|
||||
{"wvwisokee", {36765}},
|
||||
{"rutgers0419", {624489}},
|
||||
{"McSailaubek", {48051}},
|
||||
{"ozergenc", {5108}},
|
||||
{"iato", {20292}},
|
||||
{"lgor007", {233202}},
|
||||
{"Anti Ohm", {632924}},
|
||||
{"BrokeAsAJoke", {185881}},
|
||||
{"GamingComet", {14153}},
|
||||
{"AtomicDeamon", {1160894}},
|
||||
{"Augustona", {88806}},
|
||||
{"JuanMore", {507801}},
|
||||
{"ButtChugg69", {15192}},
|
||||
{"acroca", {565996}},
|
||||
{"Streamline1175", {217961}},
|
||||
{"tanneman", {9357}},
|
||||
{"670455809", {138281}},
|
||||
{"Maniah", {11056}},
|
||||
{"MorgenmuffelLP", {18786}},
|
||||
{"ugg8", {233711}},
|
||||
{"V1NN13", {17400}},
|
||||
{"Lastaustralian", {1669351}},
|
||||
{"wolfspike", {51538}},
|
||||
{"Piewdennis", {933688}},
|
||||
{"Delqvs", {106490}},
|
||||
{"NappingYG", {501765}},
|
||||
{"p0p3", {416768}},
|
||||
{"craigrood", {102747}},
|
||||
{"fenderpuddy", {6049}},
|
||||
{"koszyn", {21972}},
|
||||
{"Collider", {6587}},
|
||||
{"ThisIsMathias", {9663}},
|
||||
{"Degul", {72863}},
|
||||
{"Lillbirro", {1459}},
|
||||
{"SeaGrizzly69", {9827}},
|
||||
{"roosterbrewster", {4912}},
|
||||
{"wosix", {41610}},
|
||||
{"Creedxii", {358455}},
|
||||
{"Hubert0990", {5471}},
|
||||
{"mzore", {1409104}},
|
||||
{"Xackk", {6969}},
|
||||
{"gryph", {61753}},
|
||||
{"glukuzzz", {2010}},
|
||||
{"dmitrymk", {72694}},
|
||||
{"Clevin", {191032}},
|
||||
{"Loemi", {26746}},
|
||||
{"Morgan3rd", {4571}},
|
||||
{"Holoskii", {7170}},
|
||||
{"Helperbot2000", {80164}},
|
||||
{"Jhumekes", {22167}},
|
||||
{"TryonHD", {20604}},
|
||||
{"WiredMesh", {1313242}},
|
||||
{"zektrix", {1051885}},
|
||||
{"Shinhan", {88793}},
|
||||
{"plucked", {8076}},
|
||||
{"Foux3k", {13730}},
|
||||
{"jetboy99", {116553}},
|
||||
{"Nalleknas", {245820}},
|
||||
{"Cr33p", {871165}},
|
||||
{"mad58max", {917805}},
|
||||
{"AdvisableData", {25278}},
|
||||
{"MechaLives", {691998}},
|
||||
{"Drache8892", {109103}},
|
||||
{"manrol", {49975}},
|
||||
{"freek18", {636163}},
|
||||
{"TheWickedMaster", {93452}},
|
||||
{"Asador", {1044437}},
|
||||
{"FingerFix", {4464}},
|
||||
{"Origamist", {33146}},
|
||||
{"TinyMayor", {538874}},
|
||||
{"Artengineer", {1146081}},
|
||||
{"Eject-Master", {14295}},
|
||||
{"TheKronnY", {31884}},
|
||||
{"matlater", {2486}},
|
||||
{"Rotary255", {23935}},
|
||||
{"moos", {24406}},
|
||||
{"levmeowsky", {19303}},
|
||||
{"stayball", {26687}},
|
||||
{"amek87", {8426}},
|
||||
{"WreckerAZA", {89702}},
|
||||
{"Eriksonn", {395377}},
|
||||
{"HardcoreRocco", {681083}},
|
||||
{"PerutzUK", {963739}},
|
||||
{"imre9999", {155150}},
|
||||
{"huyj2k", {76545}},
|
||||
{"scaleboy", {134191}},
|
||||
{"hwan1992", {132082}},
|
||||
{"EdgeOfJuice", {205895}},
|
||||
{"Dziuunia", {7119}},
|
||||
{"Velguarder", {246784}},
|
||||
{"khalismur", {9771}},
|
||||
{"ServalKitty", {532331}},
|
||||
{"realDonaldTrump", {14746}},
|
||||
{"HaverGamer", {6718}},
|
||||
{"MRMemes", {623519}},
|
||||
{"kevindu554", {821366}},
|
||||
{"valfogo", {27726}},
|
||||
{"backburn", {2708}},
|
||||
{"IGotBaconSoda", {16420}},
|
||||
{"CluelessBlackKnight", {687181}},
|
||||
{"PaTTeMaN_Of_Dk", {15620}},
|
||||
{"JenkzJr", {30771}},
|
||||
{"cetrana", {34086}},
|
||||
{"Legoavenger14004", {124408}},
|
||||
{"xetcalin", {60220}},
|
||||
{"terradus", {661583}},
|
||||
{"Filipekq", {17617}},
|
||||
{"St1nklr", {16316}},
|
||||
{"Atropintus", {79030}},
|
||||
{"Schenek", {423406}},
|
||||
{"loadover", {443}},
|
||||
{"stevdev", {83388}},
|
||||
{"KloStein", {313099}},
|
||||
{"RubbishNateDawg", {32022}},
|
||||
{"50fffff", {423869}},
|
||||
{"BlaQkout", {407294}},
|
||||
{"lagking", {576}},
|
||||
{"Explosivecoin", {39752}},
|
||||
{"Merry-Hinge", {46096}},
|
||||
{"aniche", {126364}},
|
||||
{"Nate66873", {339893}},
|
||||
{"ikeikeeng", {20748}},
|
||||
{"Tyther", {830}},
|
||||
{"squiral", {10619}},
|
||||
{"matthew1206", {263117}},
|
||||
{"Ash314", {62564}},
|
||||
{"Kail2312", {11301}},
|
||||
{"numberoverzero", {59002}},
|
||||
{"Qweiop123", {8856}},
|
||||
{"Silver_Eagle7", {177885}},
|
||||
{"PandaPai", {19622}},
|
||||
{"Spikerocker27", {5048}},
|
||||
{"nmann9517", {105669}},
|
||||
{"twinotter", {65399}},
|
||||
{"PhoenixDiablo", {19804}},
|
||||
{"kingkendji", {11147}},
|
||||
{"vince527", {100932}},
|
||||
{"david38901", {679}},
|
||||
{"Nic5", {2214}}
|
||||
}
|
||||
return playsession
|
157
session_data/kuxVCLHaRLmszlyV.lua
Normal file
157
session_data/kuxVCLHaRLmszlyV.lua
Normal file
@ -0,0 +1,157 @@
|
||||
local playsession = {
|
||||
{"manstro011", {1295942}},
|
||||
{"Serennie", {1021320}},
|
||||
{"cocoilove", {204336}},
|
||||
{"twinotter", {84407}},
|
||||
{"WildVine", {122134}},
|
||||
{"Timfee", {1258999}},
|
||||
{"Averest", {228195}},
|
||||
{"vad7ik", {1124347}},
|
||||
{"bl72", {375264}},
|
||||
{"halpenny911", {1222200}},
|
||||
{"Lastaustralian", {1159225}},
|
||||
{"CommanderFrog", {1189432}},
|
||||
{"aalexx", {905688}},
|
||||
{"Terarink", {1288274}},
|
||||
{"Orz123", {740843}},
|
||||
{"JamieHolding", {196578}},
|
||||
{"MechaLives", {405112}},
|
||||
{"TheWickedMaster", {1281238}},
|
||||
{"IamTzu", {741598}},
|
||||
{"Awalone", {24735}},
|
||||
{"Plawerth", {238635}},
|
||||
{"KIRkomMAX", {271928}},
|
||||
{"sasha21168", {122338}},
|
||||
{"phill3333", {396851}},
|
||||
{"peggeleg", {128431}},
|
||||
{"beranabus", {49597}},
|
||||
{"Scuideie-Guy", {72540}},
|
||||
{"Catbert", {80002}},
|
||||
{"savexi", {12391}},
|
||||
{"Lukas10999", {4861}},
|
||||
{"13999863760", {7262}},
|
||||
{"Bema", {414917}},
|
||||
{"aniche", {256141}},
|
||||
{"befzz", {20252}},
|
||||
{"kelvinh92", {566892}},
|
||||
{"freemanoid", {12216}},
|
||||
{"JuanMore", {570516}},
|
||||
{"dorpdorp", {778701}},
|
||||
{"WiredMesh", {926378}},
|
||||
{"adlmr", {935025}},
|
||||
{"MrJSelig", {197788}},
|
||||
{"Delqvs", {1020762}},
|
||||
{"Piewdennis", {379688}},
|
||||
{"wilduk", {82093}},
|
||||
{"NewSmartPie", {180800}},
|
||||
{"CDirkx", {2717}},
|
||||
{"Mannorothe", {5249}},
|
||||
{"kevinma", {3152}},
|
||||
{"vedolv", {754735}},
|
||||
{"redlabel", {1075025}},
|
||||
{"cmert_oknam", {6386}},
|
||||
{"RonnDlear", {688269}},
|
||||
{"fanda249", {82728}},
|
||||
{"kunnis", {4783}},
|
||||
{"terradus", {998573}},
|
||||
{"silverjayw", {195531}},
|
||||
{"a_kid", {213927}},
|
||||
{"Chiramane", {8986}},
|
||||
{"longda88", {5853}},
|
||||
{"elvelazquez", {978559}},
|
||||
{"seeyorise", {994019}},
|
||||
{"dmitrymk", {118252}},
|
||||
{"WakanTanka", {29512}},
|
||||
{"Daveyboy80", {458230}},
|
||||
{"The_Shadow_Sword", {878488}},
|
||||
{"uruburei1", {1955}},
|
||||
{"impisa", {11409}},
|
||||
{"ralphmace", {91562}},
|
||||
{"ksb4145", {113646}},
|
||||
{"eizooz", {61027}},
|
||||
{"EvilRed", {8201}},
|
||||
{"Aahzmundus", {33678}},
|
||||
{"nekunly", {23285}},
|
||||
{"Giatros", {724817}},
|
||||
{"28vinnie28", {11264}},
|
||||
{"Jooey14", {828555}},
|
||||
{"Kondi20_PL", {6826}},
|
||||
{"jiust", {235645}},
|
||||
{"Roeno1997", {198653}},
|
||||
{"kubickijj", {7903}},
|
||||
{"StarLite", {797000}},
|
||||
{"Silicon", {404081}},
|
||||
{"Clythoris", {4610}},
|
||||
{"UTIDI", {770587}},
|
||||
{"AndreyE", {44498}},
|
||||
{"kasikas", {1247}},
|
||||
{"Skynet82", {71781}},
|
||||
{"perfectwill", {131404}},
|
||||
{"Rayeth", {13895}},
|
||||
{"snaodrn", {30340}},
|
||||
{"rusty_au", {150885}},
|
||||
{"ZiP84", {309022}},
|
||||
{"ItsSnowfy", {28801}},
|
||||
{"changaryyy", {593115}},
|
||||
{"matam666", {97035}},
|
||||
{"KaRaVai", {7751}},
|
||||
{"marius86000", {69683}},
|
||||
{"l_Diego_l", {509}},
|
||||
{"FrenziedPassengers", {549654}},
|
||||
{"Ed9210", {46496}},
|
||||
{"AndrewStark", {27506}},
|
||||
{"Fexx", {3206}},
|
||||
{"Terasaki", {9261}},
|
||||
{"TilenT2", {225327}},
|
||||
{"chrisisthebe", {332427}},
|
||||
{"red11", {380017}},
|
||||
{"superjerry88", {21528}},
|
||||
{"Uncle_Ben", {4460}},
|
||||
{"KloStein", {48484}},
|
||||
{"Xackk", {505185}},
|
||||
{"Krul", {490627}},
|
||||
{"crepuscolo", {7991}},
|
||||
{"hasannuh", {77929}},
|
||||
{"Lithidoria", {6809}},
|
||||
{"IGotBaconSoda", {2837}},
|
||||
{"facere", {472789}},
|
||||
{"ampflog", {59137}},
|
||||
{"rixon316", {5465}},
|
||||
{"ayahuasca23", {444441}},
|
||||
{"Alexis4232", {4091}},
|
||||
{"die_ott", {360411}},
|
||||
{"masterchief5771", {11707}},
|
||||
{"Orenji", {140064}},
|
||||
{"HIkira", {72356}},
|
||||
{"thisisjack", {21769}},
|
||||
{"Holoskii", {190178}},
|
||||
{"AurelienG", {384208}},
|
||||
{"GhostPhantom", {28392}},
|
||||
{"Entropie", {128188}},
|
||||
{"xenodasein", {2685}},
|
||||
{"bugmum", {282991}},
|
||||
{"Alexspeed", {226894}},
|
||||
{"xjohnson", {21365}},
|
||||
{"snoetje", {1767}},
|
||||
{"demon_453", {85003}},
|
||||
{"MrSkowron", {43761}},
|
||||
{"FreezeHun", {235050}},
|
||||
{"NerZurg", {31441}},
|
||||
{"Brehzar", {10002}},
|
||||
{"PickleJuice", {184588}},
|
||||
{"Eriksonn", {153077}},
|
||||
{"wekkka", {121828}},
|
||||
{"unusualgam3r", {21067}},
|
||||
{"Tcheko", {68544}},
|
||||
{"vrus89", {25835}},
|
||||
{"PipWinsAgain", {6033}},
|
||||
{"Presbo", {93577}},
|
||||
{"mewmew", {50015}},
|
||||
{"Hoob", {36891}},
|
||||
{"StandaardStefan", {3820}},
|
||||
{"marklinCZ", {21583}},
|
||||
{"REDgalko", {30056}},
|
||||
{"matto469", {10438}},
|
||||
{"baphelps18", {2115}}
|
||||
}
|
||||
return playsession
|
275
session_data/mogcHFrtjdaXXqGI.lua
Normal file
275
session_data/mogcHFrtjdaXXqGI.lua
Normal file
@ -0,0 +1,275 @@
|
||||
local playsession = {
|
||||
{"mewmew", {267449}},
|
||||
{"Kruv", {2833543}},
|
||||
{"Darken8", {15455}},
|
||||
{"flooxy", {127999}},
|
||||
{"TragicFilly", {10027}},
|
||||
{"grilledham", {2466}},
|
||||
{"wot_tak", {9059}},
|
||||
{"Dr.MoonShine", {98119}},
|
||||
{"joe9go", {186976}},
|
||||
{"BKrenz", {14219}},
|
||||
{"lecker", {3606}},
|
||||
{"DKarma", {825100}},
|
||||
{"Impatient", {11708445}},
|
||||
{"GingaNinja042", {450659}},
|
||||
{"Catbert", {33101}},
|
||||
{"Lithidoria", {2454}},
|
||||
{"Sinok", {10932736}},
|
||||
{"Monkeyboy1024", {3199557}},
|
||||
{"Akhrem", {7091}},
|
||||
{"matt01ss", {295927}},
|
||||
{"terradus", {4880880}},
|
||||
{"DawnbringerHUN", {1105674}},
|
||||
{"VincentMonster", {4582}},
|
||||
{"Pobejdalkin", {195232}},
|
||||
{"ETK03", {32172}},
|
||||
{"SpS", {4622749}},
|
||||
{"muchbetter321", {18245}},
|
||||
{"BobtheBuilder31", {3219}},
|
||||
{"Hamersmid", {721357}},
|
||||
{"wilm", {16178}},
|
||||
{"Silicon", {3715248}},
|
||||
{"Hobbang", {12283}},
|
||||
{"JoshTW", {3380038}},
|
||||
{"amferes", {479287}},
|
||||
{"zakky0919", {50710}},
|
||||
{"HighInFiberOptics", {10880}},
|
||||
{"typphon", {75439}},
|
||||
{"Taurondir", {35739}},
|
||||
{"IAmTog", {7441}},
|
||||
{"topek2348", {37279}},
|
||||
{"ZblCoder", {1276910}},
|
||||
{"maate", {475498}},
|
||||
{"Lastfan", {633542}},
|
||||
{"minders4ever", {129357}},
|
||||
{"mr__meeseeks", {752303}},
|
||||
{"HalfNaked", {14075}},
|
||||
{"zcz543211", {2061240}},
|
||||
{"tehibo", {19626}},
|
||||
{"mitchieboy1999", {112555}},
|
||||
{"Poo76765", {28298}},
|
||||
{"cataclaw", {10406}},
|
||||
{"Lastaustralian", {6413}},
|
||||
{"mustyoshi", {600358}},
|
||||
{"staalu", {52550}},
|
||||
{"captcougar1969", {730339}},
|
||||
{"banakeg", {585565}},
|
||||
{"camcam1o", {325430}},
|
||||
{"spikeolas", {602311}},
|
||||
{"Tracolix", {414892}},
|
||||
{"PogomanD", {49432}},
|
||||
{"PickleJuice", {243599}},
|
||||
{"MeggalBozale", {348040}},
|
||||
{"Acruid", {1149335}},
|
||||
{"loadover", {40747}},
|
||||
{"Creep-Sama", {13330}},
|
||||
{"jagger23", {201360}},
|
||||
{"skykittena", {149331}},
|
||||
{"ZumbieHater", {43135}},
|
||||
{"CmdrRat", {102019}},
|
||||
{"ponderer1", {5724403}},
|
||||
{"longda88", {83601}},
|
||||
{"qwe416416", {3698}},
|
||||
{"wekkka", {5066}},
|
||||
{"Noldz_", {14416}},
|
||||
{"dorpdorp", {1921474}},
|
||||
{"pinkjay", {723110}},
|
||||
{"philycheesestake", {2000}},
|
||||
{"Anti Ohm", {353196}},
|
||||
{"davidbutora", {997769}},
|
||||
{"tmoneyfizzle", {1745976}},
|
||||
{"chicki2", {51207}},
|
||||
{"LegionMammal978", {2724}},
|
||||
{"mcmi", {9191}},
|
||||
{"perfectwill", {6063853}},
|
||||
{"Patroles", {162300}},
|
||||
{"Brender", {25293}},
|
||||
{"IsThisNameTakenAlready", {75237}},
|
||||
{"Novasora", {95559}},
|
||||
{"dredonkey", {256704}},
|
||||
{"snaodrn", {17239}},
|
||||
{"dinodod", {422208}},
|
||||
{"kelvinh92", {103193}},
|
||||
{"Plawerth", {26173}},
|
||||
{"Yummytrees", {7124}},
|
||||
{"halpenny911", {28993}},
|
||||
{"skatordude", {1050}},
|
||||
{"Sergiopicopico", {4466}},
|
||||
{"Pustelnik", {1686496}},
|
||||
{"Spocks", {166629}},
|
||||
{"Sholvo", {236407}},
|
||||
{"Fatou", {6400}},
|
||||
{"z903857322", {8374}},
|
||||
{"ironichook", {75336}},
|
||||
{"Zory", {181698}},
|
||||
{"glukuzzz", {142987}},
|
||||
{"GarretShadow", {1952379}},
|
||||
{"Fingerdash", {9523}},
|
||||
{"mr.saxon", {679196}},
|
||||
{"LymBAOBEI", {71979}},
|
||||
{"changaryyy", {5304}},
|
||||
{"Cassey-Undt", {6063}},
|
||||
{"ryanwilliams83", {1064382}},
|
||||
{"a515163212", {8272}},
|
||||
{"gabrielbr000", {47354}},
|
||||
{"Giatros", {358343}},
|
||||
{"Zippy", {12353}},
|
||||
{"ericbang00", {5034}},
|
||||
{"davidlee", {4837}},
|
||||
{"Nalleknas", {1377}},
|
||||
{"Lunafox", {2021082}},
|
||||
{"Esperiom", {68820}},
|
||||
{"bluekigh", {76753}},
|
||||
{"Timfee", {5502996}},
|
||||
{"Dk-077", {436463}},
|
||||
{"huashengmaodou", {7381}},
|
||||
{"Roxen", {1382}},
|
||||
{"ampflog", {12336}},
|
||||
{"kevinma", {13590}},
|
||||
{"PPsh-441", {23954}},
|
||||
{"KIRkomMAX", {52275}},
|
||||
{"TheVanoq", {3818}},
|
||||
{"anghelnicky", {9135}},
|
||||
{"Rogslox", {27419}},
|
||||
{"Kable28RUS", {4870}},
|
||||
{"lichenxi0", {22838}},
|
||||
{"mutawa", {48442}},
|
||||
{"tiankeng", {3161}},
|
||||
{"modoo8397", {5452}},
|
||||
{"UTIDI", {46457}},
|
||||
{"Kondi20_PL", {35519}},
|
||||
{"ku3mi41", {80891}},
|
||||
{"bjoern1035", {196623}},
|
||||
{"Allall", {40925}},
|
||||
{"Jhumekes", {1945}},
|
||||
{"aledeludx", {1344317}},
|
||||
{"Jahweh", {185585}},
|
||||
{"TilenT2", {1400}},
|
||||
{"jiust", {13705}},
|
||||
{"adlmr", {917450}},
|
||||
{"AkimHUN", {1016834}},
|
||||
{"lyman", {25561}},
|
||||
{"vedolv", {282800}},
|
||||
{"redlabel", {2105805}},
|
||||
{"XectriK", {4652}},
|
||||
{"Hiksday", {84948}},
|
||||
{"WillyMF1", {4116094}},
|
||||
{"barstorio", {5722}},
|
||||
{"Ebobaedr", {2479}},
|
||||
{"ankis05", {26235}},
|
||||
{"Neodosa", {19577}},
|
||||
{"Sparksoldier1", {13796}},
|
||||
{"KatanaKiwi", {699797}},
|
||||
{"Mattisso", {20582}},
|
||||
{"maigiee", {4475}},
|
||||
{"SGH", {60076}},
|
||||
{"Cheeseftw", {21459}},
|
||||
{"Jooey14", {4996}},
|
||||
{"rixon316", {6036}},
|
||||
{"Gerkiz", {42962}},
|
||||
{"EddoXD", {104367}},
|
||||
{"putinss", {12387}},
|
||||
{"t_lr", {57055}},
|
||||
{"Camo5", {11441}},
|
||||
{"matam666", {75644}},
|
||||
{"CornishGiza", {281333}},
|
||||
{"Hitman451", {22482}},
|
||||
{"dorgas", {48965}},
|
||||
{"RebuffedBrute44", {263279}},
|
||||
{"Whassup", {6514}},
|
||||
{"silver2127", {15295}},
|
||||
{"maikonm", {12898}},
|
||||
{"eldr420", {10428}},
|
||||
{"SuperTramp", {44155}},
|
||||
{"BookaaGaming", {227146}},
|
||||
{"Neo_Satan", {9259}},
|
||||
{"Apocalypticoreo", {6534}},
|
||||
{"InflictingMHz", {326395}},
|
||||
{"CrazyAmphibian", {42449}},
|
||||
{"jadenw45", {26550}},
|
||||
{"Terarink", {9766338}},
|
||||
{"Lunatiick", {8828}},
|
||||
{"be_yourself", {17257}},
|
||||
{"BlaQkout", {95904}},
|
||||
{"Koltrast", {13160}},
|
||||
{"photogTM", {3040}},
|
||||
{"mathew.robertson", {142896}},
|
||||
{"vampboy37", {3829566}},
|
||||
{"Legendary-Ham", {11437}},
|
||||
{"bbc26rus", {14666}},
|
||||
{"Zardoz", {18263}},
|
||||
{"TrickyVic", {2293255}},
|
||||
{"GearedRemedy", {10410}},
|
||||
{"S.L", {101563}},
|
||||
{"Zeddicus", {28460}},
|
||||
{"I_dream_of_corn", {16061}},
|
||||
{"steelhero", {101123}},
|
||||
{"Uncle_Ben", {7894}},
|
||||
{"Reyand", {4977}},
|
||||
{"BuDDaH77", {17042}},
|
||||
{"0rabbit8", {2819}},
|
||||
{"kittyflow", {5121}},
|
||||
{"Spooznik", {231388}},
|
||||
{"HyperTrancer", {3413}},
|
||||
{"AnotherGuy", {114199}},
|
||||
{"Tereble", {60677}},
|
||||
{"jackazzm", {37297}},
|
||||
{"DraconianEssence", {457183}},
|
||||
{"Exploded_Games", {91790}},
|
||||
{"ronnaldy", {134543}},
|
||||
{"eigen", {45960}},
|
||||
{"TaintedMyth0s", {24977}},
|
||||
{"Deebeast", {12838}},
|
||||
{"gearmach1ne", {10648}},
|
||||
{"Azakk", {15513}},
|
||||
{"tcf", {34599}},
|
||||
{"Foux3k", {13152}},
|
||||
{"TrashMode", {4628}},
|
||||
{"Renekrause", {11625}},
|
||||
{"DaBigEd", {412361}},
|
||||
{"dmitrymk", {242192}},
|
||||
{"xferfer", {1814765}},
|
||||
{"BLURE4L", {16673}},
|
||||
{"Smigles", {10127}},
|
||||
{"diilmac", {1095}},
|
||||
{"Eject-Master", {36243}},
|
||||
{"morcup", {16959}},
|
||||
{"Wiedrock", {20538}},
|
||||
{"ben84", {10113}},
|
||||
{"rubafix", {407506}},
|
||||
{"lukasz_liberda", {17279}},
|
||||
{"Urx", {111558}},
|
||||
{"NightRaven156", {10515}},
|
||||
{"Samaroo24", {165773}},
|
||||
{"betta_splendens", {4205}},
|
||||
{"SkyPPeX", {90346}},
|
||||
{"3ric", {22985}},
|
||||
{"forkonce", {17943}},
|
||||
{"joker1159", {141906}},
|
||||
{"sivael", {815}},
|
||||
{"llyykktt", {73201}},
|
||||
{"Roxmuhr", {8838}},
|
||||
{"Armani2512", {37732}},
|
||||
{"ikeikeeng", {25151}},
|
||||
{"Artengineer", {57768}},
|
||||
{"BEANIOT", {22116}},
|
||||
{"antuan309", {22312}},
|
||||
{"ServalKitty", {340443}},
|
||||
{"mattj256", {152784}},
|
||||
{"naan32", {8045}},
|
||||
{"FussyBadge", {65890}},
|
||||
{"DPeng44", {52074}},
|
||||
{"Explosivecoin", {116899}},
|
||||
{"TXL_PLAYZ", {73266}},
|
||||
{"Sismofytten", {5027}},
|
||||
{"dezgard", {21830}},
|
||||
{"trnila", {177853}},
|
||||
{"Ommuden", {36525}},
|
||||
{"dr_root", {5489}},
|
||||
{"SmokuNoPico", {13754}},
|
||||
{"red11", {122046}},
|
||||
{"Boris1998", {34320}},
|
||||
{"Hanakocz", {13582}}
|
||||
}
|
||||
return playsession
|
68
session_data/nLlHrKmqJofLzQXs.lua
Normal file
68
session_data/nLlHrKmqJofLzQXs.lua
Normal file
@ -0,0 +1,68 @@
|
||||
local playsession = {
|
||||
{"manstro011", {93317}},
|
||||
{"Daveyboy80", {481086}},
|
||||
{"AurelienG", {312860}},
|
||||
{"FreezeHun", {503765}},
|
||||
{"Jooey14", {503753}},
|
||||
{"dmitrymk", {244119}},
|
||||
{"facere", {166903}},
|
||||
{"Nikkichu", {251008}},
|
||||
{"ayahuasca23", {324399}},
|
||||
{"wekkka", {383787}},
|
||||
{"CommanderFrog", {502861}},
|
||||
{"Krul", {73499}},
|
||||
{"Spike1100", {10542}},
|
||||
{"WiredMesh", {501920}},
|
||||
{"Lastaustralian", {378140}},
|
||||
{"mewmew", {168858}},
|
||||
{"TigerSnow", {2056}},
|
||||
{"Presbo", {152122}},
|
||||
{"Hoob", {500690}},
|
||||
{"terradus", {331339}},
|
||||
{"REDgalko", {499736}},
|
||||
{"Eriksonn", {215504}},
|
||||
{"seeyorise", {499485}},
|
||||
{"TheWickedMaster", {374993}},
|
||||
{"QuaxzRu", {498925}},
|
||||
{"Timfee", {498520}},
|
||||
{"Terarink", {497928}},
|
||||
{"DKarma", {72927}},
|
||||
{"Xackk", {170458}},
|
||||
{"PickleJuice", {23805}},
|
||||
{"KloStein", {2583}},
|
||||
{"Entropie", {171548}},
|
||||
{"Clythoris", {44513}},
|
||||
{"S.L", {263020}},
|
||||
{"Roeno1997", {254022}},
|
||||
{"mickey278", {3972}},
|
||||
{"MechaLives", {460522}},
|
||||
{"UTIDI", {9586}},
|
||||
{"Zyrus_Kioko", {35338}},
|
||||
{"Pearl788", {128069}},
|
||||
{"craigrood", {1191}},
|
||||
{"Brender", {171635}},
|
||||
{"Spaceballs", {29408}},
|
||||
{"MacBeth", {299418}},
|
||||
{"Duchesko", {165127}},
|
||||
{"DukeGangsta", {198150}},
|
||||
{"dorgas", {16859}},
|
||||
{"der_Nase_nach", {1147}},
|
||||
{"Delqvs", {308958}},
|
||||
{"TinyMayor", {356510}},
|
||||
{"ManuelG", {91141}},
|
||||
{"Acruid", {319895}},
|
||||
{"MrJSelig", {177591}},
|
||||
{"Brehzar", {20296}},
|
||||
{"JinNJuice", {33166}},
|
||||
{"wot_tak", {204181}},
|
||||
{"tyssa", {200240}},
|
||||
{"HardcoreRocco", {27068}},
|
||||
{"TheHunturian", {7109}},
|
||||
{"Mrog_163", {11034}},
|
||||
{"Nalleknas", {119749}},
|
||||
{"ETK03", {95137}},
|
||||
{"BobtheBuilder31", {3501}},
|
||||
{"MustDie3421", {2328}},
|
||||
{"kunnis", {37182}}
|
||||
}
|
||||
return playsession
|
79
session_data/pIWKzvzzcwQGeAlP.lua
Normal file
79
session_data/pIWKzvzzcwQGeAlP.lua
Normal file
@ -0,0 +1,79 @@
|
||||
local playsession = {
|
||||
{"TheWickedMaster", {1475970}},
|
||||
{"Nalleknas", {239436}},
|
||||
{"Creep-Sama", {871542}},
|
||||
{"DukeGangsta", {760554}},
|
||||
{"ETK03", {1077618}},
|
||||
{"NIK149", {38437}},
|
||||
{"matam666", {526869}},
|
||||
{"Terarink", {1475007}},
|
||||
{"WiredMesh", {1469834}},
|
||||
{"leite", {755997}},
|
||||
{"twobyfore", {854906}},
|
||||
{"thislsamerica", {960}},
|
||||
{"Poo76765", {15549}},
|
||||
{"pfouto", {378}},
|
||||
{"Roxmuhr", {5235}},
|
||||
{"skatordude", {1202488}},
|
||||
{"studix2002", {480}},
|
||||
{"Ed9210", {12938}},
|
||||
{"silver2127", {333131}},
|
||||
{"ksb4145", {62216}},
|
||||
{"Lastaustralian", {691847}},
|
||||
{"pomabroad", {7793}},
|
||||
{"BewiggedGalaxy", {9461}},
|
||||
{"Federal", {681325}},
|
||||
{"Plawerth", {800634}},
|
||||
{"670455809", {368855}},
|
||||
{"CrazyCrabEater", {544852}},
|
||||
{"IGotBaconSoda", {35699}},
|
||||
{"Nate66873", {1034183}},
|
||||
{"remarkablysilly", {760884}},
|
||||
{"Azakk", {893483}},
|
||||
{"galtster", {76388}},
|
||||
{"shaichuk", {27310}},
|
||||
{"dragonslayer951", {46216}},
|
||||
{"gearmach1ne", {868151}},
|
||||
{"I_dream_of_corn", {826644}},
|
||||
{"Hitman451", {441142}},
|
||||
{"Kruv", {9922}},
|
||||
{"1779011759", {235153}},
|
||||
{"whollyspokes", {324604}},
|
||||
{"Coyote101", {6297}},
|
||||
{"Morgan3rd", {355266}},
|
||||
{"ThePocketTiger", {20944}},
|
||||
{"greenstarwars04", {103077}},
|
||||
{"gabrielbr000", {251580}},
|
||||
{"eldr420", {436992}},
|
||||
{"Avadis", {26096}},
|
||||
{"backburn", {601999}},
|
||||
{"flapsio", {54985}},
|
||||
{"CallMeTaste", {47406}},
|
||||
{"Gravestone", {457520}},
|
||||
{"Leboydusouth", {5788}},
|
||||
{"cocoilove", {373943}},
|
||||
{"roosterbrewster", {10589}},
|
||||
{"moonheart08", {4944}},
|
||||
{"Enade", {47936}},
|
||||
{"DonaldsTrumpet", {231689}},
|
||||
{"dcgpy", {1636}},
|
||||
{"MontrealCrook", {142781}},
|
||||
{"corbin9228", {422042}},
|
||||
{"yukinyaa", {8778}},
|
||||
{"NappingYG", {7480}},
|
||||
{"Whassup", {142630}},
|
||||
{"hunter117x", {294737}},
|
||||
{"snaodrn", {83637}},
|
||||
{"kelvinh92", {123559}},
|
||||
{"odopoboqo", {29558}},
|
||||
{"Mavrick", {87574}},
|
||||
{"JuicyJuuce", {92677}},
|
||||
{"tickterd", {76128}},
|
||||
{"mrcalifornia505", {69337}},
|
||||
{"CheesyBLue", {65088}},
|
||||
{"MLG_DeathWalk", {3695}},
|
||||
{"LotA", {37093}},
|
||||
{"Radbar", {17383}},
|
||||
{"mewmew", {7281}}
|
||||
}
|
||||
return playsession
|
92
session_data/zgEUvtEtMXxOtQHY.lua
Normal file
92
session_data/zgEUvtEtMXxOtQHY.lua
Normal file
@ -0,0 +1,92 @@
|
||||
local playsession = {
|
||||
{"manstro011", {755956}},
|
||||
{"AndreyE", {12584}},
|
||||
{"dorpdorp", {751197}},
|
||||
{"kelvinh92", {755684}},
|
||||
{"Daveyboy80", {360180}},
|
||||
{"UTIDI", {669363}},
|
||||
{"Serennie", {509987}},
|
||||
{"andrekoul", {687559}},
|
||||
{"gabrielbr000", {562064}},
|
||||
{"Maxfreez21", {445894}},
|
||||
{"matam666", {754820}},
|
||||
{"Lastaustralian", {754759}},
|
||||
{"jackazzm", {503625}},
|
||||
{"Terarink", {754106}},
|
||||
{"deniska_bolshaya_pipiska", {8785}},
|
||||
{"WiredMesh", {104028}},
|
||||
{"Nikkichu", {447230}},
|
||||
{"H4N", {477147}},
|
||||
{"Seekersdk", {3250}},
|
||||
{"TheLiveSupport", {751060}},
|
||||
{"JuanMore", {744391}},
|
||||
{"tickterd", {304148}},
|
||||
{"HubiundAwesome", {746806}},
|
||||
{"wekkka", {336677}},
|
||||
{"ronnaldy", {7701}},
|
||||
{"PolanStronk", {51864}},
|
||||
{"Gerkiz", {210836}},
|
||||
{"XtraSynster", {631993}},
|
||||
{"derpsticks", {3174}},
|
||||
{"Rayeth", {413946}},
|
||||
{"igorshp", {217515}},
|
||||
{"twinotter", {9826}},
|
||||
{"Brender", {3889}},
|
||||
{"Alexspeed", {669566}},
|
||||
{"seeyorise", {648000}},
|
||||
{"Peto7002", {31163}},
|
||||
{"marius86000", {493191}},
|
||||
{"warmpeas", {1187}},
|
||||
{"Bubi2", {164084}},
|
||||
{"Jayefuu", {73342}},
|
||||
{"johiah", {6245}},
|
||||
{"skace", {187830}},
|
||||
{"ballbuster", {10175}},
|
||||
{"GaryTsukla", {576437}},
|
||||
{"Frappe", {10572}},
|
||||
{"tribalthomas", {479587}},
|
||||
{"DiamLiam", {23947}},
|
||||
{"Baldy34343", {34762}},
|
||||
{"ksb4145", {68495}},
|
||||
{"Dux_Gregis", {9141}},
|
||||
{"jadenw45", {98736}},
|
||||
{"motvey233", {31299}},
|
||||
{"vad7ik", {309642}},
|
||||
{"pakshtyz", {217285}},
|
||||
{"jagger23", {194235}},
|
||||
{"Silicon", {3619}},
|
||||
{"jessop1", {119255}},
|
||||
{"changaryyy", {288760}},
|
||||
{"stanik", {66301}},
|
||||
{"rcdominator", {12077}},
|
||||
{"amferes", {20733}},
|
||||
{"Kuratheris", {90901}},
|
||||
{"sb22284", {282744}},
|
||||
{"Dimava", {273326}},
|
||||
{"SubSeven36", {30845}},
|
||||
{"belbo", {110294}},
|
||||
{"TheWickedMaster", {33043}},
|
||||
{"mewmew", {210661}},
|
||||
{"glukuzzz", {198792}},
|
||||
{"Librscz", {5263}},
|
||||
{"Sparksoldier1", {11576}},
|
||||
{"Flashbacks", {160607}},
|
||||
{"halpenny911", {144336}},
|
||||
{"ankis05", {116604}},
|
||||
{"Neodosa", {112387}},
|
||||
{"Subcinericius", {95266}},
|
||||
{"deafvalley", {7048}},
|
||||
{"Marwonline", {32919}},
|
||||
{"Roxmuhr", {85096}},
|
||||
{"Nemo91", {78602}},
|
||||
{"TiTaN", {4581}},
|
||||
{"facere", {56363}},
|
||||
{"sdsadasd", {5860}},
|
||||
{"putinss", {68439}},
|
||||
{"Xackk", {8781}},
|
||||
{"Andreika", {12575}},
|
||||
{"scaleboy", {44129}},
|
||||
{"IAmTog", {20871}},
|
||||
{"Roeno1997", {7435}}
|
||||
}
|
||||
return playsession
|
Loading…
x
Reference in New Issue
Block a user