1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-02-07 13:31:40 +02:00
This commit is contained in:
MewMew 2018-11-22 21:40:17 +01:00
parent e0578e97e5
commit d2886cb369
37 changed files with 1737 additions and 193 deletions

View File

@ -9,17 +9,17 @@ require "player_list"
require "poll"
require "score"
require "maps.tools.cheat_mode"
--require "maps.tools.cheat_mode"
---- enable maps here ----
--require "maps.biter_battles"
--require "maps.cave_miner"
--require "maps.deep_jungle"
--require "maps.lost_desert"
--require "maps.labyrinth"
require "maps.labyrinth"
--require "maps.spaghettorio"
--require "maps.spiral_troopers"
require "maps.fish_defender"
--require "maps.fish_defender"
--require "maps.crossing"
--require "maps.empty_map"
-----------------------------

View File

@ -45,7 +45,7 @@ local function create_wave_gui(player)
local time_remaining = math.floor(((global.wave_grace_period - (game.tick % global.wave_grace_period)) / 60) / 60)
if time_remaining <= 0 then
global.wave_grace_period = nil
create_wave_gui(player)
return
end
local label = frame.add({ type = "label", caption = "Waves will start in " .. time_remaining .. " minutes."})
@ -225,8 +225,11 @@ local function biter_attack_wave()
end
end
if global.wave_count > 100 then
surface.set_multi_command{command={type=defines.command.attack , target=global.market, distraction=defines.distraction.by_enemy}, unit_count=999, force="enemy", unit_search_distance=400}
if global.wave_count > 1 then
local units = surface.find_entities_filtered({type = "unit", area = {{224, -256},{360, 256}}})
for _, unit in pairs(units) do
unit.destroy()
end
end
local spawn_x = 242
@ -507,7 +510,7 @@ local function on_entity_died(event)
end
end
if math_random(1, 10) == 1 and #players_to_reward == 0 then
if math_random(1, 8) == 1 and #players_to_reward == 0 then
event.entity.surface.spill_item_stack(event.entity.position,{name = "coin", count = 1}, true)
end
@ -614,17 +617,18 @@ local function on_player_joined_game(event)
game.map_settings.enemy_evolution.destroy_factor = 0
game.map_settings.enemy_evolution.time_factor = 0
game.map_settings.enemy_evolution.pollution_factor = 0
game.forces["player"].technologies["artillery-shell-range-1"].enabled = false
game.forces["player"].technologies["artillery-shell-speed-1"].enabled = false
game.forces["player"].technologies["artillery"].enabled = false
game.forces["player"].set_turret_attack_modifier("flamethrower-turret", -0.75)
game.forces.player.set_ammo_damage_modifier("shotgun-shell", 0.5)
global.entity_limits = {
["gun-turret"] = {placed = 1, limit = 1, str = "gun turret", slot_price = 100},
["laser-turret"] = {placed = 0, limit = 1, str = "laser turret", slot_price = 300},
["flamethrower-turret"] = {placed = 0, limit = 0, str = "flamethrower turret", slot_price = 12500},
["flamethrower-turret"] = {placed = 0, limit = 0, str = "flamethrower turret", slot_price = 25000},
["land-mine"] = {placed = 0, limit = 5, str = "landmine", slot_price = 1}
}
@ -642,6 +646,15 @@ local function on_player_joined_game(event)
if global.show_floating_killscore then global.show_floating_killscore[player.name] = false end
end
local surface = game.surfaces["fish_defender"]
if player.online_time < 5 and surface.is_chunk_generated({0,0}) then
player.teleport(surface.find_non_colliding_position("player", {-10, 0}, 2, 1), "fish_defender")
else
if player.online_time < 5 then
player.teleport({16, 0}, "fish_defender")
end
end
if global.wave_grace_period then
global.wave_grace_period = global.wave_grace_period - 3600
if global.wave_grace_period <= 0 then global.wave_grace_period = nil end
@ -653,7 +666,11 @@ local map_height = 96
local function on_chunk_generated(event)
local surface = game.surfaces["fish_defender"]
if surface.name ~= event.surface.name then return end
if surface then
if surface.name ~= event.surface.name then return end
end
local area = event.area
local left_top = area.left_top
@ -662,44 +679,55 @@ local function on_chunk_generated(event)
entity.destroy()
end
if left_top.x >= -160 and left_top.x < 160 then
local entities = surface.find_entities_filtered({area = area, type = "resource"})
for _, entity in pairs(entities) do
entity.destroy()
end
local tiles = {}
if global.market.position then
local replacement_tile = surface.get_tile(global.market.position)
for x = 0, 31, 1 do
for y = 0, 31, 1 do
local pos = {x = left_top.x + x, y = left_top.y + y}
local tile = surface.get_tile(pos)
if tile.name == "deepwater" or tile.name == "water" then
insert(tiles, {name = replacement_tile.name, position = pos})
end
end
end
surface.set_tiles(tiles, true)
end
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, {{x=math.floor(event.area.left_top.x/32),y=math.floor(event.area.left_top.y/32)}})
end
if left_top.x >= 160 then
if left_top.x >= 192 then
if not global.spawn_ores_generated then
local pos = surface.find_non_colliding_position("market",{-8, 0}, 50, 1)
global.market = surface.create_entity({name = "market", position = pos, force = "player"})
global.market.minable = false
refresh_market_offers()
local pos = surface.find_non_colliding_position("gun-turret",{-6, 1}, 50, 1)
local turret = surface.create_entity({name = "gun-turret", position = pos, force = "player"})
turret.insert({name = "firearm-magazine", count = 32})
surface.create_entity({name = "electric-beam", position = {160, -95}, source = {160, -95}, target = {160,96}})
local pos = surface.find_non_colliding_position("player",{-10, 0}, 50, 1)
game.forces["player"].set_spawn_position(pos, surface)
local tiles = {}
local replacement_tile = surface.get_tile(global.market.position)
local water_tiles = surface.find_tiles_filtered({name = {"water", "deepwater"}})
for _, tile in pairs(water_tiles) do
insert(tiles, {name = replacement_tile.name, position = {tile.position.x, tile.position.y}})
end
surface.set_tiles(tiles, true)
local entities = surface.find_entities_filtered({type = "resource"})
for _, entity in pairs(entities) do
entity.destroy()
end
map_functions.draw_smoothed_out_ore_circle({x = -64, y = -64}, "copper-ore", surface, 15, 2500)
map_functions.draw_smoothed_out_ore_circle({x = -64, y = -32}, "iron-ore", surface, 15, 2500)
map_functions.draw_smoothed_out_ore_circle({x = -64, y = 32}, "coal", surface, 15, 1500)
map_functions.draw_smoothed_out_ore_circle({x = -64, y = 64}, "stone", surface, 15, 1500)
map_functions.draw_smoothed_out_ore_circle({x = -64, y = 64}, "stone", surface, 15, 1500)
map_functions.draw_noise_tile_circle({x = -32, y = 0}, "water", surface, 16)
map_functions.draw_oil_circle({x = -64, y = 0}, "crude-oil", surface, 8, 200000)
map_functions.draw_oil_circle({x = -64, y = 0}, "crude-oil", surface, 8, 200000)
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
for x = -4, 4, 1 do
for y = -3, 3, 1 do
surface.regenerate_decorative(decorative_names, {{x,y}})
end
end
global.spawn_ores_generated = true
end
end
@ -833,26 +861,7 @@ local function on_robot_built_entity(event)
end
local function on_tick()
if game.tick % 30 == 0 then
if game.tick == 30 then
local surface = game.surfaces["fish_defender"]
local pos = surface.find_non_colliding_position("player",{4, 0}, 50, 1)
game.forces["player"].set_spawn_position(pos, surface)
for _, p in pairs(game.connected_players) do
p.teleport({4, 0}, surface)
end
local pos = surface.find_non_colliding_position("market",{0, 0}, 50, 1)
global.market = surface.create_entity({name = "market", position = pos, force = "player"})
global.market.minable = false
refresh_market_offers()
local pos = surface.find_non_colliding_position("gun-turret",{4, 1}, 50, 1)
local turret = surface.create_entity({name = "gun-turret", position = pos, force = "player"})
turret.insert({name = "firearm-magazine", count = 32})
surface.create_entity({name = "electric-beam", position = {160, -95}, source = {160, -95}, target = {160,96}})
return
end
if game.tick % 30 == 0 then
if global.market then
for _, player in pairs(game.connected_players) do
create_wave_gui(player)

View File

@ -685,7 +685,7 @@ local entity_drop_amount = {
['spitter-spawner'] = {low = 50, high = 100}
}
local ore_spill_raffle = {"iron-ore","iron-ore","iron-ore","iron-ore","iron-ore","copper-ore","copper-ore","copper-ore","coal","coal","stone","uranium-ore", "landfill", "landfill", "landfill"}
local ore_spawn_raffle = {"iron-ore","iron-ore","iron-ore","copper-ore","copper-ore","coal","coal","stone","uranium-ore","crude-oil","crude-oil"}
local ore_spawn_raffle = {"iron-ore","iron-ore","iron-ore","iron-ore","copper-ore","copper-ore","copper-ore","coal","coal","stone","uranium-ore","crude-oil","crude-oil"}
local function on_entity_died(event)
for _, fragment in pairs(biter_fragmentation) do
@ -865,13 +865,13 @@ local function on_player_joined_game(event)
local surface = game.surfaces["labyrinth"]
surface.create_entity {name="rock-big",position={16,-16}}
game.forces["player"].technologies["gun-turret-damage-1"].enabled = false
game.forces["player"].technologies["gun-turret-damage-2"].enabled = false
game.forces["player"].technologies["gun-turret-damage-3"].enabled = false
game.forces["player"].technologies["gun-turret-damage-4"].enabled = false
game.forces["player"].technologies["gun-turret-damage-5"].enabled = false
game.forces["player"].technologies["gun-turret-damage-6"].enabled = false
game.forces["player"].technologies["gun-turret-damage-7"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-1"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-2"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-3"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-4"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-5"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-6"].enabled = false
--game.forces["player"].technologies["gun-turret-damage-7"].enabled = false
game.forces["player"].technologies["artillery"].enabled = false
game.forces["player"].technologies["artillery-shell-range-1"].enabled = false
game.forces["player"].technologies["artillery-shell-speed-1"].enabled = false
@ -956,15 +956,59 @@ local function on_built_entity(event)
end
local name = event.created_entity.name
if name == "flamethrower-turret" or name == "laser-turret" then --or name == "gun-turret" then
if event.created_entity.position.y < 0 then
event.created_entity.die("enemy")
if name == "flamethrower-turret" or name == "laser-turret" then
if event.created_entity.position.y < 0 then
if event.player_index then
local player = game.players[event.player_index]
player.print("The laser and flamethrower-turrets seem to be malfunctioning in this place.", { r=0.75, g=0.0, b=0.0})
player.insert({name = name, count = 1})
event.created_entity.destroy()
if global.score then
if global.score[player.force.name] then
if global.score[player.force.name].players[player.name] then
global.score[player.force.name].players[player.name].built_entities = global.score[player.force.name].players[player.name].built_entities - 1
end
end
end
player.print("The device seems to be malfunctioning in this strange place.", { r=0.75, g=0.0, b=0.0})
else
if event.robot then
local inventory = event.robot.get_inventory(defines.inventory.robot_cargo)
inventory.insert({name = name, count = 1})
event.created_entity.destroy()
end
end
end
end
if name == "gun-turret" then
local surface = event.created_entity.surface
local amount_of_enemy_structures = surface.count_entities_filtered({
name = {"spitter-spawner", "biter-spawner"},
area = {{event.created_entity.position.x - 18, event.created_entity.position.y - 18},{event.created_entity.position.x + 18, event.created_entity.position.y + 18}},
force = "enemy",
limit = 1
})
if event.player_index and amount_of_enemy_structures > 0 then
local player = game.players[event.player_index]
player.insert({name = name, count = 1})
event.created_entity.destroy()
player.print("Their nests aura seems to deny the placement of any close turrets.", { r=0.75, g=0.0, b=0.0})
if global.score then
if global.score[player.force.name] then
if global.score[player.force.name].players[player.name] then
global.score[player.force.name].players[player.name].built_entities = global.score[player.force.name].players[player.name].built_entities - 1
end
end
end
end
if event.robot and amount_of_enemy_structures > 0 then
local inventory = event.robot.get_inventory(defines.inventory.robot_cargo)
inventory.insert({name = name, count = 1})
event.created_entity.destroy()
end
end
end
local function on_robot_built_entity(event)

View File

@ -1,3 +1,6 @@
0.02
anti-turret creep things
0.01
loot table adjustments
the dungeon inhabitants will now try to swarm to the entrance sometimes

View File

@ -1,5 +1,5 @@
local index = {
"AOIIDTHuoMlQBJXA","ArNWzzewJtdRTQAU","ArNWzzewJtYSbxVw","awVnVRSuqADCdknM","BHQiomIXQhnPFMHs","blkCUwDfFaRxezkA","BqcRSjhLlIOdsIlP","CKYAXOTPJxgSNaeW","EbwqvmZoqgHrSyOC","eiRpUIvqdcOFWIdU","eovuYGvdICGhruuU","FlbpolCxOxaAtNMz","fLMtzMznsDqIXbFN","GulVEIjwGWNTImOu","HNutzyofOVtNuOvP","htSwLZLpxtbMSHUO","hvUbLyrnWVMFABRJ","iIuKCDyFmUmVzdnc","IteEFsuWAluagVXC","jBRDEHGaFZmnykUw","jCeXUcOlkmidlqho","KaPOCYsqOBbNaDRC","LHNtPrSBwNNCVLMz","lktJcRqsleypbFqW","LMJoMYsVZEtTAvKV","luKQALEGvhHZXdxR","mgYClJnXWstAhfLj","MiMjXzIQbLpSTXys","MnWknygmdELnAISx","MYmwDgcTBIOgADTD","nZeNxyBRmHNhrZtT","OJqEjiAmMFSrOFpu","oLEbqRWtLyEakqGT","owXRLnxBcxrbhRzm","oYQcJazDfTUtymDW","PEVkYcsbVwnnKWKm","pFvIWAWWsePfBElD","pJHjzjDYzLZQnPVj","PKKYaQBjQpLfeWgw","PlMTdHTjDBDtSCvJ","psfeXNwMGoTEUrhN","qAUFndIMNmCtmNIO","qGobGeSKzsaCyYJh","QIkYkogxPgSGCQXj","QPQvnpOrYNbREqUK","qufbsuKhBEmgntSB","qZIGmkBOGbGUrzGQ","rJALXVwjKAnMJznl","rjNFCwIjneWQUpjs","RmApKqaHBnDdjlUf","RRzMmJCkQFXwwZew","rxjeHxajmMSyAEqb","sonUzzIipNQkliYN","sonUzzYwAOGdxzns","sZNdZrMifLLjFUSV","TMAqBbmApwnwVvQG","TmShmbuFESONUgSI","uJdpKOhSKsptqHtP","ULqnxPRoVXgYMnDb","vbatLuNmYKKogmDB","WCgQuhUYuvsSCxnF","WhOenYFcoIZoqyZo","WNmEbSNmtIdSWNAp","xFbpVDlWSNPmGqQf","XglImKgSiDPYNPjK","xrZowhiKIMhkAiak","yMCNBZngzItOTpyo","YmLSZPyWsIxPyzGq","ywGslLHXvtTTBWNX","zyBNDTHRfoqeDUnE"
"AOIIDTHuoMlQBJXA","ArNWzzewJtdRTQAU","ArNWzzewJtYSbxVw","awVnVRSuqADCdknM","BHQiomIXQhnPFMHs","blkCUwDfFaRxezkA","BqcRSjhLlIOdsIlP","CKYAXOTPJxgSNaeW","dAqsgLIPLDkEqSBi","dQCxupqGNIqHNceg","EbwqvmZoqgHrSyOC","eiRpUIvqdcOFWIdU","eovuYGvdICGhruuU","FlbpolCxOxaAtNMz","fLMtzMznsDqIXbFN","fNojOOMSMqbwxOAn","gTxHzrbtVyLsSqTi","GulVEIjwGWNTImOu","HLYUlNQPfoqBupDi","HNutzyofOVtNuOvP","htSwLZLpxtbMSHUO","hvUbLyrnWVMFABRJ","ieLqwpRZguflcVHH","iIuKCDyFmUmVzdnc","ikAkFGDXxcvfJeBW","ILxtSDyrdtGQgise","ILxtSDyrdtMumqaN","IteEFsuWAluagVXC","jBRDEHGaFZmnykUw","jCeXUcOlkmidlqho","KaPOCYsqOBbNaDRC","kViLFVoxesluYSZK","LAStRCpKptKRZwfU","LHNtPrSBwNNCVLMz","lktJcRqsleypbFqW","LMJoMYsVZEtTAvKV","lsgqmZxaYnnWZGBZ","luKQALEGvhHZXdxR","LUudWzpjBVolotmn","mgYClJnXWstAhfLj","MiMjXzIQbLpSTXys","MnWknygmdELnAISx","MYmwDgcTBIOgADTD","nZeNxyBRmHNhrZtT","NzwZAWAaBndofFpp","OJqEjiAmMFSrOFpu","oLEbqRWtLyEakqGT","owXRLnxBcxrbhRzm","oYQcJazDfTUtymDW","PEVkYcsbVwnnKWKm","pFvIWAWWsePfBElD","pJHjzjDYzLZQnPVj","PKKYaQBjQpLfeWgw","PlMTdHTjDBDtSCvJ","psfeXNwMGoTEUrhN","PsGsSFEhPClmIQJV","PXnmIrLFdyaSdxha","qAUFndIMNmCtmNIO","qGobGeSKzsaCyYJh","QIkYkogxPgSGCQXj","QPQvnpOrYNbREqUK","qufbsuKhBEmgntSB","qZIGmkBOGbGUrzGQ","rJALXVwjKAnMJznl","rjNFCwIjneWQUpjs","RmApKqaHBnDdjlUf","rMDBOkIMFvtyXKQi","RRzMmJCkQFXwwZew","rxjeHxajmMSyAEqb","sonUzzIipNQkliYN","sonUzzYwAOGdxzns","sZNdZrMifLLjFUSV","SzwdEtVwndaEmblo","TMAqBbmApwnwVvQG","TmShmbuFESONUgSI","uJdpKOhSKsptqHtP","ULqnxPRoVXgYMnDb","vbatLuNmYKKogmDB","VTzPAjnnuIhcGKlJ","VTzPVXTQnUKdpJoe","WCgQuhUYuvsSCxnF","WhOenYFcoIZoqyZo","WJWcmyBZHZuyEjbA","WNmEbSNmtIdSWNAp","WOcLFBMsrpZGrxWo","WWEUPIfcYFhNixIk","xFbpVDlWSNPmGqQf","XglImKgSiDPYNPjK","XMPGqOXzVzdGVBah","xrZowhiKIMhkAiak","XUEFbrOnlFHdgrUG","yMCNBZngzItOTpyo","YmLSZPyWsIxPyzGq","ywGslLHXvtTTBWNX","zJRzqnvotennfPfj","zyBNDTHRfoqeDUnE"
}
local data = {}

View File

@ -0,0 +1,59 @@
local playsession = {
{"mewmew", {588658}},
{"OKaukaski", {447812}},
{"RikSTAR3OOO", {60489}},
{"David_686", {1049521}},
{"xatabu_", {324074}},
{"Moistlos", {164041}},
{"Pandarnash", {164369}},
{"Serennie", {1111156}},
{"Rouden", {144162}},
{"adam1285", {471339}},
{"Loriangrei", {122833}},
{"zbirka", {2943}},
{"redlabel", {994586}},
{"jjs_112358", {272628}},
{"Tikos", {230424}},
{"Kyte", {511505}},
{"zarlo5899", {142427}},
{"CmdrVoid", {63483}},
{"JustBull", {6233}},
{"logansleg", {174174}},
{"chubbins", {3389}},
{"StormFalcon", {5985}},
{"Tamika", {748946}},
{"Death_Falcon", {421675}},
{"PanPyraPL", {523696}},
{"Arfloot", {8718}},
{"TryonHD", {4464}},
{"NoAndDot", {256068}},
{"Bemm", {116844}},
{"larshp", {2028}},
{"CheeseLord", {387960}},
{"Hitman451", {16819}},
{"nankinanki", {80146}},
{"ImAngry", {2423}},
{"Natty", {63654}},
{"074KU", {7305}},
{"huashengmaodou", {14268}},
{"GunnerWolf", {25667}},
{"Posicoln", {328745}},
{"anonymous12123", {24091}},
{"dorisig", {3090}},
{"22TwentyTwo", {20975}},
{"XaLpHa1989", {192439}},
{"Kno", {193042}},
{"ausmister", {178147}},
{"Howolf", {45548}},
{"vvictor", {157253}},
{"Kokori", {77872}},
{"matthew1206", {18556}},
{"Lodoss", {29527}},
{"Vainock", {2040}},
{"zarduhasselfrau", {88846}},
{"jumjac", {14129}},
{"matjojo", {63763}},
{"undefinable", {7060}},
{"Dinnopum", {37409}}
}
return playsession

View File

@ -32,6 +32,7 @@ local playsession = {
{"DuelleuD", {35821}},
{"flooxy", {5082}},
{"corbin9228", {1549}},
{"PoPiSowy", {23785}}
{"PoPiSowy", {383785}},
{"Malarthyn", {90876}}
}
return playsession

View File

@ -0,0 +1,66 @@
local playsession = {
{"Gerkiz", {991705}},
{"KeyJoo", {1108729}},
{"snoetje", {299127}},
{"pickles28", {110400}},
{"Elrael", {1086023}},
{"Sigor", {1052241}},
{"mikeholmes", {2879}},
{"ratboyboxshall", {213}},
{"NTB", {5771}},
{"mastah_mind", {968239}},
{"DiMakss", {3736}},
{"OgrWar", {12336}},
{"redlabel", {944291}},
{"Duchesko", {32065}},
{"DoneLeone", {5604}},
{"Headscrew", {6300}},
{"Ardordo", {19597}},
{"asaruto3308", {2841}},
{"Carpet_Ice", {1586}},
{"LastCallAgain", {371870}},
{"mewmew", {156168}},
{"everLord", {623204}},
{"Julian1109", {1676}},
{"manclaouss", {1130}},
{"Nikkichu", {428629}},
{"Olekplane1", {554794}},
{"jagger23", {158945}},
{"raskl", {7307}},
{"nizzy", {89128}},
{"LouCyphre", {78852}},
{"alexbw", {531963}},
{"puuupedis", {72576}},
{"dudisek70", {11199}},
{"gebba4", {25407}},
{"facere", {467939}},
{"rbirk", {1891}},
{"nik12111", {3309}},
{"Lokhas1", {8094}},
{"sottaro", {10638}},
{"ralphmace", {171070}},
{"JohnGamer123", {64689}},
{"garewin", {5113}},
{"labyrinth2430", {51759}},
{"fabilord98", {332398}},
{"Ronin114", {14216}},
{"dmitrymk", {7785}},
{"matchesmat", {2511}},
{"Garsaf", {49632}},
{"Randall172", {246426}},
{"timtoady", {3750}},
{"my_saw", {895}},
{"MafungoLoud", {59105}},
{"Leon55", {8642}},
{"gscdae", {2507}},
{"RebuffedBrute44", {7187}},
{"Serennie", {16610}},
{"RussMartix", {3840}},
{"Demochi", {3681}},
{"Zorzzz", {130494}},
{"NikolaB131", {26975}},
{"FireLeaf", {9845}},
{"sto0rmy", {71093}},
{"seirjgkemn", {6501}}
}
return playsession

View File

@ -0,0 +1,9 @@
local playsession = {
{"Gerkiz", {143902}},
{"snoetje", {172847}},
{"KeyJoo", {172540}},
{"vligz", {120486}},
{"smiddazz", {1609}},
{"pickles28", {22814}}
}
return playsession

View File

@ -0,0 +1,11 @@
local playsession = {
{"mewmew", {206236}},
{"Plawerth", {6004}},
{"GreySintax", {164913}},
{"fairlytear", {227822}},
{"MaxMM", {92002}},
{"Hyloicus", {7951}},
{"LaChancla", {2723}},
{"Naverin", {68534}}
}
return playsession

View File

@ -0,0 +1,7 @@
local playsession = {
{"Gerkiz", {8386}},
{"sossololpipi", {4533}},
{"KeyJoo", {164453}},
{"snoetje", {156463}}
}
return playsession

View File

@ -0,0 +1,16 @@
local playsession = {
{"mewmew", {26034}},
{"matthew1206", {27822}},
{"074KU", {17381}},
{"___Ohr___", {1953}},
{"DaRai86", {10452}},
{"Jumbledragon", {5149}},
{"Death_Falcon", {2632}},
{"Sholvo", {2466}},
{"zbirka", {1682}},
{"zarduhasselfrau", {7022}},
{"OKaukaski", {19647}},
{"UTIDI", {2362}},
{"abrown4521", {2123}}
}
return playsession

View File

@ -0,0 +1,104 @@
local playsession = {
{"Gerkiz", {200818}},
{"GoldFalcon9", {134715}},
{"mewmew", {653174}},
{"Grabi", {249258}},
{"iSTEVE", {707064}},
{"mouriis", {504541}},
{"AUSTIN11", {2359}},
{"thislsamerica", {276120}},
{"ristvaken", {1342}},
{"Brender", {14867}},
{"Morgan3rd", {618155}},
{"davynero11", {63937}},
{"Factorian12321", {13617}},
{"noafro1991", {821038}},
{"itinker", {63293}},
{"Dofolo", {373109}},
{"TrojanEnder", {178591}},
{"Naverin", {10772}},
{"dorpdorp", {2028270}},
{"Dysonhive", {1243039}},
{"3615-Motiok", {567174}},
{"MuddledBox", {89539}},
{"123", {936}},
{"adieclay", {170896}},
{"ScubaSteveTM", {1081571}},
{"Serennie", {293283}},
{"cpenguinred", {19704}},
{"phischphood", {299114}},
{"numberoverzero", {910400}},
{"Hanakocz", {26845}},
{"andrewrigney1", {16340}},
{"Piewdennis", {499888}},
{"SuddenDeathMP", {583140}},
{"tmoneyfizzle", {825600}},
{"Xoxlohunter", {205489}},
{"bdgray02", {1048657}},
{"Shinhan", {43964}},
{"Bemm", {599832}},
{"alexgpx", {102980}},
{"Tharax", {10404}},
{"Apocalypticoreo", {8028}},
{"arsindex", {32317}},
{"helic99", {1492394}},
{"mmort97", {34734}},
{"realDonaldTrump", {1386827}},
{"JinNJuice", {1256070}},
{"misaelfer", {19583}},
{"Tesslapoop", {880032}},
{"Sirnumnum", {876081}},
{"SubVision", {9160}},
{"dexcruz", {783491}},
{"Thuro", {3403}},
{"linzefeng", {38646}},
{"Geurpity", {5628}},
{"bogg19", {153353}},
{"therv", {6099}},
{"Applejax", {9074}},
{"Merc_Plays", {16956}},
{"Velguarder", {260556}},
{"KSolo", {28560}},
{"Jake4159", {1153155}},
{"fishguts", {34803}},
{"Sividen", {119700}},
{"shammu", {111313}},
{"Conor0709", {126473}},
{"Wiedrock", {22566}},
{"Gh0sty", {944766}},
{"poupotte", {6316}},
{"Achskelmos", {40057}},
{"BigDoinks1551", {3507}},
{"Hurrock", {249111}},
{"CorReqT", {3686}},
{"jaymik", {207853}},
{"greenstarwars04", {578126}},
{"sukram72", {3053}},
{"ultrajer", {577324}},
{"TeZwo", {360857}},
{"Vinn86", {36014}},
{"XaLpHa1989", {167130}},
{"CrayRabbit", {269800}},
{"corbin9228", {733807}},
{"justgotpayed", {42158}},
{"Consult", {250488}},
{"Boppolopian", {76111}},
{"Ranami", {480025}},
{"Apra24", {538}},
{"CustomSocks", {227409}},
{"Beetle426", {382414}},
{"dog80", {25261}},
{"TheThane", {44119}},
{"ajicurry", {225792}},
{"jaxjace", {12731}},
{"moocat12", {74270}},
{"ChinaNumba1", {149561}},
{"McBrococks", {64152}},
{"Plawerth", {93379}},
{"dcinamon", {16991}},
{"mugscraft", {8105}},
{"Devildog", {34575}},
{"therealCellczar", {2590}},
{"CptJohnMiller", {1954}}
}
return playsession

View File

@ -0,0 +1,8 @@
local playsession = {
{"mewmew", {107966}},
{"JC1223", {93261}},
{"dasocks", {85784}},
{"Kno", {61451}},
{"Conan_Doyil", {8529}}
}
return playsession

View File

@ -0,0 +1,5 @@
local playsession = {
{"Gerkiz", {6973}},
{"realDonaldTrump", {64898}}
}
return playsession

View File

@ -0,0 +1,11 @@
local playsession = {
{"Gerkiz", {6862}},
{"Vancleave", {3719}},
{"dog80", {41993}},
{"Consult", {2898}},
{"SpikeLGWG", {49277}},
{"realDonaldTrump", {120931}},
{"moocat12", {86895}},
{"Darkmenik", {23792}}
}
return playsession

View File

@ -0,0 +1,51 @@
local playsession = {
{"Gerkiz", {213044}},
{"mcdj23_", {3418}},
{"Malorie_sXy", {1890}},
{"everLord", {734530}},
{"Revar", {967}},
{"snoetje", {74469}},
{"scotty2586", {14392}},
{"Nikkichu", {918098}},
{"Sigor", {1120}},
{"maxxcz", {654}},
{"Ardordo", {462080}},
{"Atoms", {4760}},
{"miki2w", {190247}},
{"Derp-Kun", {63820}},
{"Avelix", {186535}},
{"inside999", {6478}},
{"Hiero", {1087035}},
{"Ruuyji", {9992}},
{"jaja56", {6055}},
{"kaimix", {667635}},
{"iSTEVE", {93420}},
{"Ubilaz", {448841}},
{"Snako", {140495}},
{"manul", {48211}},
{"TCP", {573187}},
{"FireLeaf", {465817}},
{"Skybreaker", {429969}},
{"Nibbles7", {27102}},
{"vvictor", {519854}},
{"ghastly_figure", {5108}},
{"Thats-Kewl", {44778}},
{"Gorganus", {828061}},
{"hasannuh", {307037}},
{"OllieZ_10", {87673}},
{"realDonaldTrump", {557209}},
{"zzzabiss", {3163}},
{"Connor15_", {1801}},
{"kevinma", {119909}},
{"Naverin", {156002}},
{"ksb4145", {126741}},
{"Lithidoria", {18548}},
{"Churchoo", {20040}},
{"Guitoune", {11634}},
{"TheElvenGamer", {374854}},
{"Makan", {3416}},
{"SpikeLGWG", {252685}},
{"mfreyno", {2581}},
{"UnfortunatePotato", {102531}}
}
return playsession

View File

@ -0,0 +1,225 @@
local playsession = {
{"mewmew", {731433}},
{"PoPiSowy", {7181}},
{"dimdro", {6599}},
{"Cheeseftw", {1744460}},
{"floxys", {169297}},
{"samsoon", {1444}},
{"redlabel", {6125002}},
{"Danzou", {274084}},
{"Gerkiz", {144872}},
{"nik12111", {512094}},
{"Quadrum", {2796}},
{"mh", {419604}},
{"brancanes", {973381}},
{"OgrWar", {4558}},
{"pendo20", {243949}},
{"123", {177171}},
{"Kritus", {7495}},
{"Sarkani", {381620}},
{"JJDude1205", {27781}},
{"SwampD0nkey", {2017}},
{"zbirka", {167636}},
{"Abstracter", {1537}},
{"KatanaKiwi", {1268845}},
{"snowbranch", {63012}},
{"Duchesko", {3057}},
{"KanedaNLD", {507719}},
{"ycep", {1046318}},
{"Polonium8400", {2471}},
{"Headscrew", {7702}},
{"Caosdkk", {4763466}},
{"valakee", {1731060}},
{"MaeDeath", {1623948}},
{"SMikiS", {150869}},
{"Rentaboy", {171999}},
{"Hobbes24", {3166}},
{"garewin", {10504063}},
{"seirjgkemn", {2361328}},
{"urss2", {961171}},
{"tmoneyfizzle", {13698}},
{"MrTea", {88726}},
{"flooxy", {542564}},
{"Carpet_Ice", {43062}},
{"RedPandaRam", {374005}},
{"elMoskvin", {4067}},
{"chris123", {9435685}},
{"corbin9228", {4515511}},
{"Aeropagus", {524409}},
{"Dinnopum", {5531}},
{"Revaliz", {2067}},
{"snoetje", {27454}},
{"Bunchofrocks", {459432}},
{"HighInFiberOptics", {7169}},
{"cpenguinred", {124162}},
{"Clevlore", {991864}},
{"novastone", {5396}},
{"edensg", {183669}},
{"abrown4521", {397530}},
{"Thuro", {58569}},
{"Biker", {1615}},
{"Akhrem", {1033}},
{"MrBokchoy", {396305}},
{"thaurond", {33101}},
{"pickles28", {105825}},
{"Esperiom", {4582833}},
{"abcrate", {430164}},
{"r3m0t", {71439}},
{"muchbetter321", {1991157}},
{"I_dream_of_corn", {2502}},
{"FreezeHun", {32837}},
{"Legoavenger14004", {202041}},
{"maate", {685040}},
{"Merc_Plays", {2233}},
{"MeggalBozale", {88997}},
{"Tavidz", {57213}},
{"ristvaken", {4330}},
{"KSolo", {156332}},
{"camcam1o", {1004274}},
{"Dinodaman", {8518}},
{"qwe416416", {18634}},
{"Paulot", {3349}},
{"ponderer1", {269089}},
{"CmdrRat", {2295180}},
{"Powerpanda0", {814151}},
{"Fantagma", {252892}},
{"Star_Gate101", {12946}},
{"Acruid", {5115}},
{"Devildog", {704753}},
{"lazerandy", {9630}},
{"mcdj23_", {188948}},
{"mimmfantry", {2681}},
{"mr__meeseeks", {6591}},
{"denisc", {4394}},
{"ksb4145", {40367}},
{"murphdeboss", {2244}},
{"KeyJoo", {4291373}},
{"ostrich1", {36112}},
{"bdgray02", {73563}},
{"Alyssix", {130309}},
{"MaxMM", {213410}},
{"KYroPaTKa862", {188647}},
{"Shorty22", {8460}},
{"Zorzzz", {1813357}},
{"SubVision", {27915}},
{"jaxjace", {118457}},
{"Simplerules", {693202}},
{"beranabus", {37825}},
{"Scuideie-Guy", {1379851}},
{"mattmerr47", {9243}},
{"OmegaLunch", {171672}},
{"chrisisthebe", {2550381}},
{"pierre1316", {528743}},
{"Beastall", {24757}},
{"Teawa", {23412}},
{"arsindex", {27907}},
{"Renekrause", {1265676}},
{"MassUltraGaming", {55984}},
{"everLord", {222446}},
{"Fatpony", {553717}},
{"source_KOT", {440849}},
{"xiaoqiu371", {8979}},
{"Skybreaker", {7552}},
{"SpikeLGWG", {198815}},
{"123", {177171}},
{"Aldnoah5566", {440315}},
{"Eriksonn", {87518}},
{"RebuffedBrute44", {45603}},
{"Joriafan", {10028}},
{"monrostar", {34641}},
{"sobitome", {12723}},
{"vedolv", {663688}},
{"Giatros", {288940}},
{"eeswin", {6586}},
{"itsJeras", {16529}},
{"NetherGranite", {10734}},
{"LymBAOBEI", {462773}},
{"Cisson96", {106434}},
{"Derwitze", {868757}},
{"musa3299", {1196}},
{"Catbert", {16010}},
{"ming253", {22410}},
{"Hamidox", {1730}},
{"rorror", {42687}},
{"Rouden", {11423}},
{"miki2w", {6405}},
{"StaffOrd", {10931}},
{"WalrusLeader", {8027}},
{"dinotromba", {8428711}},
{"Snako", {129199}},
{"heardofsnails", {4871}},
{"decrecondiz", {4421}},
{"die_ott", {930089}},
{"MeHighTheGod", {5414}},
{"Denhin", {6456}},
{"igorkrim86", {19288}},
{"Unahzaal", {20291}},
{"zzzabiss", {8466}},
{"Polakmag", {16352}},
{"14DohertyJ", {181902}},
{"mfreyno", {13951}},
{"Lodoss", {749503}},
{"Animade", {1612398}},
{"antropod", {7080}},
{"Teddybeer525", {1211}},
{"timeslider86", {43029}},
{"fenderpuddy", {1170}},
{"Jaydee77472", {1790}},
{"Spaceman-Spiff", {1696}},
{"Godninja97", {1368696}},
{"CrusaderDeleters", {11470}},
{"mugscraft", {253332}},
{"AtomicCraft5", {55703}},
{"halpenny911", {948520}},
{"threefoldmind", {52071}},
{"TakiJanusz", {4610}},
{"918185898", {32823}},
{"TheRealBert", {17453}},
{"McBrococks", {94148}},
{"kepekliekmek", {673750}},
{"Sparhawk87", {4904}},
{"Fabio23", {21249}},
{"alvarofm", {32913}},
{"Taulas", {15503}},
{"CTN", {18861}},
{"Freister", {32971}},
{"BlackFireHealer", {74815}},
{"UTIDI", {133885}},
{"4yBAK", {2132491}},
{"drill95", {5873}},
{"123456z0", {4479}},
{"KickoKicko", {21462}},
{"dima971", {463435}},
{"EPO666", {10055}},
{"brfbrf", {70758}},
{"aledeludx", {723891}},
{"Dofolo", {162404}},
{"thefiregecko", {75363}},
{"Sapik", {51527}},
{"Kazzlan", {911}},
{"BearMcCreary", {13069}},
{"profoundchief", {278052}},
{"Wilk_680", {254354}},
{"Factorian12321", {134379}},
{"Wiedrock", {53816}},
{"hukahile", {4435}},
{"JoaoPinga", {1550837}},
{"thislsamerica", {11769}},
{"Brender", {801}},
{"jogabonito", {7645}},
{"Jaskarox", {12153}},
{"crystalspider37", {590710}},
{"brendantv", {172985}},
{"ScubaSteveTM", {41792}},
{"KevinoFactorioBoi", {5154}},
{"SteamPunker", {4771}},
{"CorReqT", {244476}},
{"PogomanD", {5086}},
{"steelhero", {292060}},
{"SilentLog", {392643}},
{"Applejax", {10539}},
{"Consult", {7202}},
{"fuzzytonic", {118003}},
{"oneNonlyBennett", {7594}}
}
return playsession

View File

@ -0,0 +1,75 @@
local playsession = {
{"Gerkiz", {202277}},
{"snoetje", {366120}},
{"mewmew", {169149}},
{"jobaxter", {123859}},
{"dzentak", {891982}},
{"Ardordo", {553558}},
{"vad7ik", {453743}},
{"everLord", {483888}},
{"Mullacs", {886156}},
{"a.l.f.a", {123439}},
{"RebuffedBrute44", {850917}},
{"GummiVulture", {12288}},
{"adieclay", {460868}},
{"whollyspokes", {721196}},
{"Corlin", {146914}},
{"l_Diego_l", {70466}},
{"stinkypower96", {100089}},
{"dasocks", {813170}},
{"Nikkichu", {164243}},
{"Hiero", {551323}},
{"helpower2", {37745}},
{"datadrian", {659953}},
{"Piewdennis", {8580}},
{"maxxcz", {763451}},
{"pY4x3g", {37079}},
{"Creator_Zhang", {29914}},
{"clemeh", {139010}},
{"Bouhkan", {231567}},
{"Fakeshka", {51646}},
{"Gwaihir", {7915}},
{"Paulot", {703373}},
{"matthew1206", {489966}},
{"foggyliziouz", {559381}},
{"tmoneyfizzle", {3558}},
{"RedPandaRam", {58785}},
{"LordDanielthe", {2419}},
{"MrTea", {3156}},
{"dog80", {69565}},
{"BlackstorM96", {1435}},
{"Lazeroth", {6867}},
{"mzore", {637816}},
{"pigwithtach", {3069}},
{"Aeropagus", {204}},
{"Arhimedis", {4558}},
{"Connor15_", {456673}},
{"Dinnopum", {509614}},
{"lone-pine", {537236}},
{"alexbw", {400615}},
{"makuli", {409028}},
{"elMoskvin", {11085}},
{"m4a2000", {188420}},
{"Catbert", {2000}},
{"storz676", {2747}},
{"R26", {21023}},
{"pickles28", {39849}},
{"ClassAction", {297994}},
{"Hugoo", {7995}},
{"ZTX", {341701}},
{"Serennie", {117444}},
{"edensg", {8585}},
{"MooLer", {267759}},
{"scotty2586", {325044}},
{"Specks", {8852}},
{"War_Kittehs", {231110}},
{"Xolas", {162620}},
{"epic_leaf", {24831}},
{"danyal_knights", {175227}},
{"Auzzy08", {7199}},
{"aledeludx", {210}},
{"gamerkidgp2014", {42540}},
{"realDonaldTrump", {63532}},
{"thislsamerica", {6225}}
}
return playsession

View File

@ -0,0 +1,9 @@
local playsession = {
{"mewmew", {41204}},
{"Achskelmos", {69822}},
{"mcdj23_", {16695}},
{"jaxjace", {33462}},
{"RichardMNixon", {32477}},
{"brandon1311", {30010}}
}
return playsession

View File

@ -0,0 +1,10 @@
local playsession = {
{"mewmew", {324}},
{"JC1223", {16659}},
{"mugscraft", {9043}},
{"Malorie_sXy", {2604}},
{"cronex", {103464}},
{"Naverin", {83078}},
{"mr__meeseeks", {30773}}
}
return playsession

View File

@ -0,0 +1,216 @@
local playsession = {
{"Gerkiz", {115741}},
{"redlabel", {3762825}},
{"beranabus", {191297}},
{"Quadrum", {912924}},
{"zbirka", {768767}},
{"Krengrus", {8077}},
{"Wanzek", {60203}},
{"namornicek", {711429}},
{"SMikiS", {523501}},
{"Progman", {10300}},
{"peggeleg", {2015}},
{"Zaidkah", {78713}},
{"Moomar101", {7521}},
{"zwierzak40", {131323}},
{"everLord", {1141728}},
{"the_survivor200", {37943}},
{"rlidwka", {38541}},
{"raskl", {111789}},
{"die_ott", {1568}},
{"numberoverzero", {349688}},
{"dorpdorp", {381452}},
{"snowbranch", {3066}},
{"chris123", {1624124}},
{"mishso", {13178}},
{"Dapandi", {33959}},
{"Fraserbaser", {105669}},
{"Cheeseftw", {1366166}},
{"AcidWizard", {603125}},
{"ratboyboxshall", {3062}},
{"UnfortunatePotato", {1060313}},
{"nankinanki", {131740}},
{"GreySintax", {57115}},
{"Thorgal", {693320}},
{"ailishi19", {548617}},
{"diamondback", {9321}},
{"jagger23", {184172}},
{"Piragric", {9462}},
{"vonlam999", {293222}},
{"Lightiix", {39149}},
{"nizzy", {288280}},
{"Spaceman-Spiff", {899746}},
{"wourlack", {111190}},
{"SubVision", {26332}},
{"KatanaKiwi", {210419}},
{"TheNetworkDoctor", {1177450}},
{"LymBAOBEI", {2039}},
{"StormMA", {1458}},
{"Akhrem", {83944}},
{"xavpicgames", {108387}},
{"Bryce940", {8020}},
{"RubyRhod", {303095}},
{"PTP17", {3250}},
{"2716057", {200182}},
{"Xolas", {423661}},
{"___Ohr___", {455879}},
{"flooxy", {7315}},
{"BirdOnAWire", {53257}},
{"Schallfalke", {72243}},
{"ManuelG", {93476}},
{"CustomSocks", {460101}},
{"SLQ", {178680}},
{"itinker", {28089}},
{"vad7ik", {6304}},
{"Mnayk", {17758}},
{"Dinnopum", {10175}},
{"Naquada", {3106}},
{"Absolution", {676329}},
{"loonytyler", {14087}},
{"EmperorTrump", {19427}},
{"TheAnom", {69785}},
{"gedux1998", {11404}},
{"Lodoss", {10943}},
{"Kildeor", {26938}},
{"StarLite", {127998}},
{"MojoDallin", {215003}},
{"Kyte", {12098}},
{"Bootloops", {690019}},
{"crazydemon15", {677934}},
{"abcrate", {483672}},
{"Xeter", {355830}},
{"UTIDI", {6545}},
{"jershell", {12887}},
{"natrocore", {12488}},
{"Greatly", {2769}},
{"Aeropagus", {1615}},
{"Biker", {7318}},
{"Evandot", {59410}},
{"sangwoonjeon", {53382}},
{"SuddenDeathMP", {10273}},
{"Konopak", {218060}},
{"XaLpHa1989", {642470}},
{"Kroppeb", {546159}},
{"c1eave", {10576}},
{"MadPeakyBlinder", {10516}},
{"cronex", {87259}},
{"Purgen", {17744}},
{"halpenny911", {524922}},
{"watAIRman", {410466}},
{"Orib0ck", {92228}},
{"Yoannbla", {58666}},
{"BranderoS", {4203}},
{"Nikkichu", {1864}},
{"melanchthon", {594569}},
{"ti_mo_n", {418161}},
{"Ironhand", {84192}},
{"MooLer", {21112}},
{"Bering-Sierra", {173779}},
{"betrayb3", {1789179}},
{"Greifenstein", {276856}},
{"BluJester", {58607}},
{"Cramly", {292951}},
{"bhenoa", {23701}},
{"14nickel", {10271}},
{"Ethan1997", {35463}},
{"Jjuj", {96347}},
{"Westiewood", {4983}},
{"xh2012", {11982}},
{"Ardordo", {2913}},
{"Hurrock", {409280}},
{"braveheart4321", {24483}},
{"box", {27933}},
{"mrc5507", {14557}},
{"Revar", {3608}},
{"JinNJuice", {325355}},
{"marklinCZ", {37916}},
{"Camo5", {6377}},
{"ZTX", {153667}},
{"HardcoreRocco", {11362}},
{"serial-eater", {7372}},
{"D0pex", {67852}},
{"Unrealrules", {7800}},
{"ultrajer", {188124}},
{"thislsamerica", {8454}},
{"kakonel", {6938}},
{"skykittena", {461422}},
{"Lazman12", {212773}},
{"Delqvs", {142996}},
{"falcon1209", {16017}},
{"cakemancerr", {7877}},
{"nik12111", {26729}},
{"Bbeary10", {10584}},
{"RichardMNixon", {6031}},
{"slothman0383", {60317}},
{"MdRuz", {208209}},
{"BlueRock", {3940627}},
{"datadrian", {196192}},
{"MafungoLoud", {1095}},
{"pickles28", {49919}},
{"brandon1311", {386756}},
{"814986711", {14675}},
{"onyxinsanity", {5671}},
{"chromaddict", {19237}},
{"Bernd1101", {1281}},
{"KSolo", {6066}},
{"pendo20", {6846}},
{"3061867813", {489477}},
{"ristvaken", {20781}},
{"ColonelWill", {6320}},
{"Tyber117", {44969}},
{"mugscraft", {6819}},
{"waifuct", {3797}},
{"Taint_Puncher", {4180}},
{"hsxu", {2862}},
{"anmao1", {113797}},
{"sage307", {2340}},
{"improvshark", {16374}},
{"mobieh22", {6957}},
{"NewRemote", {14282}},
{"owenjchafer", {227370}},
{"hellden", {588507}},
{"SwampD0nkey", {16847}},
{"SpaceLordBE", {145036}},
{"edensg", {1368491}},
{"corbin9228", {8376}},
{"OmegaLunch", {5226}},
{"mihonaoki", {8570}},
{"TheOrangeAngle", {134663}},
{"I_dream_of_corn", {2724}},
{"tromboninja", {574031}},
{"Factorian12321", {6065}},
{"AnotherPerspective", {1152}},
{"Azimo", {20055}},
{"skylarmb", {187131}},
{"MegaNoob", {8183}},
{"SewnSmiles", {30400}},
{"Fireball_Whiskey", {23063}},
{"Revaliz", {8403}},
{"zeezee", {22372}},
{"MOXWOLL", {16546}},
{"ksb4145", {92686}},
{"Malarthyn", {6733}},
{"Death_Falcon", {7369}},
{"PIGLEG99", {3417}},
{"SepticSalmon", {4401}},
{"Darcanis", {22735}},
{"vvictor", {4099}},
{"TygrAsijsky", {1900}},
{"Serennie", {217124}},
{"simmo9810", {216511}},
{"working.worker", {100851}},
{"HackDamonius", {62280}},
{"highway1027", {5105}},
{"MaxMM", {15672}},
{"Linaori", {11533}},
{"zsintai1987", {6680}},
{"jer93", {44131}},
{"crusher_sut", {13750}},
{"denspb", {32902}},
{"Ohyeah", {47893}},
{"strutter18", {3341}},
{"Eugene38ru", {1085}},
{"Hitman451", {31716}},
{"mexicanninja", {20490}}
}
return playsession

View File

@ -1,23 +1,23 @@
local playsession = {
{"Gerkiz", {230520}},
{"vedolv", {51072}},
{"RikSTAR3OOO", {1372238}},
{"RikSTAR3OOO", {2497515}},
{"Quadrum", {676800}},
{"alen1245", {509535}},
{"Hanakocz", {943972}},
{"robot3331", {4440}},
{"Revaliz", {32733}},
{"Digzol", {543926}},
{"PoPiSowy", {90890}},
{"Dofolo", {75737}},
{"Krezal", {277122}},
{"PoPiSowy", {94187}},
{"Dofolo", {101551}},
{"Krezal", {1367834}},
{"Thex2001", {1577}},
{"TheWickedMaster", {62969}},
{"ETK03", {403668}},
{"anonymous12123", {3865}},
{"Snowdreamz", {235329}},
{"badbeachboy", {2954}},
{"mcdj23_", {348029}},
{"mcdj23_", {1044253}},
{"Ardordo", {3006}},
{"StarLite", {2302}},
{"dog80", {405116}},
@ -33,7 +33,7 @@ local playsession = {
{"Kevin_Ar18", {1026517}},
{"skub", {968599}},
{"Popzi", {24803}},
{"Bootloops", {1109197}},
{"Bootloops", {1433682}},
{"cronex", {31945}},
{"xsopek", {58270}},
{"Flashbacks", {9520}},
@ -50,9 +50,9 @@ local playsession = {
{"thislsamerica", {5060}},
{"DagNuggets", {57220}},
{"KatanaKiwi", {13971}},
{"garewin", {1030793}},
{"garewin", {1467885}},
{"brandon1311", {760585}},
{"Viclima", {1026255}},
{"Viclima", {3618255}},
{"nix0n", {9555}},
{"Bulearab", {464354}},
{"Unrealrules", {15017}},
@ -68,15 +68,15 @@ local playsession = {
{"Grooohm", {11772}},
{"Vytas69", {26309}},
{"joe9go", {103009}},
{"pickles28", {799930}},
{"pickles28", {1995214}},
{"Gwyndolin", {14477}},
{"ronky", {52121}},
{"Mkirby9674", {741612}},
{"Mkirby9674", {2259419}},
{"skykittena", {709333}},
{"AwesomePopsicle", {7089}},
{"MaricTheTrader", {453617}},
{"MontrealCrook", {55193}},
{"Achskelmos", {656722}},
{"Achskelmos", {1769608}},
{"Cheeseftw", {1282}},
{"skylarmb", {403118}},
{"DrakBehr", {8046}},
@ -89,7 +89,7 @@ local playsession = {
{"thederpyloco", {15951}},
{"scifitoga", {4769}},
{"smugsquare", {124800}},
{"Acruid", {510046}},
{"Acruid", {1105865}},
{"sonopard", {300592}},
{"roosterbrewster", {24716}},
{"edensg", {45592}},
@ -113,9 +113,42 @@ local playsession = {
{"zarduhasselfrau", {66896}},
{"aalexx", {45925}},
{"jer93", {12072}},
{"IsThisNameTakenAlready", {101729}},
{"mewmew", {82931}},
{"IsThisNameTakenAlready", {429251}},
{"mewmew", {85222}},
{"Morgan3rd", {8475}},
{"LymBAOBEI", {10846}}
{"LymBAOBEI", {10846}},
{"InphinitePhractals", {20969}},
{"Bryce940", {3106}},
{"Siether", {3178}},
{"KingKp", {11917}},
{"betrayb3", {6261}},
{"Troubletime", {54229}},
{"ManuelG", {13482}},
{"Demonites", {334302}},
{"169p", {10733}},
{"jrad", {9070}},
{"kelanel", {187102}},
{"Spocks", {244987}},
{"arsindex", {8192}},
{"SillyAsriel", {9576}},
{"cinzhal", {61745}},
{"emilquast", {121639}},
{"EPO666", {715020}},
{"Bonzai525", {66254}},
{"drill95", {200366}},
{"nodice1982", {16237}},
{"nankinanki", {230559}},
{"krishan43", {44141}},
{"Knorki", {10963}},
{"Rvl", {12648}},
{"mxdam", {6871}},
{"donperry", {5063}},
{"NoGames", {385561}},
{"TheKiller101555", {3912}},
{"Catbert", {5672}},
{"Chappa", {19409}},
{"wehtran", {5951}},
{"rellec", {4447}},
{"OllieZ_10", {85693}}
}
return playsession

View File

@ -0,0 +1,11 @@
local playsession = {
{"mewmew", {76636}},
{"Giatros", {50823}},
{"zbirka", {637}},
{"aledeludx", {51595}},
{"AcidWizard", {38533}},
{"Dinnopum", {859}},
{"Howolf", {2358}},
{"Arin", {4733}}
}
return playsession

View File

@ -0,0 +1,11 @@
local playsession = {
{"mewmew", {71963}},
{"corbin9228", {57687}},
{"Godninja97", {68195}},
{"0clouddrop", {25649}},
{"numberoverzero", {15072}},
{"Spaceman-Spiff", {1225}},
{"Macstyyy6", {3584}},
{"mr__meeseeks", {910}}
}
return playsession

View File

@ -1,15 +1,15 @@
local playsession = {
{"mewmew", {3128678}},
{"Serennie", {2545357}},
{"mewmew", {3131290}},
{"Serennie", {2983568}},
{"OKaukaski", {1907430}},
{"matjojo", {659459}},
{"grilledham", {12939}},
{"banakeg", {399911}},
{"Dinnopum", {1721804}},
{"Dinnopum", {1938796}},
{"dorpdorp", {2164777}},
{"manclaouss", {1014147}},
{"Achskelmos", {2819537}},
{"raskl", {13468}},
{"Achskelmos", {3403253}},
{"raskl", {29171}},
{"ratboyboxshall", {7560}},
{"szyc", {3909}},
{"ninjayeti", {226264}},
@ -21,15 +21,15 @@ local playsession = {
{"ausmister", {644165}},
{"matthew1206", {998222}},
{"Cramly", {257354}},
{"nik12111", {158021}},
{"nik12111", {187720}},
{"XaLpHa1989", {1708659}},
{"adam1285", {78712}},
{"MrTea", {68773}},
{"Sjetil", {112145}},
{"SuddenDeathMP", {660421}},
{"JJDude1205", {367952}},
{"Bunchofrocks", {817324}},
{"jobaxter", {1342027}},
{"Bunchofrocks", {1681324}},
{"jobaxter", {1355249}},
{"Wanzek", {148625}},
{"andrewrigney1", {51855}},
{"trogdorguy", {114089}},
@ -39,7 +39,7 @@ local playsession = {
{"Malorie_sXy", {1059816}},
{"Julian1109", {88072}},
{"Lukasecicek", {3724}},
{"Godninja97", {3761206}},
{"Godninja97", {4383442}},
{"Thantanos", {224225}},
{"ailishi19", {112605}},
{"bigos91", {1267542}},
@ -48,7 +48,7 @@ local playsession = {
{"timtoady", {2452}},
{"youlinglc", {5773}},
{"Corlin", {1125063}},
{"Thorgal", {482350}},
{"Thorgal", {497254}},
{"Asharian", {901519}},
{"Malarthyn", {327721}},
{"lamblotion", {1414}},
@ -64,14 +64,14 @@ local playsession = {
{"thederpyloco", {59090}},
{"hellden", {11229}},
{"Powerpanda0", {2588664}},
{"MojoDallin", {1037397}},
{"MojoDallin", {1398962}},
{"mulark", {1693}},
{"I_dream_of_corn", {5244}},
{"Drlloyd1337", {133371}},
{"nuci", {306392}},
{"brancanes", {50850}},
{"15802602384", {9554}},
{"Doctor9", {741996}},
{"Doctor9", {784878}},
{"Rymoxis", {510309}},
{"settan", {405380}},
{"Nikkichu", {298127}},
@ -100,7 +100,7 @@ local playsession = {
{"PumpkinPie", {2874}},
{"TheThane", {42678}},
{"bunkerdude103", {208165}},
{"zarduhasselfrau", {2284804}},
{"zarduhasselfrau", {2685599}},
{"Elkslaya406", {8379}},
{"JInglet", {30120}},
{"ZTX", {4445}},
@ -110,7 +110,7 @@ local playsession = {
{"Zoocamper", {132037}},
{"niksal12", {6778}},
{"kevinma", {29102}},
{"Rasip", {39033}},
{"Rasip", {43670}},
{"MCRCortex", {10405}},
{"leetsui", {1301}},
{"Rouden", {21258}},
@ -132,8 +132,8 @@ local playsession = {
{"Immo", {47693}},
{"Aldnoah5566", {785273}},
{"lejnel", {6141}},
{"ItsTime", {261324}},
{"PanPyraPL", {12133}},
{"ItsTime", {382347}},
{"PanPyraPL", {19150}},
{"YubiKey", {12754}},
{"ahoetker", {31251}},
{"minipini55", {113709}},
@ -144,9 +144,9 @@ local playsession = {
{"MegaNoob", {12457}},
{"arikande", {9386}},
{"SLQ", {498105}},
{"Grabi", {59531}},
{"Grabi", {64791}},
{"Howolf", {14811}},
{"Quadrum", {636041}},
{"Quadrum", {750053}},
{"sobitome", {110321}},
{"CmdrVoid", {61018}},
{"Kno", {25112}},
@ -154,12 +154,20 @@ local playsession = {
{"Nivek3k", {21281}},
{"Ragerius", {9935}},
{"Flashbacks", {61799}},
{"JinNJuice", {195391}},
{"JinNJuice", {211748}},
{"ralphmace", {18572}},
{"sl", {44586}},
{"s0p", {11222}},
{"dinotromba", {33120}},
{"UTIDI", {108332}},
{"Ronin114", {70312}}
{"UTIDI", {972332}},
{"Ronin114", {78074}},
{"sid123", {5001}},
{"dialias", {15070}},
{"shoghicp", {80623}},
{"Hoshizora", {76478}},
{"vvictor", {77877}},
{"nix0n", {60863}},
{"14nickel", {48786}},
{"beranabus", {1127}}
}
return playsession

View File

@ -1,17 +1,17 @@
local playsession = {
{"mewmew", {1354381}},
{"zbirka", {1093456}},
{"mewmew", {1371564}},
{"zbirka", {1381456}},
{"Thoren41", {279032}},
{"DerSchnoob", {187091}},
{"Aero182218", {297562}},
{"Renekrause", {15888}},
{"OKaukaski", {894482}},
{"OKaukaski", {1182482}},
{"chych", {8859}},
{"MegaNoob", {30498}},
{"BruceElevator", {133990}},
{"KickassLee", {1045143}},
{"smashngrabb", {19373}},
{"nix0n", {1080892}},
{"nix0n", {1368892}},
{"flooxy", {347668}},
{"oskaplan", {4580}},
{"RasmusNord", {48540}},
@ -21,7 +21,7 @@ local playsession = {
{"qq13095", {8234}},
{"Julian1109", {91976}},
{"dog80", {128216}},
{"chrisisthebe", {997442}},
{"chrisisthebe", {1231750}},
{"ragegear", {171585}},
{"beranabus", {2650}},
{"MaxMM", {14383}},
@ -31,34 +31,34 @@ local playsession = {
{"yay2010", {113328}},
{"DerfDeadman", {18698}},
{"G3I3R", {17294}},
{"UTIDI", {797796}},
{"UTIDI", {995387}},
{"Gottrol", {18819}},
{"StarLite", {5007}},
{"anb505", {802881}},
{"Albombe", {368892}},
{"hubi123123", {734543}},
{"anb505", {1001702}},
{"Albombe", {580277}},
{"hubi123123", {941984}},
{"Waldlaeufer17", {327390}},
{"vvictor", {4974}},
{"Serennie", {668287}},
{"Serennie", {751595}},
{"hasannuh", {622252}},
{"Default_Sound", {82071}},
{"Default_Sound", {274927}},
{"ballbuster", {250230}},
{"Arfloot", {289772}},
{"Arfloot", {454312}},
{"powder12321", {151781}},
{"Gorganus", {332516}},
{"Animezocker", {328102}},
{"Animezocker", {501512}},
{"matjojo", {176340}},
{"ManuelG", {11099}},
{"ajicurry", {435463}},
{"ajicurry", {650164}},
{"minipini55", {86841}},
{"ailishi19", {187134}},
{"zwierzak40", {23080}},
{"xatabu_", {1481}},
{"redlabel", {397529}},
{"redlabel", {685529}},
{"lone-pine", {3445}},
{"corbin9228", {394250}},
{"corbin9228", {576369}},
{"McSafety", {10331}},
{"MasterMatz", {45937}},
{"MasterMatz", {156130}},
{"Rilkacent", {4099}},
{"stevetrov", {84574}},
{"IamTzu", {29330}},
@ -68,23 +68,23 @@ local playsession = {
{"Vogrov", {10428}},
{"Felix61391", {3655}},
{"Thorgal", {160423}},
{"halpenny911", {296448}},
{"halpenny911", {398312}},
{"peggeleg", {5648}},
{"zarduhasselfrau", {265967}},
{"MadPeakyBlinder", {154815}},
{"MadPeakyBlinder", {261855}},
{"Zaidkah", {169362}},
{"tbell91", {166023}},
{"DuelleuD", {19726}},
{"KanedaNLD", {163898}},
{"KanedaNLD", {358876}},
{"svensknc", {1415}},
{"FAChyba", {132604}},
{"PanPyraPL", {138232}},
{"working.worker", {136270}},
{"PanPyraPL", {324088}},
{"working.worker", {286491}},
{"PootisBucket", {12398}},
{"numberoverzero", {128241}},
{"Tatarr", {119208}},
{"numberoverzero", {302077}},
{"Tatarr", {324528}},
{"coreyellow1", {1667}},
{"JirkaJaneba", {101421}},
{"JirkaJaneba", {207044}},
{"dundee67", {26524}},
{"VladiKoro", {59239}},
{"Rothguard", {24208}},
@ -92,18 +92,27 @@ local playsession = {
{"mauerstein10", {61705}},
{"Corlin", {34571}},
{"KarlJohnson", {21685}},
{"XaLpHa1989", {73736}},
{"Akhrem", {72882}},
{"XaLpHa1989", {275639}},
{"Akhrem", {78816}},
{"feliperk", {3624}},
{"jimmyhunter", {70485}},
{"mash10", {67497}},
{"jimmyhunter", {217608}},
{"mash10", {148035}},
{"HeroEsnz", {16515}},
{"marklinCZ", {51417}},
{"marklinCZ", {111533}},
{"Packer", {28482}},
{"Wanzek", {48573}},
{"lauris923", {37937}},
{"BigDrep", {30336}},
{"Wanzek", {149746}},
{"lauris923", {239827}},
{"BigDrep", {47801}},
{"Unrealrules", {8702}},
{"Water_Moon", {9970}}
{"Water_Moon", {188416}},
{"nankinanki", {5321}},
{"LightFly", {30254}},
{"Acruid", {231553}},
{"Gerkiz", {74144}},
{"Lithidoria", {7735}},
{"wotwotvodka", {23305}},
{"Karmoq", {9225}},
{"ChrisADV", {13479}},
{"oloklir", {6584}}
}
return playsession

View File

@ -0,0 +1,12 @@
local playsession = {
{"mewmew", {119369}},
{"XaLpHa1989", {166712}},
{"ralphmace", {157257}},
{"Spaceman-Spiff", {37209}},
{"SpikeLGWG", {105852}},
{"umtallguy", {3925}},
{"dasocks", {5871}},
{"WinstonEwert", {4638}},
{"Malarthyn", {4767}}
}
return playsession

View File

@ -0,0 +1,8 @@
local playsession = {
{"mewmew", {27104}},
{"mr__meeseeks", {34402}},
{"SpikeLGWG", {28505}},
{"XaLpHa1989", {17394}},
{"granthunt51", {9199}}
}
return playsession

View File

@ -0,0 +1,118 @@
local playsession = {
{"mewmew", {30426}},
{"mcdj23_", {2043873}},
{"Achskelmos", {845815}},
{"flooxy", {1993370}},
{"Hurley93", {5073083}},
{"oloklir", {1702245}},
{"JoshTW", {820388}},
{"dasocks", {9986}},
{"RichardMNixon", {484183}},
{"brandon1311", {733262}},
{"Grumpalo", {605098}},
{"muffinator", {430880}},
{"astrodaemons", {3278}},
{"Sholvo", {474453}},
{"SpikeLGWG", {669859}},
{"Murdersauce", {563775}},
{"lone-pine", {709897}},
{"edensg", {865838}},
{"mr__meeseeks", {492326}},
{"Superviviente", {4815}},
{"CyberKitsune", {9699}},
{"Droth_", {2707}},
{"ballbuster", {100345}},
{"chexmix182", {429315}},
{"Fudster", {3682}},
{"jaxjace", {626114}},
{"MadPeakyBlinder", {1245731}},
{"Bonny", {511688}},
{"justgotpayed", {252071}},
{"Lestibornes", {21846}},
{"StormMA", {29331}},
{"Rothguard", {1894417}},
{"Spocks", {496805}},
{"InphinitePhractals", {6211}},
{"mexicanninja", {299930}},
{"rayijin", {10885}},
{"Gorlos", {685490}},
{"China_Feiyang", {19120}},
{"Zonezero", {58625}},
{"lthcweb", {7029}},
{"Bun.", {12363}},
{"StaffOrd", {6658}},
{"Garples", {22632}},
{"LymBAOBEI", {13396}},
{"Devonx25", {1420247}},
{"Exooshii", {1627}},
{"MegaNoob", {522719}},
{"Zoocamper", {21466}},
{"Erbol", {1601}},
{"firstandlast", {116640}},
{"eifel", {1932}},
{"Giatros", {89098}},
{"Zorzzz", {214101}},
{"pickles28", {26518}},
{"JeanSprouts", {8411}},
{"_Panda_Bear250", {154635}},
{"Yaxley", {5296}},
{"BenSeidel", {1521}},
{"Jhumekes", {5486}},
{"redlabel", {4308}},
{"Thoren41", {4826}},
{"Death_Falcon", {125732}},
{"matjojo", {211533}},
{"zsintai1987", {148959}},
{"UnfortunatePotato", {8739}},
{"Pentbot", {45541}},
{"SilkSoul", {5822}},
{"MaxMM", {41735}},
{"snoetje", {184418}},
{"WolfieKun", {165268}},
{"kyky57", {7118}},
{"cpenguinred", {7496}},
{"RasmusNord", {4234}},
{"nik12111", {985781}},
{"lyman", {115495}},
{"bigos91", {60137}},
{"Default_Sound", {11410}},
{"styxkurumi", {14251}},
{"Purgen", {1535}},
{"shadowkills", {16906}},
{"DuelleuD", {3103}},
{"Elijah", {2460}},
{"Hurrock", {1509712}},
{"coucounoir", {11402}},
{"Thorgal", {51778}},
{"Aeropar", {30048}},
{"Malarthyn", {18762}},
{"UTIDI", {185347}},
{"Monki", {233523}},
{"beranabus", {16860}},
{"Schallfalke", {19927}},
{"mekhouye", {12945}},
{"Godninja97", {186615}},
{"PoPiSowy", {24457}},
{"shadewolf", {282514}},
{"thislsamerica", {77286}},
{"inechi", {66492}},
{"Jamalok", {3513}},
{"nankinanki", {747}},
{"Cramly", {5843}},
{"Captain_Murder", {114723}},
{"c1eave", {42770}},
{"Spaceman-Spiff", {3075}},
{"zbirka", {906830}},
{"vad7ik", {16428}},
{"Aceriterium_A", {30123}},
{"G3I3R", {6289}},
{"DaCluwn", {6002}},
{"Flocke", {8472}},
{"Albombe", {7401}},
{"vad50", {7161}},
{"OKaukaski", {6506}},
{"JC1223", {388533}},
{"abrown4521", {9242}},
{"Crati", {765}}
}
return playsession

View File

@ -0,0 +1,84 @@
local playsession = {
{"Gerkiz", {261506}},
{"Edeholland", {6121}},
{"Achskelmos", {481571}},
{"beranabus", {163569}},
{"person12339", {906466}},
{"matjojo", {77962}},
{"MojoDallin", {293750}},
{"zbirka", {965192}},
{"logansleg", {249515}},
{"ausmister", {1155889}},
{"nik12111", {88709}},
{"I_dream_of_corn", {74199}},
{"Sjetil", {227869}},
{"Thoren", {152914}},
{"Grabi", {41068}},
{"nix0n", {2560408}},
{"Connor15_", {1092051}},
{"Gnabergasher", {1572658}},
{"testoo7", {122418}},
{"skub", {1152865}},
{"Serennie", {583775}},
{"Karelmans", {6475}},
{"elMoskvin", {129536}},
{"timtoady", {3910}},
{"pendo20", {1039715}},
{"Alex2D", {326482}},
{"guillochon", {4077}},
{"DuelleuD", {415339}},
{"Graav", {155250}},
{"PogomanD", {323707}},
{"Bazul", {1166879}},
{"nankinanki", {302037}},
{"PTP17", {37771}},
{"coucounoir", {2695}},
{"Evandot", {63406}},
{"dmitrymk", {182996}},
{"CrazyCrabEater", {13212}},
{"FireLeaf", {200078}},
{"Greifenstein", {2544}},
{"ninjayeti", {3872849}},
{"SChaouki97", {190756}},
{"CustomSocks", {1085488}},
{"thunder382", {28119}},
{"nizzy", {20854}},
{"Nikkichu", {361173}},
{"Fireball_Whiskey", {14662}},
{"ashmephit", {245215}},
{"chicki2", {8503}},
{"Cesare", {121773}},
{"Bonny", {9198}},
{"14nickel", {98402}},
{"found", {821}},
{"Thymey", {902405}},
{"misaelfer", {27431}},
{"darkmatter2222", {383777}},
{"Death_Falcon", {13495}},
{"MEDya", {8986}},
{"jobaxter", {25351}},
{"flooxy", {3247}},
{"Bricktator", {4564}},
{"lordkek", {120364}},
{"banakeg", {1917}},
{"Hitman451", {7672}},
{"ponderer1", {690371}},
{"hellden", {690603}},
{"bebop882", {2246}},
{"Powerpanda0", {10699}},
{"c1eave", {19319}},
{"Rasip", {73644}},
{"zarduhasselfrau", {5069}},
{"GriffinOneTwo", {3377}},
{"Moo_Cowman", {115854}},
{"Miguel724", {67177}},
{"jaxjace", {6559}},
{"pickles28", {37592}},
{"Dinnopum", {22782}},
{"aledeludx", {9606}},
{"JoaoPinga", {17757}},
{"Idefix88", {6620}},
{"WolfieKun", {18791}},
{"winklized", {3618}}
}
return playsession

View File

@ -1,10 +1,10 @@
local playsession = {
{"mewmew", {161364}},
{"mewmew", {176693}},
{"MontrealCrook", {636}},
{"5oberon", {5404}},
{"Arin", {779927}},
{"masterbill", {1756950}},
{"Animade", {3451628}},
{"Animade", {5055793}},
{"bangsunam", {59309}},
{"Hapko3", {158323}},
{"arsindex", {121169}},
@ -33,7 +33,7 @@ local playsession = {
{"FearOfTheDark", {925086}},
{"MaxMM", {160960}},
{"UnfortunatePotato", {1822147}},
{"Lodoss", {11919545}},
{"Lodoss", {13553135}},
{"tapycha", {5247}},
{"MooLer", {78358}},
{"brandon1311", {443072}},
@ -46,7 +46,7 @@ local playsession = {
{"Aceriterium_A", {851}},
{"ksb4145", {3187556}},
{"DaCluwn", {207380}},
{"dinotromba", {10367238}},
{"dinotromba", {12584775}},
{"Maloy12", {127684}},
{"Albombe", {391433}},
{"Gorganus", {201232}},
@ -69,7 +69,7 @@ local playsession = {
{"Kommander", {503525}},
{"namornicek", {394884}},
{"ristvaken", {6815}},
{"chris123", {7543962}},
{"chris123", {7559338}},
{"brfbrf", {108108}},
{"Lazman12", {182464}},
{"Catbert", {18185}},
@ -86,7 +86,7 @@ local playsession = {
{"HardcoreRocco", {95034}},
{"hunter117x", {1734}},
{"3061867813", {531515}},
{"Polonium8400", {1568214}},
{"Polonium8400", {1710477}},
{"Serennie", {12737}},
{"TheNetworkDoctor", {198372}},
{"working.worker", {5831}},
@ -132,7 +132,7 @@ local playsession = {
{"Zwerg06", {2469}},
{"Soridormu", {4037}},
{"alexbw", {8832}},
{"seirjgkemn", {3392045}},
{"seirjgkemn", {3497858}},
{"ViCticus", {512855}},
{"TheWickedMaster", {14079}},
{"Higgel", {857892}},
@ -148,7 +148,7 @@ local playsession = {
{"factoroi", {2127724}},
{"Kalkune", {13001}},
{"risack", {437291}},
{"garewin", {5387813}},
{"garewin", {5560866}},
{"Rogamer123", {5219}},
{"Gnabergasher", {7276}},
{"Pencil88", {7251}},
@ -168,7 +168,7 @@ local playsession = {
{"Destroyer568", {22860}},
{"Corlin", {125487}},
{"5b927177f7", {123367}},
{"Horitsu", {2792400}},
{"Horitsu", {3278038}},
{"TheLuckyLuke", {2409}},
{"MegaNoob", {7992}},
{"TobiasRocks2004", {1210054}},
@ -201,7 +201,7 @@ local playsession = {
{"php_piranha", {168182}},
{"Carpet_Ice", {17332}},
{"3615-Motiok", {69183}},
{"Gwaihir", {3066}},
{"Gwaihir", {11360}},
{"sl", {11445}},
{"PfeilVogel", {133628}},
{"hukahile", {133309}},
@ -211,6 +211,16 @@ local playsession = {
{"hobbitmax", {271182}},
{"elMoskvin", {1765}},
{"odoto", {15477}},
{"V3xus", {12541}}
{"V3xus", {12541}},
{"KatanaKiwi", {130448}},
{"Saunis", {50685}},
{"brockmasters", {19048}},
{"StelSPro", {30836}},
{"Couplant", {445}},
{"lanks", {12201}},
{"lao816", {471}},
{"nik12111", {2091}},
{"zzzabiss", {1231}},
{"Gerkiz", {2481}}
}
return playsession

View File

@ -0,0 +1,30 @@
local playsession = {
{"mewmew", {245579}},
{"Biker", {1184}},
{"Quadrum", {426744}},
{"Delqvs", {125502}},
{"nix0n", {11550}},
{"zbirka", {1178}},
{"ZoeAustin", {780}},
{"Esquired25", {9860}},
{"CheeseLord", {25754}},
{"strongfive", {4423}},
{"everLord", {1075}},
{"jer93", {28825}},
{"Kalkune", {1030}},
{"CGYT", {2318}},
{"milesanator", {9248}},
{"donglepuss", {5865}},
{"Renoh", {36625}},
{"nik12111", {4024}},
{"Pumba81", {16921}},
{"redlabel", {605}},
{"Bonny", {2410}},
{"JC1223", {439}},
{"Death_Falcon", {3250}},
{"emilquast", {194420}},
{"Chmizuno", {130922}},
{"viktori726", {21380}},
{"flooxy", {181248}}
}
return playsession

View File

@ -0,0 +1,91 @@
local playsession = {
{"mewmew", {1211603}},
{"Nikkichu", {1069546}},
{"Biker", {1178405}},
{"iSTEVE", {593415}},
{"Sarkani", {514127}},
{"nik12111", {219080}},
{"Newcott", {54906}},
{"Bunchofrocks", {2602}},
{"zsintai1987", {180332}},
{"scotty2586", {191822}},
{"Leon55", {44740}},
{"Fraserbaser", {603008}},
{"Ardordo", {164259}},
{"pierre1316", {469003}},
{"TryonHD", {4138}},
{"H4N", {291253}},
{"alexbw", {1102223}},
{"IamTzu", {611821}},
{"Fatpony", {630599}},
{"aj198200", {495819}},
{"PR871", {34125}},
{"BadSpeiling", {1046277}},
{"beranabus", {244733}},
{"LON", {56237}},
{"redlabel", {1064551}},
{"Avelix", {14410}},
{"jessi_gaming", {199969}},
{"Tamika", {1051786}},
{"Fakeshka", {427754}},
{"vvictor", {65262}},
{"_hash", {38291}},
{"dorpdorp", {399154}},
{"Akhrem", {272436}},
{"Guite", {9941}},
{"fabilord98", {1011029}},
{"MaxMM", {142675}},
{"brfbrf", {5602}},
{"CommanderFrog", {3243}},
{"RebuffedBrute44", {516368}},
{"YagaoDirac", {3907}},
{"Mueslikuchen", {9085}},
{"123456z0", {46775}},
{"realDonaldTrump", {953394}},
{"virtualkiller", {750025}},
{"zwierzak40", {219019}},
{"Skybreaker", {255665}},
{"MuddledBox", {88173}},
{"Puppel", {16459}},
{"MajorSharp", {100534}},
{"drill95", {3851}},
{"Phil535", {456655}},
{"Thaque", {20036}},
{"New_Dropes3000", {15798}},
{"AcidWizard", {331036}},
{"Unrealrules", {768513}},
{"-T0M-", {54560}},
{"VanHate", {622913}},
{"UTIDI", {757015}},
{"Minhoca", {192650}},
{"krutkiwaz", {11633}},
{"Drapi", {58666}},
{"notuger", {4810}},
{"ailishi19", {189737}},
{"xtrmcheeze", {185473}},
{"maate", {42547}},
{"TheThane", {698880}},
{"zbirka", {19528}},
{"ausmister", {492420}},
{"DarkWingDuck", {8694}},
{"HatschiBu", {21038}},
{"tjql9856", {91452}},
{"BlueRock", {704741}},
{"Nyuw", {11084}},
{"KickoKicko", {3116}},
{"snowbranch", {52268}},
{"Superleeds03", {12157}},
{"ratboyboxshall", {23397}},
{"zarduhasselfrau", {40849}},
{"chrisisthebe", {645942}},
{"OoCiRemix", {21319}},
{"Boudial", {15229}},
{"larshp", {27599}},
{"FearOfTheDark", {17376}},
{"kubickijj", {10381}},
{"rico2403", {10667}},
{"HardcoreRocco", {558}},
{"arsindex", {14832}},
{"Gerkiz", {19738}}
}
return playsession

View File

@ -1,54 +1,172 @@
local playsession = {
{"mewmew", {781275}},
{"flooxy", {790388}},
{"mewmew", {823670}},
{"flooxy", {1016935}},
{"brfbrf", {60574}},
{"pickles28", {3710}},
{"matjojo", {61554}},
{"snoetje", {389596}},
{"matjojo", {239492}},
{"snoetje", {798732}},
{"epicmonkey159", {1426}},
{"PuttPutt98", {715429}},
{"PuttPutt98", {928965}},
{"Piewdennis", {464597}},
{"adam1285", {175592}},
{"adam1285", {701226}},
{"14nickel", {6105}},
{"Connor15_", {75378}},
{"Connor15_", {81892}},
{"formenis", {4325}},
{"Kyte", {20433}},
{"nagykeccs", {10614}},
{"Hurrock", {511924}},
{"ghastly_figure", {491590}},
{"Hurrock", {1828405}},
{"ghastly_figure", {522372}},
{"ratboyboxshall", {2690}},
{"Shinhan", {391718}},
{"Shinhan", {583531}},
{"FluffySan", {6086}},
{"Dinnopum", {247964}},
{"Zorzzz", {420000}},
{"jer93", {392662}},
{"Dinnopum", {1006700}},
{"Zorzzz", {4146816}},
{"jer93", {555980}},
{"Akhrem", {49431}},
{"YagaoDirac", {45237}},
{"everLord", {48221}},
{"KeyJoo", {356091}},
{"tbell91", {344416}},
{"everLord", {125943}},
{"KeyJoo", {1649706}},
{"tbell91", {1192531}},
{"hasannuh", {2515}},
{"Nikkichu", {208411}},
{"TheNetworkDoctor", {294194}},
{"Taulas", {286063}},
{"larshp", {901}},
{"Biker", {211703}},
{"VanHate", {198079}},
{"MaxMM", {75684}},
{"Nikkichu", {263354}},
{"TheNetworkDoctor", {355684}},
{"Taulas", {324795}},
{"larshp", {2333}},
{"Biker", {628063}},
{"VanHate", {451052}},
{"MaxMM", {102028}},
{"FartunaSir", {1670}},
{"php_piranha", {128879}},
{"Kwang2846", {119010}},
{"DSCD", {95233}},
{"Corlin", {76125}},
{"5b927177f7", {75369}},
{"php_piranha", {977868}},
{"Kwang2846", {3991127}},
{"DSCD", {531663}},
{"Corlin", {195561}},
{"5b927177f7", {179876}},
{"cpenguinred", {10279}},
{"ralphmace", {66526}},
{"Baldy34343", {66344}},
{"Kno", {58232}},
{"raskl", {5068}},
{"ralphmace", {1340677}},
{"Baldy34343", {90007}},
{"Kno", {2073524}},
{"raskl", {86937}},
{"Hazzari", {14834}},
{"marokotov", {20680}},
{"vedolv", {16677}},
{"snowbranch", {7795}}
{"vedolv", {76227}},
{"snowbranch", {10686}},
{"joe32", {1574887}},
{"Leon55", {20633}},
{"Unahzaal", {1809628}},
{"paulobr02", {1632}},
{"Podonkov", {5172}},
{"Daveyboy80", {11024}},
{"ksb4145", {7133}},
{"gryph", {3623}},
{"HardcoreRocco", {77727}},
{"Purgen", {10540}},
{"TheHomieDomie", {117324}},
{"ro88ie", {461268}},
{"MooLer", {1121937}},
{"AmoraleS", {52659}},
{"ailishi19", {381707}},
{"Electrosys", {8750}},
{"Kjartan91", {49379}},
{"thislsamerica", {383467}},
{"Xolas", {485631}},
{"therv", {6854}},
{"Olekplane1", {58650}},
{"MegaNoob", {72080}},
{"MachineEmpathist", {9881}},
{"Cubicgraphics", {8629}},
{"darklich14", {24191}},
{"macionek", {564911}},
{"my_saw", {1505400}},
{"xRedHunterx", {24687}},
{"ibadaboom", {291360}},
{"Khlept0", {72337}},
{"Vrron", {84226}},
{"TheLuckyLuke", {13563}},
{"Hugoo", {11411}},
{"S.L", {744260}},
{"Kalkune", {9865}},
{"StarP0wer", {53950}},
{"FAChyba", {272137}},
{"mimosa123", {26753}},
{"Langmans", {275718}},
{"JirkaJaneba", {9033}},
{"Cache", {4078}},
{"Farendur", {38115}},
{"Kondzio8", {29016}},
{"askyyer", {39772}},
{"maggens", {304376}},
{"Nivek3k", {428100}},
{"undefinable", {147208}},
{"realDonaldTrump", {11974}},
{"hunter117x", {57799}},
{"Vladis_Generator", {74578}},
{"dorpdorp", {4947}},
{"lynxlives", {19979}},
{"Allofou", {12370}},
{"Landooney", {3547}},
{"Martox111", {9032}},
{"Player_one_1", {4366}},
{"Edeholland", {4989}},
{"grahamm", {60740}},
{"FireLeaf", {18130}},
{"MdRuz", {70600}},
{"Moistlos", {180296}},
{"Ubilaz", {24659}},
{"Mlmute", {68794}},
{"rocket1560090", {16542}},
{"Pumba81", {237614}},
{"Furancebob", {145371}},
{"Cehe4ka", {7040}},
{"MrCrazy", {971903}},
{"lintaba", {72185}},
{"StandaardStefan", {17091}},
{"TrpaslikLP", {33031}},
{"2716057", {26036}},
{"sobitome", {143942}},
{"Xactdose", {64676}},
{"jagger23", {164055}},
{"SuddenDeathMP", {8585}},
{"_mindframe_", {12582}},
{"samq9", {387997}},
{"Delqvs", {18559}},
{"maxxcz", {14089}},
{"sixtothegrave", {29226}},
{"jimmyhunter", {8403}},
{"CheeseLord", {50860}},
{"Malorie_sXy", {965743}},
{"Nitrobacter", {868}},
{"Factorian12321", {9527}},
{"Merc_Plays", {13131}},
{"doenerlover", {20229}},
{"jrz126", {3673}},
{"vipto", {7209}},
{"umtallguy", {28433}},
{"aTHUGnamedWAFFLE", {123605}},
{"brandon1311", {9367}},
{"bonesoul", {25383}},
{"helmetti", {3990}},
{"Serennie", {3612647}},
{"Animade", {34762}},
{"Thuro", {132261}},
{"mastocker", {1445}},
{"misaelfer", {12387}},
{"thederpyloco", {459558}},
{"Maloy12", {85899}},
{"atlas_242", {7681}},
{"TobiasRocks2004", {5416}},
{"-Nightmare-", {8986}},
{"chris123", {5590}},
{"Multifunktionsmixer", {868475}},
{"RasmusNord", {22151}},
{"Idefix88", {41429}},
{"Grabi", {2661}},
{"Gerkiz", {1055}},
{"Vodk", {190290}},
{"edensg", {1428157}},
{"Churchoo", {1887354}},
{"jaxjace", {361860}},
{"Zippy", {84703}},
{"zbirka", {57919}},
{"Bunchofrocks", {5278}}
}
return playsession

View File

@ -0,0 +1,14 @@
local playsession = {
{"mewmew", {13599}},
{"jaxjace", {130642}},
{"RichardMNixon", {142302}},
{"brandon1311", {119702}},
{"Bryce940", {100198}},
{"dasocks", {82261}},
{"Hurley93", {3112}},
{"oskaplan", {4741}},
{"JeanSprouts", {6445}},
{"Death_Falcon", {18453}},
{"Yoodaho", {7040}}
}
return playsession

View File

@ -0,0 +1,48 @@
local playsession = {
{"Gerkiz", {627450}},
{"Ardordo", {712179}},
{"mewmew", {266752}},
{"alexbw", {710492}},
{"Sigor", {355213}},
{"Zorzzz", {679678}},
{"okan009", {674937}},
{"jobaxter", {588003}},
{"everLord", {571398}},
{"xelaf", {399723}},
{"realDonaldTrump", {535508}},
{"Nikkichu", {411829}},
{"Soeil", {189884}},
{"hmsdexter", {33315}},
{"TkB", {28146}},
{"BINDIN", {8668}},
{"Piewdennis", {30831}},
{"Mullacs", {413029}},
{"raskl", {2727}},
{"Cheeseftw", {102212}},
{"Lithidoria", {22576}},
{"mars_precision", {1985}},
{"perrykain", {3254}},
{"hasannuh", {206472}},
{"XjCyan1de", {19358}},
{"floxys", {65224}},
{"Garsaf", {5895}},
{"Olekplane1", {128978}},
{"Danzou", {32279}},
{"StarP0wer", {50573}},
{"redlabel", {11112}},
{"ZwerOxotnik", {182686}},
{"Morgan3rd", {259626}},
{"Greifenstein", {53324}},
{"vad7ik", {214150}},
{"BACONOCAB", {107561}},
{"ijsmetgijs", {5329}},
{"JorWho", {13422}},
{"Eriksonn", {168566}},
{"V4B1", {44586}},
{"Forty-Bot", {126138}},
{"snoetje", {142056}},
{"CheekyHerbert", {4472}},
{"dzentak", {136729}},
{"untouchablez", {26123}}
}
return playsession