1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2024-12-26 22:56:43 +02:00

Major overhaul to player sessions

Removed all local files for player session.
Player sessions are now fetched from the scenario-data.
This commit is contained in:
Gerkiz 2019-07-06 16:38:03 +02:00
parent 55b9b4c3e9
commit 2ad8db371a
1027 changed files with 2128 additions and 45283 deletions

1573
.luacheckrc Normal file

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ server_commands = require 'utils.server'
require "utils.server_commands"
require "utils.utils"
require "utils.corpse_util" --disable for hunger games
require "utils.session_data"
require "chatbot"
require "commands"
require "session_tracker"
require "antigrief"
require "antigrief_admin_panel"
require "group"

View File

@ -9,9 +9,12 @@ To install, add: require "player_list"
to your scenario control.lua.
---MewMew---
Minor changes by ~~~Gerkiz~~~
--]]
local event = require 'utils.event'
local play_time = require 'utils.session_data'
local symbol_asc = ""
local symbol_desc = ""
@ -82,10 +85,11 @@ local function get_formatted_playtime(x)
end
local function get_rank(player)
local t = 0
if global.player_totals then
if global.player_totals[player.name] then t = global.player_totals[player.name][1] end
end
local play_table = play_time.get_session_table()
local t = play_table[player.name][1]
local m = (player.online_time + t) / 3600
local ranks = {
@ -126,16 +130,16 @@ local function get_comparator(sort_by)
end
local function get_sorted_list(sort_by)
local play_table = play_time.get_session_table()
local player_list = {}
for i, player in pairs(game.connected_players) do
player_list[i] = {}
player_list[i].rank = get_rank(player)
player_list[i].name = player.name
local t = 0
if global.player_totals and global.player_totals[player.name] then
t = global.player_totals[player.name][1]
end
t = play_table[player.name][1]
player_list[i].total_played_time = get_formatted_playtime(t + player.online_time)
player_list[i].total_played_ticks = t + player.online_time

File diff suppressed because one or more lines are too long

View File

@ -1,24 +0,0 @@
local playsession = {
{"belbo", {323913}},
{"Eagle34", {126624}},
{"deathworm", {315751}},
{"jackazzm", {323247}},
{"Zhukovo", {322808}},
{"LT.Jack", {7814}},
{"syntaxers", {320487}},
{"Llzzard", {280206}},
{"wildgrim", {307338}},
{"Tamika", {281733}},
{"James_Hackett", {272435}},
{"Nivek3k", {1382}},
{"D0pex", {258769}},
{"GuidoCram", {255634}},
{"seacjs", {1598}},
{"kiwiwikikwi", {167251}},
{"MovingMike", {138616}},
{"urbanos", {116514}},
{"BlueIsComing", {111354}},
{"dog80", {54283}},
{"Largini", {40177}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"joe32", {21241}},
{"Zymoran", {2697}},
{"Tyvix", {46054}},
{"Kalkune", {1021}},
{"tickterd", {22828}}
}
return playsession

View File

@ -1,7 +0,0 @@
local playsession = {
{"neuro666", {143985}},
{"Krono", {142773}},
{"Laug0523", {1199}},
{"GuidoCram", {83952}}
}
return playsession

View File

@ -1,11 +0,0 @@
local playsession = {
{"sobitome", {143974}},
{"AlexTheYes", {142052}},
{"tyssa", {107277}},
{"dragongirl89", {99293}},
{"sim1234", {86675}},
{"pwoland", {26552}},
{"JordyXander", {13121}},
{"skace", {32788}}
}
return playsession

View File

@ -1,9 +0,0 @@
local playsession = {
{"Bobert_Robert", {3306}},
{"belbo", {143005}},
{"morganc", {140972}},
{"GuidoCram", {74886}},
{"svjatosha", {77465}},
{"itsnotyouitsme", {59442}}
}
return playsession

View File

@ -1,40 +0,0 @@
local playsession = {
{"cogito123", {654227}},
{"Tribbiani", {620694}},
{"guyg22", {468192}},
{"jackazzm", {788673}},
{"rlidwka", {692650}},
{"SgtDancExplosion", {597483}},
{"MrDBooks", {93218}},
{"ACabbage", {221495}},
{"_Joe_", {621831}},
{"Guitoune", {741381}},
{"Tamika", {728158}},
{"dawidio", {4329}},
{"crusher_sut", {11545}},
{"gamechanger", {11008}},
{"xbalistixx", {6195}},
{"dragongirl89", {4578}},
{"Gorlos", {69354}},
{"Eagle34", {629454}},
{"EPO666", {628414}},
{"sivy", {8412}},
{"Flexi", {369717}},
{"Koliat", {688}},
{"Tetrahedron", {1362}},
{"PurpleLuk", {8046}},
{"Ardordo", {473309}},
{"mojosa", {357011}},
{"caroch1", {123959}},
{"StarLite", {2760}},
{"Jarocin", {105881}},
{"ColonelWill", {6475}},
{"billbo99", {29998}},
{"DRKMSTR", {168609}},
{"flachen", {183815}},
{"Macsoylo", {15056}},
{"Ogg_Ogg_Ogg", {213352}},
{"xmarisanx", {26154}},
{"belbo", {173301}}
}
return playsession

View File

@ -1,5 +0,0 @@
local playsession = {
{"Skynet82", {71937}},
{"pwoland", {597}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"neuro666", {70159}},
{"GuidoCram", {46933}},
{"Bienenstock", {65886}},
{"Ace67aod", {26715}},
{"JordyXander", {37257}}
}
return playsession

View File

@ -1,38 +0,0 @@
local playsession = {
{"ManuelG", {1079547}},
{"nakedzeldas", {40765}},
{"kendoctor", {938333}},
{"tykak", {882241}},
{"yulingqixiao", {69594}},
{"nahaj", {6054}},
{"unixfreak", {610396}},
{"cogito123", {696502}},
{"kenmras", {515619}},
{"NormalValue", {508617}},
{"OmegaLunch", {491271}},
{"KIRkomMAX", {482559}},
{"MosTec", {249670}},
{"2387354150", {564600}},
{"Dionysusnu", {511646}},
{"Ramzescoder", {6112}},
{"luk4kasz", {17799}},
{"Maggnz", {15366}},
{"PyroBG", {21701}},
{"Sneakypoop", {407064}},
{"yottahawk", {19414}},
{"Fudqw", {34062}},
{"Edyconex", {367932}},
{"ViVas", {6051}},
{"Twitch93", {294825}},
{"Jarocin", {282587}},
{"datadrian", {33942}},
{"sonliviy", {236503}},
{"Parallax48", {64628}},
{"Arnietom", {93836}},
{"Anko1n", {2812}},
{"iReed", {97216}},
{"PicouzeMan", {25348}},
{"thesandbox", {19920}},
{"MP1234321PM", {6662}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"belbo", {359812}},
{"Taishan", {235512}},
{"Mahno", {306}},
{"Cramly", {4224}},
{"KoTuK", {26729}}
}
return playsession

View File

@ -1,22 +0,0 @@
local playsession = {
{"waxman", {142403}},
{"Krono", {250996}},
{"laurence444", {249609}},
{"cogito123", {244940}},
{"Dofolo", {113402}},
{"Weizenbrot", {86554}},
{"ManuelG", {98342}},
{"Immo", {142163}},
{"JirkaJaneba", {746}},
{"tykak", {132705}},
{"umbrax", {120688}},
{"bemwe", {130520}},
{"vk9i", {18852}},
{"Dionysusnu", {85930}},
{"Baoziqq", {3393}},
{"Pyroman69", {1567}},
{"seeyorise", {3237}},
{"Zorin862", {757}},
{"FAChyba", {42090}}
}
return playsession

View File

@ -1,9 +0,0 @@
local playsession = {
{"rjdunlap", {1292}},
{"yulingqixiao", {1025}},
{"BlkKnight", {67278}},
{"Thymey", {361}},
{"Silverwolf9300", {900}},
{"jbro1231", {16662}}
}
return playsession

View File

@ -1,21 +0,0 @@
local playsession = {
{"Jardee", {279870}},
{"Kamyk", {286122}},
{"adam1285", {280584}},
{"HYPPS", {284754}},
{"_Joe_", {258053}},
{"facere", {247566}},
{"kolemin1", {241213}},
{"rlidwka", {248662}},
{"GuidoCram", {5780}},
{"liquidblue", {195445}},
{"evaldusia", {223619}},
{"dazonker", {182081}},
{"_hash", {151949}},
{"Vogrov", {2337}},
{"Fingerdash", {1930}},
{"silos", {5599}},
{"Ibn", {22936}},
{"qwerin", {13495}}
}
return playsession

View File

@ -1,11 +0,0 @@
local playsession = {
{"JordyXander", {323829}},
{"Blackmoor", {298002}},
{"terradus", {237469}},
{"martin718", {5216}},
{"iamthereak", {151289}},
{"cogito123", {93340}},
{"Cdiggity", {816}},
{"UNKN0WNDANGER", {5017}}
}
return playsession

View File

@ -1,12 +0,0 @@
local playsession = {
{"tokastar", {251895}},
{"enesmoon", {251766}},
{"Distesik", {5080}},
{"Maggnz", {52908}},
{"colocri", {2790}},
{"AmiloPL", {32710}},
{"Krono", {22268}},
{"promobugzy", {8443}},
{"Ugaki", {16434}}
}
return playsession

View File

@ -1,85 +0,0 @@
local playsession = {
{"Gerkiz", {722340}},
{"BlkKnight", {424425}},
{"FAChyba", {1109907}},
{"lluceu", {872624}},
{"GuidoCram", {340389}},
{"rlidwka", {881663}},
{"andrekoul", {16530}},
{"ManuelG", {964957}},
{"wotwotvodka", {802430}},
{"unixfreak", {471694}},
{"Hiekie", {336}},
{"dog80", {443499}},
{"jackazzm", {1094833}},
{"yulingqixiao", {932623}},
{"tykak", {57370}},
{"nikithase", {37587}},
{"IM-A-SHEEP", {10961}},
{"1272099015", {3306}},
{"kuumottaja", {1053371}},
{"sadboyhero", {320834}},
{"Cloudtv", {774808}},
{"pwoland", {1036476}},
{"Farrel12469", {35966}},
{"avatarlinux", {354025}},
{"jimbo6805", {3186}},
{"SuddenDeathMP", {894596}},
{"ZXQ2", {504364}},
{"Agocelt", {404397}},
{"OmegaLunch", {389523}},
{"kendoctor", {860377}},
{"adidas", {318753}},
{"Nikkichu", {552572}},
{"Lagger289", {14881}},
{"Falcrum", {9023}},
{"razztorback", {35615}},
{"bernat312", {178518}},
{"UnicornOfBlades", {276197}},
{"Whassup", {2473}},
{"banakeg", {438586}},
{"hunterdurnford", {445746}},
{"sindydwns", {3315}},
{"xDDoS", {41260}},
{"helltone", {309284}},
{"Nezeken", {8793}},
{"TXL_PLAYZ", {351638}},
{"Giatros", {192493}},
{"sid123", {175935}},
{"Aldnoah5566", {484652}},
{"Ozyrion", {32190}},
{"Pucio", {7425}},
{"cogito123", {569836}},
{"Ruuyji", {3782}},
{"Fitdran", {235498}},
{"Timfee", {6485}},
{"szizais", {85524}},
{"huanying", {14614}},
{"maxskm", {240850}},
{"Serennie", {414620}},
{"Ix12", {419077}},
{"Claynz", {16813}},
{"KIRkomMAX", {3663}},
{"Mir360", {2504}},
{"facere", {11539}},
{"NerfThisAss", {31270}},
{"ttbbaaka", {9799}},
{"Grooohm", {8671}},
{"Muggins", {322}},
{"happy_pig", {36119}},
{"barton1906", {4031}},
{"joshynosh", {188653}},
{"Malorie_sXy", {183547}},
{"olexn", {96990}},
{"mavinos", {4912}},
{"gefahrenstoffel", {11817}},
{"Nalleknas", {55292}},
{"numberoverzero", {19054}},
{"velociapcior", {7102}},
{"squidgedude757", {38677}},
{"WorldofWarIII", {29451}},
{"samrrr", {14070}},
{"datadrian", {5133}},
{"syntaxers", {71}}
}
return playsession

View File

@ -1,4 +0,0 @@
local playsession = {
{"Timfee", {71914}}
}
return playsession

View File

@ -1,12 +0,0 @@
local playsession = {
{"KoTuK", {1}},
{"FidoCZ", {7589}},
{"jeffertoot", {345}},
{"rutgers0419", {1403}},
{"Nezerin", {2174}},
{"hx_itx", {7213}},
{"Vancleave", {650}},
{"AmiloPL", {230900}},
{"Krengrus", {3096}}
}
return playsession

View File

@ -1,83 +0,0 @@
local playsession = {
{"dog80", {1079068}},
{"HYPPS", {982229}},
{"dazonker", {1158476}},
{"rikkert", {241325}},
{"Dammpi", {70185}},
{"rlidwka", {1500118}},
{"facere", {943201}},
{"liquidblue", {809337}},
{"625dennis", {1292536}},
{"Cybernoise", {1329330}},
{"LXzockt", {14077}},
{"Rezz", {516654}},
{"qwerin", {610877}},
{"Redeffer", {249324}},
{"uwkster", {291337}},
{"_Joe_", {1412042}},
{"jangelo2", {52868}},
{"Sneakypoop", {23194}},
{"Whassup", {936}},
{"D0pex", {550374}},
{"XasaX", {71353}},
{"Bryce940", {176726}},
{"alvarofm", {56201}},
{"untouchablez", {1287739}},
{"TheLemur", {237811}},
{"Turtleburger", {18701}},
{"_Lightning", {7732}},
{"James_Hackett", {250740}},
{"exabyte", {263223}},
{"Daveyboy80", {87340}},
{"drakferion", {1113698}},
{"Anubi5", {16736}},
{"Kamyk", {550764}},
{"autopss", {367540}},
{"redlabel", {479601}},
{"barton1906", {658273}},
{"Juankha", {16600}},
{"datadrian", {910175}},
{"Thymey", {1065979}},
{"wjx008", {637037}},
{"Nerazin", {129936}},
{"mephistik", {17702}},
{"Zeebone", {19524}},
{"GuidoCram", {14329}},
{"sobitome", {14633}},
{"dingusdonkey", {818454}},
{"Zippy", {38568}},
{"paczcz", {17890}},
{"bazziboy", {115509}},
{"edwar88", {320132}},
{"unixfreak", {63755}},
{"knot2006", {6928}},
{"Bacteria", {61986}},
{"matam666", {52765}},
{"thepompano", {21268}},
{"bigjoemonger", {719308}},
{"PogomanD", {267458}},
{"teomarx", {495372}},
{"LtDerp", {16509}},
{"techdude444", {117102}},
{"LeeFactor", {15595}},
{"alexbodry", {21632}},
{"Tamika", {101280}},
{"TheKracken", {8066}},
{"crash893", {453826}},
{"laglol", {7898}},
{"Ed9210", {436938}},
{"ZTX", {24907}},
{"syntaxers", {9292}},
{"afk4life", {11626}},
{"TunaSnax", {40761}},
{"Mathemagic", {11309}},
{"pizza7pizza", {32034}},
{"-slug-", {19769}},
{"hohoghomson", {56155}},
{"legotex9", {4269}},
{"eifel", {19956}},
{"Waffledragon122", {795}},
{"Mordalfus", {131613}},
{"CustomSocks", {1148}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"iwitheghost", {30869}},
{"liquidblue", {35817}},
{"sawyer8383", {3300}},
{"wjx008", {4658}},
{"Immo", {23318}}
}
return playsession

View File

@ -1,5 +0,0 @@
local playsession = {
{"rlidwka", {576}},
{"tyssa", {71084}}
}
return playsession

View File

@ -1,25 +0,0 @@
local playsession = {
{"PogomanD", {1001671}},
{"neuro666", {1038933}},
{"Vogrov", {98784}},
{"GuidoCram", {609312}},
{"juggernautlegend", {630986}},
{"FinnW", {253054}},
{"Pucio", {607468}},
{"Spocks", {895953}},
{"7Haydz7", {203614}},
{"kalenmonster", {594600}},
{"beranabus", {115869}},
{"HNemo", {287501}},
{"evileddy60", {126868}},
{"matcap04", {66256}},
{"Goddloki", {120993}},
{"FuRi0s", {17304}},
{"Maggnz", {55106}},
{"MovingMike", {92180}},
{"tabanouch", {7406}},
{"cabb99", {9897}},
{"VorceShard", {76415}},
{"Ultro", {75459}}
}
return playsession

View File

@ -1,65 +0,0 @@
local playsession = {
{"Helioooooos", {644449}},
{"jackazzm", {647728}},
{"mundsundu", {292221}},
{"TheKid0z", {3309}},
{"Tyvix", {638215}},
{"derwahnsinn", {646790}},
{"EPO666", {646318}},
{"cogito123", {644514}},
{"TheRealSlimChewy", {645144}},
{"belbo", {644548}},
{"Rodcon", {487249}},
{"facere", {549683}},
{"everLord", {268228}},
{"MovingMike", {632369}},
{"TheKoopa", {20822}},
{"floxys", {576593}},
{"thesandbox", {487876}},
{"LukoNL", {605174}},
{"xmarisanx", {394447}},
{"thislsamerica", {488319}},
{"Gmo785", {566265}},
{"Dany737", {1750}},
{"wookiecck007", {10582}},
{"happyjumper5", {427863}},
{"Water_fish777", {280327}},
{"BuildOrDie", {67859}},
{"Vogrov", {280593}},
{"exabyte", {351957}},
{"Somine", {467051}},
{"KoTuK", {132000}},
{"GuidoCram", {132719}},
{"Guess-what-alien", {120885}},
{"Guitoune", {135191}},
{"oliverx93", {171256}},
{"Bulisek", {277138}},
{"MegaDocent", {5190}},
{"redinator2000", {193697}},
{"JordyXander", {164909}},
{"Bodor", {308549}},
{"leo5642", {5426}},
{"Domanaik", {55776}},
{"zbirka", {295518}},
{"TheOrangeAngle", {5368}},
{"lukus", {260964}},
{"Imtheantman48", {10514}},
{"Llzzard", {3751}},
{"die_ott", {246838}},
{"Annihilaser", {20240}},
{"snowzy", {1449}},
{"wladekb", {163649}},
{"Rados", {197812}},
{"jcwc", {6081}},
{"T0BIAS", {165121}},
{"Fueri", {128613}},
{"davidjarrao", {29108}},
{"Ulgar", {8675}},
{"seacjs", {1962}},
{"itsnotyouitsme", {53787}},
{"TovaMire", {62493}},
{"wildgrim", {15473}},
{"marius86000", {35825}},
{"Nikkichu", {23428}}
}
return playsession

View File

@ -1,7 +0,0 @@
local playsession = {
{"liquidblue", {30742}},
{"rjdunlap", {544702}},
{"jeffertoot", {34303}},
{"xiaoxi", {336040}}
}
return playsession

View File

@ -1,20 +0,0 @@
local playsession = {
{"tyssa", {2013}},
{"Goddloki", {324218}},
{"thesandbox", {499434}},
{"Hutspovian", {15896}},
{"Cramly", {409}},
{"TovaMire", {268558}},
{"WorldofWarIII", {284633}},
{"dog80", {672832}},
{"2387354150", {479471}},
{"megatwist", {212272}},
{"dredonkey", {10740}},
{"ETK03", {468811}},
{"hx_itx", {5505}},
{"Whassup", {20901}},
{"jimbo6805", {35473}},
{"TeamS0l0", {9692}},
{"SpincsGaming", {298571}}
}
return playsession

View File

@ -1,33 +0,0 @@
local playsession = {
{"Kamyk", {481586}},
{"autopss", {380581}},
{"Zymoran", {574842}},
{"rlidwka", {111175}},
{"Rezz", {561304}},
{"rjdunlap", {568818}},
{"Dammpi", {39360}},
{"Vogrov", {529362}},
{"Discotek", {785}},
{"_Joe_", {555562}},
{"Luknight12", {211778}},
{"Kasimda", {20216}},
{"evaldusia", {500785}},
{"dog80", {339271}},
{"hsxu", {255542}},
{"RainSolid", {8021}},
{"HYPPS", {398510}},
{"letters_and_numbers", {387152}},
{"jackazzm", {379524}},
{"daifeiya", {5033}},
{"Zorzzz", {43107}},
{"Eagle34", {7057}},
{"JulianB", {29169}},
{"REDgalko", {2685}},
{"625dennis", {234416}},
{"toddrofls", {4604}},
{"LeeFactor", {143458}},
{"Maggnz", {90579}},
{"Monkeyboy1024", {54390}},
{"jangelo2", {7348}}
}
return playsession

View File

@ -1,14 +0,0 @@
local playsession = {
{"tyssa", {143416}},
{"CrazyCrabEater", {131000}},
{"TheRealSlimChewy", {139325}},
{"pwoland", {141829}},
{"Nerazin", {141031}},
{"untouchablez", {124875}},
{"Dofolo", {115522}},
{"GuidoCram", {103469}},
{"MovingMike", {34001}},
{"belbo", {59954}},
{"nitr0x11", {41877}}
}
return playsession

View File

@ -1,17 +0,0 @@
local playsession = {
{"mewmew", {34659}},
{"dredonkey", {35493}},
{"Kalkune", {35485}},
{"NekoBaron", {35197}},
{"Ochsebein", {34813}},
{"fuchsnj", {15193}},
{"Hurrock", {33291}},
{"robertkruijt", {32777}},
{"Hanakocz", {24158}},
{"hostejj", {22097}},
{"Plexsr", {15069}},
{"Nick_Nitro", {6158}},
{"MeggalBozale", {2389}},
{"rjdunlap", {1715}}
}
return playsession

View File

@ -1,12 +0,0 @@
local playsession = {
{"autopss", {251960}},
{"HYPPS", {161854}},
{"maksik_name", {222302}},
{"Dammpi", {214976}},
{"Monkeyboy1024", {165160}},
{"exabyte", {59546}},
{"GreySkull", {36379}},
{"TXL_PLAYZ", {28783}},
{"reinose", {4940}}
}
return playsession

View File

@ -1,34 +0,0 @@
local playsession = {
{"BlkKnight", {247755}},
{"Mimiick", {240363}},
{"KIRkomMAX", {244196}},
{"Redbeard28", {249910}},
{"Tinct", {248372}},
{"OECEMESO", {247855}},
{"Jardee", {240755}},
{"Reyand", {233148}},
{"captnemo", {165865}},
{"Kastroil", {139516}},
{"ben84", {189254}},
{"Silverwolf9300", {195683}},
{"drill95", {182230}},
{"redlabel", {173317}},
{"yulingqixiao", {147415}},
{"Riochet", {167538}},
{"nakedzeldas", {7465}},
{"Albombe", {156193}},
{"tykak", {96053}},
{"mipmop", {137685}},
{"iSadCat", {135324}},
{"Tayrus", {111656}},
{"2387354150", {97540}},
{"adidas", {10494}},
{"lord_kill", {89932}},
{"Manski666", {36143}},
{"Darcanis", {11599}},
{"Sjetil", {40211}},
{"xzmlol", {38122}},
{"Cloudtv", {18478}},
{"Aldnoah5566", {8651}}
}
return playsession

View File

@ -1,100 +0,0 @@
local playsession = {
{"mewmew", {1936}},
{"codog2", {524747}},
{"AlexTheYes", {145199}},
{"JB_Delta", {601050}},
{"phanton5000", {81019}},
{"Bonny", {936508}},
{"belbo", {725195}},
{"pompouspercival", {525792}},
{"dingusdonkey", {176537}},
{"thislsamerica", {660462}},
{"MrDBooks", {3856}},
{"Ben2231", {4622}},
{"Bryce940", {37751}},
{"TovaMire", {723231}},
{"itsnotyouitsme", {109958}},
{"Tamika", {159337}},
{"mexicanninja", {1792045}},
{"hc351", {174698}},
{"OmegaLunch", {1912}},
{"144360153", {27726}},
{"nix0n", {132725}},
{"TXL_PLAYZ", {9657}},
{"DDTcz", {1194451}},
{"Kirdiaga", {1769}},
{"WinterVision", {9333}},
{"NekoBaron", {468527}},
{"Idefix88", {38387}},
{"Factorian12321", {4393}},
{"KIRkomMAX", {4665}},
{"stat0x00", {6816}},
{"Robotic_Golem", {377185}},
{"captnemo", {3058}},
{"happyjumper5", {3799}},
{"cazohuze", {4483}},
{"Paffcio", {9233}},
{"iamthereak", {4063}},
{"Blackmoor", {2386256}},
{"Marwonline", {4027}},
{"_Joe_", {13146}},
{"Kalkune", {36875}},
{"odgaar", {16536}},
{"crusher_sut", {11997}},
{"Heartacid", {2509}},
{"offstagethought", {43730}},
{"petterah", {18233}},
{"sim1234", {5108}},
{"4xBen", {1921}},
{"Rodcon", {277466}},
{"kalala", {6986}},
{"Benzi_Junior", {113667}},
{"helpower2", {4738144}},
{"joschi240", {2303}},
{"matam666", {42701}},
{"billbo99", {7815}},
{"porelos", {7977}},
{"hlindhe", {299575}},
{"VovKgr", {31208}},
{"XWricky", {68593}},
{"arty714", {27143}},
{"a793411178", {8190}},
{"untouchablez", {190116}},
{"adam1285", {68540}},
{"Electric26", {83205}},
{"Grooohm", {8492}},
{"Keo_nix", {60124}},
{"Marenti", {4419}},
{"Holidaytom", {1669}},
{"TGHamSter", {1534}},
{"vvictor", {94987}},
{"domii894", {13410}},
{"DaCluwn", {1387}},
{"galletto", {1822}},
{"GuidoCram", {9503}},
{"XaLpHa1989", {9707}},
{"Headscrew", {1898}},
{"Nate_the_gamer_24", {12053}},
{"pwoland", {2110}},
{"Iceman85", {10516}},
{"AroN57", {355599}},
{"MeggalBozale", {259354}},
{"Judikator", {7354}},
{"FinnW", {6631}},
{"zbirka", {4131}},
{"SMikiS", {10118}},
{"SlideQ", {68073}},
{"Plexsr", {4140}},
{"Amffik13", {9433}},
{"MegaDocent", {5575}},
{"Vadatajs", {49047}},
{"Dionysusnu", {17784}},
{"ACabbage", {157012}},
{"tangoindiamike", {3740}},
{"Jaded_Magic", {12818}},
{"cubun_2009", {6145}},
{"brftjx", {2996}},
{"longda88", {4539}},
{"LymBAOBEI", {6015}}
}
return playsession

View File

@ -1,4 +0,0 @@
local playsession = {
{"Gerkiz", {148803}}
}
return playsession

View File

@ -1,7 +0,0 @@
local playsession = {
{"Zrital", {3294}},
{"Unrealrules", {6199}},
{"KoTuK", {217}},
{"Daveyboy80", {60657}}
}
return playsession

View File

@ -1,4 +0,0 @@
local playsession = {
{"dog80", {107703}}
}
return playsession

View File

@ -1,39 +0,0 @@
local playsession = {
{"fuchsnj", {647612}},
{"jackazzm", {647227}},
{"belbo", {315591}},
{"Guitoune", {646891}},
{"Killy71", {601602}},
{"SpincsGaming", {621957}},
{"GuidoCram", {302}},
{"jower", {233216}},
{"Jhumekes", {190657}},
{"minipini55", {5821}},
{"KingKolla", {455098}},
{"jan1412", {362680}},
{"Zymoran", {412438}},
{"Rhoanor", {381488}},
{"KillaGurke", {3830}},
{"Irx99", {37807}},
{"Fortin9562", {4702}},
{"Spades_", {365690}},
{"ragegear", {78538}},
{"18145174666", {180118}},
{"BIG_RUSSIAN_BOSS228", {5565}},
{"Derwitze", {13746}},
{"beranabus", {177977}},
{"everLord", {149104}},
{"zbirka", {12444}},
{"andrew756", {4403}},
{"BonafideFactoryOwner2", {19457}},
{"Gekookt-Eitje", {313}},
{"floxys", {44374}},
{"nocturnalangel", {146171}},
{"Frodoctorio", {144298}},
{"2387354150", {3375}},
{"FroZenSteel", {117929}},
{"__init__", {5397}},
{"Dysonhive", {52556}},
{"STARHELIX", {3407}}
}
return playsession

View File

@ -1,13 +0,0 @@
local playsession = {
{"Helioooooos", {305463}},
{"TheOneAndEdgy", {323493}},
{"TheRealSlimChewy", {270063}},
{"Andrew520", {4133}},
{"redOrange", {160296}},
{"seacjs", {109749}},
{"itsnotyouitsme", {104242}},
{"zbezz", {5756}},
{"Somine", {17928}},
{"iamthereak", {82670}}
}
return playsession

View File

@ -1,6 +0,0 @@
local playsession = {
{"JordyXander", {17850}},
{"seeyorise", {89210}},
{"JailsonBR", {1710}}
}
return playsession

View File

@ -1,13 +0,0 @@
local playsession = {
{"BlkKnight", {28105}},
{"PogomanD", {6345}},
{"Parkouralvoil", {1868}},
{"Spocks", {1022}},
{"Thymey", {1119}},
{"CawaEast", {419}},
{"sandy_sashr", {13712}},
{"untouchablez", {276146}},
{"MovingMike", {179767}},
{"alaxagabr", {34631}}
}
return playsession

View File

@ -1,13 +0,0 @@
local playsession = {
{"belbo", {143905}},
{"Taishan", {17596}},
{"TheRealSlimChewy", {140021}},
{"MrDBooks", {4718}},
{"ThePlagueDoctor", {99127}},
{"Vancleave", {98620}},
{"thederpyloco", {77073}},
{"KoTuK", {51599}},
{"dog80", {3005}},
{"TheKid0z", {4905}}
}
return playsession

View File

@ -1,235 +0,0 @@
local playsession = {
{"remarkablysilly", {1639092}},
{"Freakneek", {2624425}},
{"BlkKnight", {1149670}},
{"Kleticx", {194902}},
{"cogito123", {1569234}},
{"OmegaLunch", {5068949}},
{"Foldi", {1451947}},
{"avatarlinux", {783438}},
{"ManuelG", {888579}},
{"hommedelaroche", {1717658}},
{"KIRkomMAX", {326287}},
{"kendoctor", {1792873}},
{"jackazzm", {5227558}},
{"helltone", {160231}},
{"Zymoran", {730368}},
{"tazorax", {949116}},
{"Hulk", {4671604}},
{"Oveerlord92", {350047}},
{"Vinerr", {1063187}},
{"t120513890", {102297}},
{"zeezee", {24189}},
{"yulingqixiao", {1267338}},
{"2387354150", {2019757}},
{"Metaforce", {73156}},
{"pwoland", {4989353}},
{"facere", {2179488}},
{"PTP17", {871673}},
{"TheKoopa", {342846}},
{"tykak", {147303}},
{"Xspex", {1799533}},
{"unixfreak", {1429250}},
{"Jarocin", {103246}},
{"dexter1602", {211316}},
{"22144418", {118044}},
{"Arusu", {3365167}},
{"Argus_Raven", {4480974}},
{"Spaceman-Spiff", {416671}},
{"ThatGuyStyx", {2106369}},
{"Req", {774407}},
{"ibadaboom", {336015}},
{"Edyconex", {575878}},
{"Twitch93", {667242}},
{"tminusfiveminutes", {128776}},
{"Chesmu", {191350}},
{"q1793", {37974}},
{"DaoKoks", {1102050}},
{"AurelienG", {53684}},
{"rxjd", {14520}},
{"Ogg_Ogg_Ogg", {74780}},
{"Redcrafter100", {20134}},
{"JinNJuice", {255487}},
{"tyssa", {614009}},
{"Nikkichu", {609310}},
{"Eavyon", {2249298}},
{"flachen", {309952}},
{"mewmew", {413137}},
{"kenx00x", {10120}},
{"Tux0n0", {545088}},
{"ljh0419", {34622}},
{"Fero2522", {50207}},
{"redlabel", {1514197}},
{"mobi_boss", {43132}},
{"IM-A-SHEEP", {2721}},
{"_hash", {22596}},
{"Ix12", {664580}},
{"cblrobbie", {4960}},
{"pHettiii", {150087}},
{"iReed", {120243}},
{"wotwotvodka", {483368}},
{"Podonkov", {5639}},
{"Zaidkah", {132715}},
{"Maggnz", {270770}},
{"Daultash", {2284}},
{"sid123", {524425}},
{"dixonuk2006", {9165}},
{"Ruslan_kc", {12819}},
{"maxskm", {344621}},
{"MovingMike", {5383462}},
{"Blendurian", {95379}},
{"Bete1geuse", {21893}},
{"Immo", {57108}},
{"GandoharTheGreat", {2866348}},
{"BoneyKTplease", {28515}},
{"kuumottaja", {863818}},
{"Tribbiani", {224944}},
{"Dsmxyz", {34915}},
{"exyi", {11991}},
{"Broatcast", {32771}},
{"he-duun", {81490}},
{"GuidoCram", {35831}},
{"sadboyhero", {14394}},
{"loadover", {13181}},
{"jamiebally", {19919}},
{"skace", {239453}},
{"lluceu", {211076}},
{"764451685", {299818}},
{"Whassup", {185070}},
{"TXL_PLAYZ", {443909}},
{"olexn", {31757}},
{"FoxBox808", {69717}},
{"Redbeard28", {153099}},
{"Malorie_sXy", {2275277}},
{"qqfl2014", {78758}},
{"kxh0103", {8667}},
{"SindroCSI", {1201283}},
{"Serennie", {360586}},
{"Zorin862", {23448}},
{"die_ott", {1385666}},
{"Chico75", {2017729}},
{"untouchablez", {19195}},
{"Imashroom", {28726}},
{"Yannickool2", {1395388}},
{"Giatros", {109226}},
{"lordmioju", {27989}},
{"Federal", {4953}},
{"guppychan", {13004}},
{"working.worker", {8667}},
{"Corlin", {12391}},
{"elvo36", {48959}},
{"jeffertoot", {33555}},
{"thesandbox", {1391897}},
{"Karden_Atreides", {83103}},
{"hunter117x", {120945}},
{"Markovnikov", {116315}},
{"TheIronCove", {17303}},
{"LoicB", {20023}},
{"moqart", {217340}},
{"fenderpuddy", {7837}},
{"PipoAventuras", {2898}},
{"Rawutzikabutzi", {722869}},
{"Camo5", {23425}},
{"Rezz", {17844}},
{"rjdunlap", {61417}},
{"Ludvik", {51598}},
{"WorldofWarIII", {378501}},
{"rlidwka", {57078}},
{"Sp00nkY", {103577}},
{"xDDoS", {55103}},
{"tickterd", {360426}},
{"Trazador", {21667}},
{"XnagitoX", {112867}},
{"Monkeyboy1024", {833345}},
{"Randall172", {32772}},
{"Fitdran", {173554}},
{"samrrr", {7699}},
{"Rolfiki", {26090}},
{"Bodewes", {209448}},
{"Diezvai", {19136}},
{"Lucasuper32", {23283}},
{"MKIch", {1410617}},
{"barton1906", {240849}},
{"Eagle34", {100099}},
{"Chilla55", {7626}},
{"andrea1818", {82103}},
{"NormalValue", {394117}},
{"edwar88", {46460}},
{"matcap04", {35336}},
{"joooo", {48549}},
{"TheKaboomShroom", {470842}},
{"7Haydz7", {17325}},
{"Nezeken", {2399773}},
{"Agocelt", {172098}},
{"General_Jens", {8097}},
{"Tamika", {129901}},
{"dorpdorp", {26778}},
{"nakedzeldas", {9705}},
{"Sholvo", {314035}},
{"Achskelmos", {152670}},
{"Darknut12", {106315}},
{"FuRi0s", {33699}},
{"Ilayda", {33340}},
{"Thomas.wur", {17755}},
{"harukine", {624345}},
{"lowchukka", {13850}},
{"Thymey", {3039743}},
{"Ultro", {9692}},
{"Ottus", {304645}},
{"Upsidedowneye", {76901}},
{"I_dream_of_corn", {11477}},
{"happy_pig", {16148}},
{"MasterLxPt", {7015}},
{"Nick_Nitro", {150595}},
{"Mxlppxl", {30635}},
{"kkook30", {9389}},
{"Pyroman69", {34639}},
{"eatmyfractals", {7754}},
{"wilu1982", {22359}},
{"Hutspovian", {9621}},
{"Arnietom", {22135}},
{"kun0678", {4343}},
{"ben84", {2043}},
{"asd100477", {1502}},
{"Mark416", {6444}},
{"greenmachine87", {31553}},
{"Grooohm", {13458}},
{"versimpeld", {2009}},
{"Beeee", {9568}},
{"AllenInsanity_YT", {99753}},
{"TryonHD", {21854}},
{"Vegadyn", {12098}},
{"LawFact", {457191}},
{"Tommy17", {19401}},
{"itishappy", {18722}},
{"EPO666", {55258}},
{"KrotikAE", {7163}},
{"factsman", {3784}},
{"Engnieer", {113462}},
{"Jitikko", {341043}},
{"captnemo", {12923}},
{"drakferion", {103766}},
{"Xenoman99", {141304}},
{"meinswank", {33429}},
{"Ochsebein", {30058}},
{"Puph", {209687}},
{"Llzzard", {158202}},
{"samnrad", {47114}},
{"coldd", {6899}},
{"ISniffPetrol", {76326}},
{"blindsided", {27001}},
{"__init__", {5424}},
{"Ganzoller", {6319}},
{"Mieleson", {19119}},
{"drilla", {208503}},
{"huanying", {356839}},
{"Bionico", {55231}},
{"gelaman58", {10072}},
{"Holoskii", {94364}},
{"gamechanger", {9171}},
{"BigDaddyBongDong", {4653}},
{"Zorky", {31944}},
{"TNSepta", {97832}},
{"Daveyboy80", {100178}}
}
return playsession

View File

@ -1,16 +0,0 @@
local playsession = {
{"remarkablysilly", {215946}},
{"dog80", {213056}},
{"gdi582000", {170832}},
{"sobitome", {154748}},
{"TXL_PLAYZ", {124450}},
{"hx_itx", {82287}},
{"Zymoran", {80358}},
{"urbanos", {71484}},
{"xX_combinator_Xx", {38984}},
{"robertkruijt", {57682}},
{"snaim", {3495}},
{"Tinct", {4195}},
{"DDTcz", {5774}}
}
return playsession

View File

@ -1,12 +0,0 @@
local playsession = {
{"cogito123", {179965}},
{"MovingMike", {178410}},
{"jackazzm", {176091}},
{"Tamika", {175443}},
{"mipmop", {173802}},
{"fudencioes", {64026}},
{"facere", {39668}},
{"Taishan", {17999}},
{"MK_Yukari", {9219}}
}
return playsession

View File

@ -1,125 +0,0 @@
local playsession = {
{"mewmew", {444052}},
{"XaLpHa1989", {3890180}},
{"Sholvo", {244561}},
{"Kruv", {81621}},
{"yago2003", {58742}},
{"Kiumajus", {13391}},
{"ElSuizoEnFactorio", {15435}},
{"Holidaytom", {163786}},
{"Gerkiz", {122783}},
{"yottahawk", {269061}},
{"pr1me", {57298}},
{"drbln", {36434}},
{"simanthi", {16369}},
{"BLURE4L", {269831}},
{"Fatpony", {265549}},
{"ManuelG", {4673}},
{"Kirdiaga", {1122}},
{"GreySintax", {44614}},
{"Markle", {207493}},
{"EnchantedGames", {90833}},
{"toddrofls", {123991}},
{"Tony3D", {3280519}},
{"anghelnicky", {54298}},
{"Spaceman-Spiff", {280157}},
{"Dammpi", {292801}},
{"billbo99", {8872}},
{"FunghCraft", {2554}},
{"cubun_2009", {169783}},
{"artiminsk", {58548}},
{"untouchablez", {150092}},
{"xubos", {4051}},
{"itam", {32752}},
{"iReed", {41592}},
{"samrrr", {48675}},
{"TheGrizzor", {54580}},
{"mzw881", {14762}},
{"tykak", {3733}},
{"total", {166533}},
{"Arnietom", {1314}},
{"Oveerlord92", {21040}},
{"gereleth", {3709}},
{"Vadim135", {6555}},
{"NekoBaron", {92987}},
{"D0pex", {62709}},
{"flooxy", {2275}},
{"cookiesnm1lk", {168715}},
{"dpoba", {197398}},
{"Nikkichu", {3878}},
{"dinotromba", {6620}},
{"JinNJuice", {249917}},
{"Synessus", {11875}},
{"suotiikeri", {5184}},
{"repkid", {28934}},
{"redlabel", {686}},
{"MeggalBozale", {31170}},
{"PoPiSowy", {1849}},
{"Shawn1368", {6838}},
{"manstro011", {181235}},
{"Hanakocz", {5061}},
{"unixfreak", {1454}},
{"SukiTedd", {18229}},
{"ponderer1", {1367473}},
{"superschmidt", {125295}},
{"bigjoemonger", {729519}},
{"Thomas.wur", {6642689}},
{"TheOrangeAngle", {2923}},
{"termac", {502422}},
{"everLord", {8492}},
{"vvictor", {80389}},
{"T-A-R", {9931}},
{"Nate_the_gamer_24", {3285988}},
{"BjoernarS", {7186}},
{"GLiberationArmy", {14587}},
{"SMikiS", {5854}},
{"MegaDocent", {24188}},
{"reofarp", {121099}},
{"Marenti", {842}},
{"snowzy", {11519}},
{"Cloner", {1522825}},
{"Thorgal", {4387}},
{"beranabus", {18997}},
{"ginocz", {7821}},
{"Otti2004", {2619}},
{"Factorian12321", {3359}},
{"cpenguinred", {4753}},
{"judos", {22403}},
{"Patton1918", {269219}},
{"wafel535", {27734}},
{"Ugaki", {8117}},
{"matam666", {7145}},
{"s0p", {22678}},
{"neuronich", {6120}},
{"xspectorx", {6522}},
{"Snipes_ET", {60868}},
{"jrz126", {188144}},
{"Wiedrock", {7649}},
{"kingslandingjun", {2259}},
{"TheInvisibleMan2000", {1521}},
{"Leetsloane", {100317}},
{"Porg", {42639}},
{"Ruslan_kc", {15474}},
{"VidelPC", {2626}},
{"brftjx", {2770}},
{"XasaX", {4330}},
{"RenanParro", {1317}},
{"NappingYG", {10546}},
{"Juankha", {3577}},
{"prdfndr", {5523}},
{"Bradcool", {756050}},
{"PCmonster", {1357}},
{"Red_eyes87", {53047}},
{"rikkert", {2777}},
{"Tayrus", {5417}},
{"alvarofm", {15518}},
{"Kamyk", {7439}},
{"LeeFactor", {389680}},
{"aalexx", {25472}},
{"afk4life", {1934}},
{"GuidoCram", {14010}},
{"Notandor", {4113}},
{"CypoBbIu", {8917}},
{"peterses123", {151630}}
}
return playsession

View File

@ -1,7 +0,0 @@
local playsession = {
{"maoul", {42669}},
{"matam666", {33311}},
{"facere", {22907}},
{"Marenti", {17364}}
}
return playsession

View File

@ -1,15 +0,0 @@
local playsession = {
{"LeeFactor", {467893}},
{"Zorky", {463528}},
{"HYPPS", {458351}},
{"tylesser", {240954}},
{"Discotek", {226805}},
{"rjdunlap", {284666}},
{"Spocks", {269374}},
{"thepompano", {118391}},
{"Poo76765", {113543}},
{"Lowczy", {61154}},
{"flooxy", {7920}},
{"Laetificat", {18809}}
}
return playsession

View File

@ -1,10 +0,0 @@
local playsession = {
{"BlkKnight", {287932}},
{"neuro666", {287848}},
{"Immo", {189832}},
{"Bidoas", {279347}},
{"elvo36", {246552}},
{"bllgull", {29779}},
{"kalenmonster", {115955}}
}
return playsession

View File

@ -1,6 +0,0 @@
local playsession = {
{"Taishan", {14070}},
{"Tenerus", {25184}},
{"partytimo", {7386}}
}
return playsession

View File

@ -1,30 +0,0 @@
local playsession = {
{"Ardordo", {588180}},
{"cogito123", {645391}},
{"belbo", {645148}},
{"xmarisanx", {294465}},
{"Eagle34", {317904}},
{"jackazzm", {623752}},
{"DRKMSTR", {235927}},
{"Mattyrogue", {7533}},
{"EPO666", {136317}},
{"untouchablez", {5426}},
{"TheUltimatus", {2158}},
{"guyg22", {435260}},
{"Maxboul", {1006}},
{"iamthereak", {4643}},
{"ColonelWill", {20773}},
{"Devildude1", {33817}},
{"VovKgr", {14838}},
{"_Joe_", {376556}},
{"ACabbage", {153012}},
{"atlas_242", {34052}},
{"Flexi", {269790}},
{"JasonTheSmarty", {18704}},
{"Factorian12321", {3799}},
{"GuidoCram", {5424}},
{"Dzy", {12998}},
{"adam1285", {24557}},
{"Ogg_Ogg_Ogg", {9949}}
}
return playsession

View File

@ -1,21 +0,0 @@
local playsession = {
{"EPO666", {572780}},
{"untouchablez", {575509}},
{"Kamyk", {572429}},
{"LawFact", {259876}},
{"625dennis", {562235}},
{"HumaniTea", {485670}},
{"sockmeistr", {430060}},
{"ThatGuyStyx", {23216}},
{"MovingMike", {353112}},
{"Zymoran", {276031}},
{"lilleskutt", {175014}},
{"mikaxler", {4430}},
{"Silden", {227441}},
{"NairbHaon", {6752}},
{"FelixRST", {29467}},
{"Ed9210", {154249}},
{"WTFD", {2290}},
{"Wildcard176", {13388}}
}
return playsession

View File

@ -1,74 +0,0 @@
local playsession = {
{"MovingMike", {876114}},
{"CawaEast", {444477}},
{"Dammpi", {31615}},
{"PogomanD", {1098917}},
{"Zorky", {1635127}},
{"D0pex", {271801}},
{"rlidwka", {12919}},
{"Discotek", {485655}},
{"Llzzard", {528285}},
{"CalmRage", {157544}},
{"Rarglepuff", {1276777}},
{"MrPiols", {859888}},
{"seeyorise", {303117}},
{"_hash", {378746}},
{"Supertesla", {3364}},
{"Ed9210", {4205}},
{"Hitman451", {915416}},
{"Looke", {223454}},
{"Alittar", {104130}},
{"moltov", {80400}},
{"HeatKiller", {49967}},
{"rjdunlap", {349553}},
{"kendoctor", {1435242}},
{"ClassAction", {26944}},
{"SuperNova15", {649883}},
{"itskris", {227787}},
{"CustomSocks", {19162}},
{"codog2", {653029}},
{"BlueThunder09", {331323}},
{"coderedginger08", {81055}},
{"_The_Lost_", {18565}},
{"Suplexinator", {27378}},
{"HumaniTea", {557786}},
{"eluna155", {10217}},
{"JB_Delta", {686935}},
{"letters_and_numbers", {261650}},
{"Doctor_Goose", {195546}},
{"Beeseearr", {194892}},
{"Imtheantman48", {6074}},
{"10514187", {62458}},
{"JinNJuice", {5100}},
{"thesandbox", {645682}},
{"death016024", {37434}},
{"woodsy310", {29660}},
{"graehamkracker", {906908}},
{"Erotique", {27172}},
{"tylesser", {8621}},
{"elvaleto", {254036}},
{"shpikey", {18793}},
{"ampflog", {30117}},
{"kefkja", {319}},
{"CallMeTaste", {349109}},
{"thmmerd", {14445}},
{"tokastar", {554000}},
{"inesoa", {2357}},
{"Thymey", {703856}},
{"pompam003", {76783}},
{"liquidblue", {110482}},
{"KKnD", {516912}},
{"Ybloc", {70850}},
{"drbln", {4850}},
{"joooo", {219038}},
{"TXL_PLAYZ", {335029}},
{"Hoppe", {32872}},
{"SjantenHG", {5493}},
{"TerMineFact", {116402}},
{"Spiritmorin", {84053}},
{"tykak", {364458}},
{"Tcheko", {270988}},
{"barton1906", {3298}},
{"adam1285", {1383}}
}
return playsession

View File

@ -1,19 +0,0 @@
local playsession = {
{"BlkKnight", {359919}},
{"rjdunlap", {358355}},
{"tykak", {79323}},
{"iReed", {357358}},
{"Ed9210", {354628}},
{"dazonker", {341218}},
{"Krono", {337134}},
{"Sholvo", {271515}},
{"yulingqixiao", {1211}},
{"TheEggOnTop", {283740}},
{"Aldnoah5566", {58945}},
{"Immo", {110730}},
{"untouchablez", {81609}},
{"vedolv", {64231}},
{"2716057", {3366}},
{"Zorky", {34940}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"bix06", {107439}},
{"seeyorise", {71845}},
{"tokastar", {4371}},
{"JailsonBR", {12103}},
{"yulingqixiao", {10023}}
}
return playsession

View File

@ -1,10 +0,0 @@
local playsession = {
{"WorldofWarIII", {19698}},
{"maoul", {54019}},
{"AlexTheYes", {18770}},
{"XaLpHa1989", {2591}},
{"dotard", {4689}},
{"Serennie", {4372}},
{"yulingqixiao", {3710}}
}
return playsession

View File

@ -1,14 +0,0 @@
local playsession = {
{"FAChyba", {213914}},
{"cogito123", {465058}},
{"Rezz", {410540}},
{"bemwe", {134248}},
{"waxman", {373696}},
{"Warsome22", {20347}},
{"MovingMike", {245193}},
{"vk9i", {10943}},
{"Mieleson", {120591}},
{"rikkert", {1481}},
{"Michaelmcking", {3675}}
}
return playsession

View File

@ -1,12 +0,0 @@
local playsession = {
{"Zymoran", {23311}},
{"hx_itx", {19331}},
{"robertkruijt", {175691}},
{"TXL_PLAYZ", {154258}},
{"DDTcz", {125048}},
{"spik3", {96799}},
{"thesandbox", {52222}},
{"yulingqixiao", {64736}},
{"TovaMire", {19494}}
}
return playsession

View File

@ -1,37 +0,0 @@
local playsession = {
{"juggernautlegend", {33857}},
{"CawaEast", {522050}},
{"KoTuK", {567619}},
{"The-Player", {550533}},
{"jeffertoot", {362281}},
{"Cramly", {22540}},
{"D0pex", {521114}},
{"dog80", {195360}},
{"GuidoCram", {96374}},
{"Tybob12", {3902}},
{"eifel", {447762}},
{"wildgrim", {438271}},
{"Taishan", {434768}},
{"ClingyTable", {3141}},
{"Miteone", {44375}},
{"svjatosha", {373626}},
{"Obey_The_Kitty", {347317}},
{"manowscar1990", {2353}},
{"dingusdonkey", {324538}},
{"Llzzard", {7575}},
{"subv3rsiv3", {144210}},
{"D4kiss", {81236}},
{"wladekb", {261195}},
{"DecJunkie", {249179}},
{"ZTX", {2201}},
{"TheRealSlimChewy", {218004}},
{"trava22", {202247}},
{"matthew1206", {201760}},
{"RichardMNixon", {196129}},
{"DRKMSTR", {174907}},
{"person12339", {149902}},
{"Alexis4232", {133577}},
{"Serennie", {95777}},
{"nameless_imp", {37715}}
}
return playsession

View File

@ -1,10 +0,0 @@
local playsession = {
{"Ochsebein", {33321}},
{"Monkeyboy1024", {142982}},
{"kalenmonster", {103656}},
{"Bidoas", {123461}},
{"Stykes", {15376}},
{"matcap04", {52131}},
{"peluszo", {8671}}
}
return playsession

View File

@ -1,27 +0,0 @@
local playsession = {
{"han234", {107787}},
{"remarkablysilly", {107786}},
{"idrewt", {67701}},
{"Zorky", {107010}},
{"hwdev", {59852}},
{"Knugn", {107026}},
{"GuidoCram", {106637}},
{"Malorie_sXy", {106393}},
{"Vogrov", {106155}},
{"McSafety", {105976}},
{"kalenmonster", {100997}},
{"KoTuK", {105799}},
{"XaLpHa1989", {105736}},
{"rlidwka", {105635}},
{"glukuzzz", {64745}},
{"Ochsebein", {105348}},
{"jackazzm", {102842}},
{"hommedelaroche", {102813}},
{"EPO666", {101349}},
{"Eavyon", {60485}},
{"MovingMike", {95734}},
{"mewmew", {67678}},
{"Gerkiz", {29230}},
{"Kyte", {28338}}
}
return playsession

View File

@ -1,47 +0,0 @@
local playsession = {
{"jackazzm", {323821}},
{"GuidoCram", {92122}},
{"MKIch", {274573}},
{"Knugn", {323457}},
{"McSafety", {317907}},
{"rlidwka", {323010}},
{"Malorie_sXy", {142123}},
{"ktreubig", {322800}},
{"Kyte", {255986}},
{"han234", {321325}},
{"dog80", {321187}},
{"wellczech", {195668}},
{"CawaEast", {276724}},
{"unixfreak", {252342}},
{"snoetje", {253259}},
{"KKnD", {249219}},
{"skykittena", {8783}},
{"Cloudtv", {156145}},
{"helltone", {43902}},
{"Fuzzywuzhe", {216701}},
{"neuro666", {209549}},
{"kuumottaja", {159447}},
{"NairbHaon", {165620}},
{"Sneakypoop", {10646}},
{"remarkablysilly", {164159}},
{"boeljoet", {162202}},
{"SuddenDeathMP", {154558}},
{"mewmew", {149578}},
{"Heartacid", {129833}},
{"Sakama", {61343}},
{"musa3299", {102349}},
{"DomKKK", {2746}},
{"thislsamerica", {100713}},
{"DualBallers", {3997}},
{"nizzy", {15970}},
{"TNSepta", {52540}},
{"Guitoune", {21642}},
{"Tanotauro", {45457}},
{"flachen", {76782}},
{"Kamyk", {70538}},
{"DerFactorioNinja", {23185}},
{"EPO666", {11636}},
{"Apathus", {7930}},
{"Dionysusnu", {4500}}
}
return playsession

View File

@ -1,24 +0,0 @@
local playsession = {
{"Nikkichu", {733551}},
{"Ulygold", {365162}},
{"651782904", {730854}},
{"CmonMate497", {528901}},
{"ManuelG", {737346}},
{"2xRon", {594350}},
{"NASER", {665946}},
{"drbln", {141483}},
{"MontrealCrook", {632418}},
{"AmiloPL", {127483}},
{"shea717", {4997}},
{"tykak", {55624}},
{"puuupedis", {429563}},
{"Tomy52499", {327443}},
{"Kamyk", {3916}},
{"KIRkomMAX", {347959}},
{"adam1285", {7713}},
{"mundsundu", {41112}},
{"TXL_PLAYZ", {254285}},
{"Malorie_sXy", {141269}},
{"Dammpi", {54681}}
}
return playsession

View File

@ -1,9 +0,0 @@
local playsession = {
{"HYPPS", {200122}},
{"rjdunlap", {323162}},
{"tokastar", {319790}},
{"McC1oud", {271999}},
{"sheng378831749", {161545}},
{"Krezal", {19546}}
}
return playsession

View File

@ -1,24 +0,0 @@
local playsession = {
{"Dofolo", {143782}},
{"skace", {143045}},
{"Rados", {140380}},
{"MovingMike", {22070}},
{"dog80", {42024}},
{"pwoland", {118635}},
{"Jhumekes", {104721}},
{"captnemo", {83718}},
{"xyuTa", {67561}},
{"Grooohm", {95136}},
{"GuidoCram", {76220}},
{"banakeg", {68313}},
{"Tyvix", {46028}},
{"Cloner", {40307}},
{"KoTuK", {36701}},
{"unixfreak", {32048}},
{"S1eepwa1ker", {1883}},
{"julianbrall", {21992}},
{"Bastiaan1985", {7021}},
{"remarkablysilly", {11322}},
{"Ulgar", {4102}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"Kain48", {97323}},
{"NbITUK", {97862}},
{"produ006", {167}},
{"bigjoemonger", {8054}},
{"Juankha", {230}}
}
return playsession

View File

@ -1,5 +0,0 @@
local playsession = {
{"mewmew", {94615}},
{"vvictor", {59077}}
}
return playsession

View File

@ -1,26 +0,0 @@
local playsession = {
{"Ed9210", {683928}},
{"rjdunlap", {683848}},
{"Krono", {188028}},
{"10514187", {19075}},
{"liquidblue", {658984}},
{"Leon55", {469358}},
{"HYPPS", {635990}},
{"ipeterov", {1718}},
{"xyuTa", {2312}},
{"Freaxel", {344673}},
{"smookov", {513366}},
{"Phleem", {3369}},
{"McC1oud", {1023}},
{"TXL_PLAYZ", {300794}},
{"DJStrikerLP", {310747}},
{"Chutnut", {48726}},
{"Immo", {263182}},
{"HardTekk1987", {418}},
{"Mrho", {1970}},
{"HeadshotsGG", {138484}},
{"engbizzle", {6891}},
{"Krengrus", {102466}},
{"trekie4747", {53153}}
}
return playsession

View File

@ -1,21 +0,0 @@
local playsession = {
{"wjx008", {287932}},
{"paczcz", {285336}},
{"625dennis", {285238}},
{"teomarx", {283318}},
{"HYPPS", {95574}},
{"liquidblue", {54530}},
{"lokiPDX", {258144}},
{"unixfreak", {253547}},
{"Parkouralvoil", {247294}},
{"makuli", {149934}},
{"ArriagaVarela", {204460}},
{"Tyler420", {99413}},
{"Krono", {201739}},
{"tizzle", {1897}},
{"sawyer8383", {376}},
{"uwkster", {3948}},
{"mildnixon", {1963}},
{"adidas", {57885}}
}
return playsession

View File

@ -1,106 +0,0 @@
local playsession = {
{"mewmew", {512250}},
{"boksiora", {8774583}},
{"NekoBaron", {304155}},
{"howaldg22", {191830}},
{"snoetje", {3281}},
{"ManuelG", {13413}},
{"T-A-R", {309331}},
{"sivael", {268019}},
{"Ruslan_kc", {63294}},
{"zeludtnecniv", {95348}},
{"_Lightning", {4377}},
{"drbln", {11859}},
{"vvictor", {1975947}},
{"Noxium", {276029}},
{"Aronak", {111390}},
{"Blaster", {15803}},
{"drakferion", {7132}},
{"thesandbox", {397416}},
{"MeggalBozale", {15171}},
{"Kirdiaga", {2981}},
{"QuaxzRu", {6977803}},
{"Brender", {4699}},
{"odgaar", {5875}},
{"FilipoJohn", {52875}},
{"Cornerback24", {13299}},
{"Fahobi", {4920}},
{"wotwotvodka", {6878}},
{"adam1285", {6473778}},
{"bigjoemonger", {2193365}},
{"Rabjerg", {259531}},
{"rjdunlap", {39345}},
{"Porg", {4501}},
{"redlabel", {117879}},
{"Spike", {4439}},
{"Ulygold", {16199}},
{"damian0816", {1863}},
{"Framfab", {124120}},
{"NBtrain", {1979}},
{"Mastergreatsword", {216247}},
{"XaLpHa1989", {351501}},
{"itsgeometrical", {7033}},
{"Piratenkaiser", {22497}},
{"jimmyhunter", {54068}},
{"N355A", {8229}},
{"Aldnoah5566", {10906}},
{"joooo", {73893}},
{"cblrobbie", {5461}},
{"Kyte", {7452}},
{"mundsundu", {5227}},
{"flooxy", {3013}},
{"Decu", {3444}},
{"unixfreak", {484240}},
{"jrz126", {56856}},
{"Holidaytom", {472815}},
{"MovingMike", {2921}},
{"Atoms", {5526}},
{"Zorky", {56601}},
{"rikkert", {6641}},
{"twilightgalax", {27088}},
{"spongebrot", {2108}},
{"KatanaKiwi", {17841}},
{"crusher_sut", {4906}},
{"Shogal", {8465}},
{"sasha21168", {7017}},
{"Idefix88", {1242924}},
{"James_Hackett", {29694}},
{"neuronich", {47210}},
{"prdfndr", {44924}},
{"Krengrus", {22025}},
{"brftjx", {2632}},
{"HandsomeTurtle", {17715}},
{"Maxboul", {15464}},
{"Ludvik", {7729}},
{"huanying", {2846}},
{"suotiikeri", {8025}},
{"Sparhawk87", {1632}},
{"Weizenbrot", {9053}},
{"dialias", {664659}},
{"Zacland", {1904859}},
{"jackazzm", {7326}},
{"TWLTriston", {6326}},
{"JC1223", {162577}},
{"Waffledragon122", {24730}},
{"autopss", {7867}},
{"DarkQuantum", {37129}},
{"kakahaplay", {49719}},
{"dinotromba", {59635}},
{"TryonHD", {6346}},
{"Ommuden", {414391}},
{"truekabal", {2693}},
{"bobbythebob12", {3274}},
{"rico2403", {6592}},
{"Kamyk", {3413}},
{"xodud1068", {176387}},
{"StarLite", {183289}},
{"x33112456", {3369}},
{"Thomas.wur", {23317}},
{"Leetsloane", {387496}},
{"Gerkiz", {41}},
{"MegaDocent", {20540}},
{"AssemblyStorm", {139879}},
{"Bradcool", {252537}},
{"Nate_the_gamer_24", {129978}}
}
return playsession

View File

@ -1,24 +0,0 @@
local playsession = {
{"Silden", {744499}},
{"HumaniTea", {1081830}},
{"Ed9210", {1242398}},
{"Kamyk", {18264}},
{"Zymoran", {701}},
{"MovingMike", {2419}},
{"PogomanD", {822425}},
{"huffsam", {265606}},
{"Stinson_5", {53949}},
{"cpenguinred", {42254}},
{"JD-Plays", {27738}},
{"waxman", {571538}},
{"625dennis", {762740}},
{"Doctor_Goose", {335622}},
{"AGoodName", {8179}},
{"Cokezero91", {4299}},
{"DukeAl", {1560}},
{"Maggnz", {118760}},
{"nachen12345", {35827}},
{"yulingqixiao", {8744}},
{"Immo", {38426}}
}
return playsession

View File

@ -1,14 +0,0 @@
local playsession = {
{"ookl", {107834}},
{"Spaceman-Spiff", {99932}},
{"yulingqixiao", {29726}},
{"pwoland", {23537}},
{"gdi582000", {88074}},
{"OmegaLunch", {72391}},
{"qj5566z", {7446}},
{"sid123", {18739}},
{"redlabel", {30597}},
{"Aldnoah5566", {8488}},
{"LegitGames", {3424}}
}
return playsession

View File

@ -1,7 +0,0 @@
local playsession = {
{"dazonker", {179839}},
{"tykak", {143070}},
{"JB_Delta", {117068}},
{"AurelienG", {8649}}
}
return playsession

View File

@ -1,26 +0,0 @@
local playsession = {
{"Naturlih", {431880}},
{"Headscrew", {112591}},
{"Serennie", {394628}},
{"xyuTa", {188130}},
{"thislsamerica", {254710}},
{"andrekoul", {327737}},
{"Eagle34", {6543}},
{"jangelo2", {318317}},
{"stety", {244830}},
{"derwahnsinn", {64930}},
{"porelos", {19192}},
{"Fraserbaser", {191630}},
{"yulingqixiao", {43749}},
{"b4x", {71225}},
{"KIRkomMAX", {34060}},
{"Slayerfear", {180335}},
{"anghelnicky", {4324}},
{"Marenti", {45007}},
{"lexu", {30690}},
{"guoguomiao", {5099}},
{"Nemek", {47355}},
{"Taishan", {3810}},
{"Czarny", {520}}
}
return playsession

View File

@ -1,11 +0,0 @@
local playsession = {
{"neuro666", {16942}},
{"GuidoCram", {45823}},
{"Moondancer", {2723}},
{"jeffertoot", {7458}},
{"lowchukka", {177}},
{"tibikay", {7042}},
{"MovingMike", {6936}},
{"ttbbaaka", {1432}}
}
return playsession

View File

@ -1,9 +0,0 @@
local playsession = {
{"Tinct", {2904}},
{"Jitikko", {1035}},
{"ookl", {67019}},
{"Spaceman-Spiff", {53164}},
{"TXL_PLAYZ", {17561}},
{"gdi582000", {18887}}
}
return playsession

View File

@ -1,14 +0,0 @@
local playsession = {
{"XaLpHa1989", {208537}},
{"ClassAction", {251885}},
{"dog80", {247117}},
{"Zymoran", {227486}},
{"wjx008", {230770}},
{"Bidoas", {126650}},
{"Vancleave", {116328}},
{"Claviduck", {6288}},
{"Nezeken", {88103}},
{"kalenmonster", {42485}},
{"2387354150", {21566}}
}
return playsession

View File

@ -1,31 +0,0 @@
local playsession = {
{"Dr_Pinestine", {442161}},
{"WorldofWarIII", {611525}},
{"ManuelG", {573218}},
{"joooo", {122141}},
{"4ort", {62562}},
{"Fire3231", {504910}},
{"NASER", {437072}},
{"NewChipFoose", {15930}},
{"Eagle34", {139335}},
{"rupi0290", {338344}},
{"NBM", {303175}},
{"Miniplanta", {4218}},
{"sky_2017", {208204}},
{"tykak", {139375}},
{"yulingqixiao", {246810}},
{"bobbythebob12", {11040}},
{"Doerk", {54045}},
{"Cokezero91", {11698}},
{"sobitome", {187601}},
{"JirkaJaneba", {668}},
{"Kiumajus", {68116}},
{"redlabel", {140139}},
{"Lucasuper32", {135319}},
{"QuantoPrizm", {34177}},
{"MontrealCrook", {58643}},
{"JinNJuice", {43246}},
{"Spaceman-Spiff", {13880}},
{"sheng378831749", {1033}}
}
return playsession

View File

@ -1,30 +0,0 @@
local playsession = {
{"laurence444", {4157}},
{"Eagle34", {377372}},
{"Ruslan_kc", {369566}},
{"Bionico", {388140}},
{"lluceu", {68395}},
{"mordulec321", {88655}},
{"__init__", {292763}},
{"mryman", {63967}},
{"Grooohm", {4775}},
{"ColonelWill", {3469}},
{"PurpleLuk", {240892}},
{"ReBootYourMind", {266374}},
{"Nixxor", {238764}},
{"KIRkomMAX", {239392}},
{"Ed9210", {197216}},
{"tykak", {157674}},
{"Sneakypoop", {103481}},
{"Gorlos", {127940}},
{"EkMakarek", {19656}},
{"Latrommi", {16498}},
{"red_led", {75621}},
{"fabilord98", {74961}},
{"qwerin", {69077}},
{"Mathemagic", {38913}},
{"unixfreak", {31916}},
{"thepompano", {30242}},
{"AdamLoLdam", {3269}}
}
return playsession

View File

@ -1,10 +0,0 @@
local playsession = {
{"Scuideie-Guy", {32231}},
{"tokastar", {25402}},
{"vedolv", {229785}},
{"lufisman314", {222019}},
{"Tcheko", {141250}},
{"NikolaB131", {30475}},
{"sky_2017", {6138}}
}
return playsession

View File

@ -1,19 +0,0 @@
local playsession = {
{"PogomanD", {359980}},
{"Gorlos", {48228}},
{"TCP", {10327}},
{"Knugn", {357901}},
{"HYPPS", {164814}},
{"MovingMike", {344170}},
{"Preums", {245901}},
{"reflexuss", {16830}},
{"Zorky", {283151}},
{"untouchablez", {147474}},
{"graehamkracker", {117597}},
{"adam1285", {52632}},
{"Thymey", {24446}},
{"NikolaB131", {16585}},
{"Discotek", {1912}},
{"Jardee", {667}}
}
return playsession

View File

@ -1,145 +0,0 @@
local playsession = {
{"mewmew", {407875}},
{"NekoBaron", {583979}},
{"Plexsr", {14307721}},
{"Gerkiz", {43309}},
{"pwoland", {1486558}},
{"MovingMike", {650857}},
{"BuDDaH77", {105921}},
{"Crazycuber92", {9741}},
{"StarPirate", {4957}},
{"TheNetworkDoctor", {1508}},
{"minipini55", {175991}},
{"KingKolla", {646}},
{"MeggalBozale", {13224}},
{"xaddr", {32868}},
{"DDTcz", {6129692}},
{"mundsundu", {97170}},
{"andrekoul", {185079}},
{"zbirka", {334372}},
{"marius86000", {12718}},
{"Mrho", {7373}},
{"p0p3", {19844}},
{"MisaMisa", {16115}},
{"beranabus", {129653}},
{"dawidio", {5139}},
{"Arocken", {3314}},
{"jackazzm", {11795}},
{"TheBigZet", {250817}},
{"partytimo", {1268540}},
{"w1040642388", {3838}},
{"RaccoonBandit", {800035}},
{"Terminutter", {5931}},
{"Ludvik", {23775}},
{"Ska-Dee", {36210}},
{"dougrourke45", {500115}},
{"promobugzy", {529}},
{"Idocreating", {2784}},
{"HiveMind", {2681}},
{"Akhrem", {110034}},
{"Whouser", {272838}},
{"hommedelaroche", {176375}},
{"kuumottaja", {1015401}},
{"poma", {2145704}},
{"Yaxley", {4024}},
{"vvictor", {3508789}},
{"crusher_sut", {664360}},
{"Bodewes", {531851}},
{"BSquad", {38682}},
{"tyssa", {372435}},
{"cpenguinred", {19730}},
{"davidjarrao", {7124}},
{"AroN57", {8706}},
{"jackgolf", {311396}},
{"Espen2K4", {3001}},
{"Dany737", {6654}},
{"evileddy60", {54675}},
{"goober3602", {128486}},
{"yayforfood", {4071}},
{"James_Hackett", {40849}},
{"thislsamerica", {270481}},
{"ben84", {1424}},
{"Kalkune", {3920}},
{"Malorie_sXy", {46728}},
{"SgtDancExplosion", {5253}},
{"sergma33", {766}},
{"anima", {4579}},
{"Umutt", {32905}},
{"RichardMNixon", {550082}},
{"Valkyrien", {501}},
{"ReBootYourMind", {375134}},
{"Iccy.Fox", {5523}},
{"Witherd", {11849}},
{"Yannickool2", {683}},
{"Somine", {111463}},
{"Kirdiaga", {4873}},
{"peacemaker83", {83978}},
{"GamyGamer", {54327}},
{"chuber", {678}},
{"asdfer", {21817}},
{"dazonker", {6108}},
{"Bonny", {16955}},
{"Nate_the_gamer_24", {15243670}},
{"Pucio", {2202}},
{"snowzy", {1547}},
{"MegaDocent", {328074}},
{"wladekb", {12767}},
{"derwahnsinn", {26642}},
{"nikithase", {6755}},
{"Nippler85", {1408}},
{"Alyssix", {2078}},
{"youtakun", {44174}},
{"drbln", {19052}},
{"Zory", {7275}},
{"CroSsY23", {5201}},
{"xArtsyx", {39394}},
{"Cheeseftw", {1737}},
{"QaDs", {772}},
{"ZeroBeTaken", {949}},
{"Ziboux", {15772}},
{"Elderlyabyss", {7913}},
{"thesandbox", {45284}},
{"Laun1346", {36873}},
{"Hanakocz", {35062}},
{"120148", {31941}},
{"Amffik13", {5881}},
{"seeyorise", {19593}},
{"sasha84m", {6568}},
{"lvivskixlop", {3405}},
{"dashark", {25185}},
{"kinny09", {91088}},
{"AurelienG", {6841}},
{"Alexis4232", {1989}},
{"matthew1206", {14313}},
{"OmegaLunch", {41515}},
{"playerwow", {9615}},
{"belbo", {29096}},
{"Neo", {21061}},
{"Cubius", {1971824}},
{"rileythelol", {7068}},
{"Aspherix", {56857}},
{"OffMoney", {34220}},
{"Serennie", {110104}},
{"sid123", {6851}},
{"tank8903", {3359}},
{"Lunafox", {379230}},
{"fbserg", {1901}},
{"NewRemote", {7863}},
{"Eximius_", {9946}},
{"justus_hollek", {5120}},
{"Peldor1", {16354}},
{"NexxusGaming", {17604}},
{"curtive", {6872}},
{"yodadog", {625493}},
{"mahury", {18686}},
{"jessop1", {1244}},
{"Leetsloane", {941149}},
{"PoPiSowy", {1829}},
{"VovKgr", {71636}},
{"ledilov", {10810}},
{"JasonTheSmarty", {20167}},
{"gameguy46", {31939}},
{"1732202738", {11186}},
{"rekadsli", {4551}}
}
return playsession

View File

@ -1,24 +0,0 @@
local playsession = {
{"belbo", {676105}},
{"awoo404", {16086}},
{"cogito123", {100378}},
{"zevron", {40844}},
{"Ekosh", {303030}},
{"bigos91", {798344}},
{"iamthereak", {6556}},
{"Taishan", {292067}},
{"dog80", {217961}},
{"nix0n", {320583}},
{"_Joe_", {289381}},
{"VovKgr", {38135}},
{"Serennie", {238145}},
{"TovaMire", {208591}},
{"Czarny", {35375}},
{"Eagle34", {107500}},
{"matam666", {1030}},
{"mrMoops", {90984}},
{"morganc", {72607}},
{"GuidoCram", {26818}},
{"Refy", {36963}}
}
return playsession

View File

@ -1,73 +0,0 @@
local playsession = {
{"CawaEast", {882468}},
{"Somine", {881634}},
{"Serennie", {803481}},
{"Lucasuper32", {968931}},
{"Eagle34", {371868}},
{"KIRkomMAX", {931451}},
{"iamthereak", {250}},
{"XaLpHa1989", {8139}},
{"MK_Yukari", {46721}},
{"DDTcz", {114476}},
{"pwoland", {872097}},
{"Breach3", {112548}},
{"jackazzm", {261137}},
{"Ace67aod", {40371}},
{"D0pex", {273669}},
{"edelux", {125654}},
{"xmarisanx", {171799}},
{"ACabbage", {5645}},
{"yulingqixiao", {737572}},
{"littleminion007", {10313}},
{"Jardee", {337696}},
{"facere", {395168}},
{"OmegaLunch", {234471}},
{"person12339", {668672}},
{"skace", {152557}},
{"rongorite", {54198}},
{"Rodcon", {245669}},
{"TovaMire", {459711}},
{"eldr420", {40523}},
{"Heartacid", {201521}},
{"bramhut", {12717}},
{"Eximius_", {13220}},
{"iROBE", {17946}},
{"maxfaussett", {14538}},
{"RaccoonBandit", {160378}},
{"TheRealSlimChewy", {435109}},
{"Loewchen", {440411}},
{"promobugzy", {129470}},
{"floxys", {136179}},
{"siriushoward", {184040}},
{"Kirdiaga", {51439}},
{"Edihar", {312021}},
{"Yannickool2", {27686}},
{"Medival3", {420981}},
{"AroN57", {2947}},
{"Gunter.", {34524}},
{"porelos", {125055}},
{"Gmo785", {37570}},
{"JordyXander", {161281}},
{"kuumottaja", {434592}},
{"sid123", {2524}},
{"SgtDancExplosion", {304332}},
{"JayJayJoking", {32561}},
{"Dany737", {40812}},
{"AlexTheYes", {266348}},
{"StarLite", {304241}},
{"odgaar", {142652}},
{"sobitome", {162691}},
{"super66reaper", {11412}},
{"he-duun", {8938}},
{"jcwc", {77033}},
{"p0p3", {62223}},
{"DaCluwn", {956}},
{"DjSapsan", {15851}},
{"SK", {5560}},
{"Gekookt-Eitje", {51564}},
{"guyg22", {7439}},
{"Frank554", {42643}},
{"datadrian", {11189}},
{"jower", {4714}}
}
return playsession

View File

@ -1,59 +0,0 @@
local playsession = {
{"AgileW", {519266}},
{"Nezeken", {762977}},
{"yottahawk", {1258260}},
{"Serennie", {1340}},
{"Cojak86", {1250409}},
{"samnrad", {1240635}},
{"meinswank", {350321}},
{"kendoctor", {1254878}},
{"umbrax", {29975}},
{"D_Riv", {146447}},
{"thesandbox", {386491}},
{"Chico75", {543946}},
{"yulingqixiao", {684043}},
{"somestringsattached", {94790}},
{"Upsidedowneye", {231490}},
{"rofl_bagel_mcswaggins", {596965}},
{"FoxBox808", {1117400}},
{"Zymoran", {498584}},
{"ClassAction", {5130}},
{"xiaoxi", {917311}},
{"ardent321", {116939}},
{"athrai", {41818}},
{"AGoodName", {177040}},
{"LastWanderer", {174990}},
{"Neverbefore", {313471}},
{"camcam1o", {348135}},
{"Sneakypoop", {1000633}},
{"cabb99", {215360}},
{"Dr_Devious", {941198}},
{"xiaoshui05", {10160}},
{"Parkouralvoil", {4412}},
{"numberoverzero", {14914}},
{"Puph", {704493}},
{"crash893", {160862}},
{"twinkie422", {5621}},
{"shea717", {4475}},
{"Setherizor", {180444}},
{"parkkk", {34152}},
{"Griffin904", {3404}},
{"sudoksh", {6657}},
{"lthcweb", {26143}},
{"Agocelt", {517851}},
{"perfectwill", {144055}},
{"Xaoc", {323690}},
{"Nikolaa", {173743}},
{"Tetrahedron", {263112}},
{"rjdunlap", {179414}},
{"dbellTV", {14563}},
{"Jitikko", {100650}},
{"ManuelG", {54505}},
{"Malorie_sXy", {59401}},
{"BlkKnight", {35356}},
{"Krengrus", {24937}},
{"speedytech", {7315}},
{"Kirari", {17317}},
{"redlabel", {16445}}
}
return playsession

View File

@ -1,18 +0,0 @@
local playsession = {
{"mewmew", {142647}},
{"jackazzm", {142712}},
{"Hanakocz", {142534}},
{"bigjoemonger", {141842}},
{"cookiesnm1lk", {137855}},
{"vvictor", {120823}},
{"darklight720", {119268}},
{"TheIronCove", {13569}},
{"Tamika", {107277}},
{"T-A-R", {91106}},
{"Serjik.exe", {49025}},
{"thesandbox", {45142}},
{"Zorky", {10821}},
{"boksiora", {6339}},
{"Miteone", {3834}}
}
return playsession

View File

@ -1,11 +0,0 @@
local playsession = {
{"Dammpi", {395943}},
{"iReed", {395497}},
{"toddrofls", {389258}},
{"HYPPS", {351352}},
{"fkeentm", {60502}},
{"tykak", {185611}},
{"Salmonei", {5722}},
{"sharpshot2566", {3306}}
}
return playsession

View File

@ -1,8 +0,0 @@
local playsession = {
{"rjdunlap", {163590}},
{"hashkins", {1185}},
{"Bradcool", {3818}},
{"turbo2015", {10341}},
{"625dennis", {52105}}
}
return playsession

View File

@ -1,9 +0,0 @@
local playsession = {
{"Serennie", {1950}},
{"Stinson_5", {357781}},
{"Muppet123", {6588}},
{"Kyte", {102291}},
{"KrotikAE", {1501}},
{"Ed9210", {35072}}
}
return playsession

View File

@ -1,39 +0,0 @@
local playsession = {
{"Yannickool2", {507935}},
{"WorldofWarIII", {644152}},
{"Xenoman99", {765461}},
{"dingusdonkey", {584722}},
{"Maggnz", {735241}},
{"Nezeken", {723670}},
{"TXL_PLAYZ", {696663}},
{"Fingerdash", {5387}},
{"Hutspovian", {693108}},
{"rjdunlap", {601628}},
{"GandoharTheGreat", {661673}},
{"Thymey", {121184}},
{"Orious", {444195}},
{"yulingqixiao", {82658}},
{"vonlam999", {312787}},
{"Vezito", {12765}},
{"BlkKnight", {524391}},
{"xiaoxi", {428176}},
{"ManuelG", {411906}},
{"seatortoise", {66794}},
{"alston13r", {27075}},
{"kenmras", {352853}},
{"safdas", {21489}},
{"abnoeh", {12572}},
{"Zippy", {215793}},
{"brygjold", {11329}},
{"Eddyy", {49347}},
{"perfectwill", {14829}},
{"tykak", {161167}},
{"MrUFOcatcher", {160732}},
{"KKnD", {1937}},
{"Netbert", {3496}},
{"OmegaTitan177", {130441}},
{"Fizzbuzza", {22040}},
{"joe32", {81419}},
{"yottahawk", {55102}}
}
return playsession

View File

@ -1,19 +0,0 @@
local playsession = {
{"rlidwka", {179922}},
{"Redbeard28", {178888}},
{"Zymoran", {178352}},
{"Tony3D", {176066}},
{"hommedelaroche", {177053}},
{"NappingYG", {134812}},
{"TXL_PLAYZ", {74921}},
{"inesoa", {175305}},
{"epicNtek", {175119}},
{"Thorgal", {173759}},
{"tyssa", {154534}},
{"Agocelt", {124873}},
{"Serennie", {41780}},
{"silentpig", {12067}},
{"ManuelG", {53416}},
{"Malorie_sXy", {44455}}
}
return playsession

View File

@ -1,47 +0,0 @@
local playsession = {
{"EPO666", {539954}},
{"Preums", {538915}},
{"HYPPS", {537998}},
{"beranabus", {349827}},
{"nahaj", {266388}},
{"KIRkomMAX", {155393}},
{"yulingqixiao", {213357}},
{"Leon55", {48909}},
{"Ed9210", {521178}},
{"NASER", {239904}},
{"Theis", {509760}},
{"jackazzm", {50968}},
{"Jardee", {281093}},
{"Kasimda", {3994}},
{"mlbghoon", {463517}},
{"Noxium", {273538}},
{"Preizhour", {4129}},
{"pelageyka", {290609}},
{"TNSepta", {103829}},
{"LLopes", {8717}},
{"Krengrus", {417441}},
{"edwar88", {130888}},
{"adam1285", {291196}},
{"D0pex", {369484}},
{"James_Hackett", {355598}},
{"Silverwolf9300", {5483}},
{"Lukas9580CZ", {56572}},
{"Nikkichu", {7940}},
{"barton1906", {3630}},
{"JB_Delta", {69658}},
{"mewmew", {30129}},
{"TXL_PLAYZ", {1723}},
{"Farglon", {3616}},
{"minipini55", {117}},
{"DKarma", {168858}},
{"salva1234567", {6430}},
{"Lucasuper32", {4989}},
{"XasaX", {129037}},
{"legionesp92", {144865}},
{"Harryh24", {35039}},
{"Asiom", {19064}},
{"dadav", {14957}},
{"ciber_man", {71373}},
{"Bartell", {5953}}
}
return playsession

View File

@ -1,27 +0,0 @@
local playsession = {
{"GuidoCram", {417511}},
{"urbanos", {242709}},
{"pwoland", {325340}},
{"die_ott", {197135}},
{"MovingMike", {156747}},
{"tyssa", {369066}},
{"Marenti", {290}},
{"RegularLemons", {151055}},
{"Argus_Raven", {276849}},
{"Tinct", {173646}},
{"karotte71", {9221}},
{"idrewt", {28179}},
{"facere", {228278}},
{"untouchablez", {2947}},
{"jangelo2", {94814}},
{"hydrospade", {36576}},
{"legendary_banana", {181498}},
{"Till223", {84197}},
{"inechi", {68767}},
{"bhenoa", {152225}},
{"killerghost15", {19849}},
{"p0p3", {128162}},
{"fred364f", {6614}},
{"Monkeyboy1024", {1318}}
}
return playsession

View File

@ -1,10 +0,0 @@
local playsession = {
{"Synessus", {926}},
{"Tony3D", {5056}},
{"jeffertoot", {4388}},
{"MontrealCrook", {807}},
{"rjdunlap", {6056}},
{"TXL_PLAYZ", {88134}},
{"Monkeyboy1024", {669}}
}
return playsession

View File

@ -1,11 +0,0 @@
local playsession = {
{"Guitoune", {886}},
{"kalenmonster", {286690}},
{"EPO666", {284026}},
{"mipmop", {266805}},
{"dog80", {57362}},
{"hinr", {198877}},
{"Swisspick", {3541}},
{"Furancebob", {442}}
}
return playsession

View File

@ -1,53 +0,0 @@
local playsession = {
{"irkan", {329649}},
{"hubertgame", {607416}},
{"Frexich", {59889}},
{"NekoBaron", {430825}},
{"mohamed30766", {608304}},
{"Unrealrules", {602077}},
{"JordyXander", {46335}},
{"Malorie_sXy", {604158}},
{"AroN57", {572018}},
{"itskris", {22579}},
{"pwoland", {593155}},
{"Nick1593", {467334}},
{"CawaEast", {538798}},
{"Ace67aod", {149219}},
{"zbirka", {583037}},
{"okan009", {283767}},
{"xmarisanx", {296913}},
{"AlexeyQ", {254761}},
{"Ska-Dee", {61731}},
{"Kiwicake", {252958}},
{"jose78930", {9630}},
{"Serennie", {435403}},
{"Dragon_0_0_0", {5875}},
{"yulingqixiao", {469862}},
{"CatheteriZedEYE", {359416}},
{"ManuelG", {456300}},
{"MovingMike", {407561}},
{"Tyvix", {324107}},
{"Rados", {353394}},
{"he-duun", {2351}},
{"LaSheppard", {31987}},
{"peerke", {10845}},
{"dog80", {127655}},
{"Daultash", {15424}},
{"dpoba", {201040}},
{"vk9i", {67419}},
{"jackazzm", {14526}},
{"cazohuze", {8183}},
{"LeoRuivao", {139533}},
{"seeyorise", {48121}},
{"Hempy", {18548}},
{"Cloner", {38617}},
{"TovaMire", {62287}},
{"SoCoolZ", {58696}},
{"storz676", {18940}},
{"SpincsGaming", {45413}},
{"cubemaster_dk", {5829}},
{"urbanos", {2115}},
{"Vuldunobetro", {8322}},
{"tomboy", {3736}}
}
return playsession

View File

@ -1,41 +0,0 @@
local playsession = {
{"Markle", {422469}},
{"ManuelG", {638356}},
{"tykak", {609020}},
{"Dionysusnu", {679560}},
{"kendoctor", {579224}},
{"OmegaLunch", {661535}},
{"datadrian", {577548}},
{"jimbo6805", {576478}},
{"yulingqixiao", {534476}},
{"Weizenbrot", {571807}},
{"mewmew", {568713}},
{"Pyroman69", {631115}},
{"Guitoune", {70761}},
{"Krengrus", {353747}},
{"Hulk", {456697}},
{"Tribbiani", {4135}},
{"waxman", {32594}},
{"avatarlinux", {252757}},
{"Arusu", {106921}},
{"NASER", {457561}},
{"Khamurdik", {435471}},
{"McC1oud", {238648}},
{"MovingMike", {253955}},
{"Vadim135", {5946}},
{"Silverwolf9300", {225694}},
{"YDoINeedAccForMods", {236087}},
{"pelageyka", {233120}},
{"vonlam999", {216326}},
{"yottahawk", {200304}},
{"Maggnz", {171354}},
{"sid123", {170704}},
{"MosTec", {66958}},
{"ISniffPetrol", {109967}},
{"Timfee", {84086}},
{"harukine", {108428}},
{"XasaX", {48937}},
{"Dior_cz", {29622}},
{"TNSepta", {26046}}
}
return playsession

View File

@ -1,5 +0,0 @@
local playsession = {
{"JordyXander", {107717}},
{"SlideQ", {107006}}
}
return playsession

View File

@ -1,12 +0,0 @@
local playsession = {
{"MKIch", {8126}},
{"facere", {8983}},
{"Nikolaa", {6430}},
{"GuidoCram", {6272}},
{"MovingMike", {1155}},
{"beggs2k", {110427}},
{"zelrun", {106308}},
{"Nalleknas", {19468}},
{"hwdev", {380}}
}
return playsession

Some files were not shown because too many files have changed in this diff Show More