This commit is contained in:
lifestorm
2024-08-04 23:12:27 +03:00
parent 8064ba84d8
commit 9c918c46e5
7081 changed files with 2173485 additions and 14 deletions

View File

@@ -0,0 +1,54 @@
--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
surface.CreateFont( "arcade_font20", {
font = "Calibri",
size = 20,
weight = 100
})
surface.CreateFont( "arcade_font25", {
font = "Calibri",
size = 25,
weight = 100
})
surface.CreateFont( "arcade_font30", {
font = "Calibri",
size = 30,
weight = 100
})
surface.CreateFont( "arcade_font60", {
font = "Calibri",
size = 60,
weight = 100
})
surface.CreateFont( "arcade_font80", {
font = "Calibri",
size = 80,
weight = 100
})
surface.CreateFont( "arcade_font120", {
font = "Calibri",
size = 120,
weight = 100
})
net.Receive("arcade_adjust_timer", function()
local timers = {
"PacMan_CloseTime",
"PONG_CloseTime",
"Space_CloseTime"
}
for k, v in pairs(timers) do
if (timer.Exists(v)) then
timer.Adjust(v, (ix.config.Get("arcadeTime")) + timer.TimeLeft(v), 1)
end
end
end)