mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-15 21:03:46 +03:00
57 lines
1.3 KiB
Lua
57 lines
1.3 KiB
Lua
--[[
|
|
| 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/
|
|
--]]
|
|
|
|
VyHub.Advert = VyHub.Advert or {}
|
|
VyHub.adverts = VyHub.adverts or {}
|
|
|
|
local current_advert = 0
|
|
|
|
function VyHub.Advert:refresh()
|
|
VyHub.API:get("/advert/", nil, { active = "true", serverbundle_id = VyHub.server.serverbundle.id }, function(code, result)
|
|
VyHub.adverts = result
|
|
end)
|
|
end
|
|
|
|
function VyHub.Advert:show(advert)
|
|
if advert then
|
|
local lines = string.Explode('\n', advert.content)
|
|
local color = VyHub.Util:hex2rgb(advert.color)
|
|
|
|
local prefix = VyHub.Config.advert_prefix
|
|
|
|
for _, line in ipairs(lines) do
|
|
VyHub.Util:print_chat_all(line, prefix, color)
|
|
end
|
|
end
|
|
end
|
|
|
|
function VyHub.Advert:next()
|
|
current_advert = current_advert + 1;
|
|
|
|
local advert = VyHub.adverts[current_advert];
|
|
|
|
if advert then
|
|
VyHub.Advert:show(advert)
|
|
else
|
|
current_advert = 0
|
|
end
|
|
end
|
|
|
|
hook.Add("vyhub_ready", "vyhub_advert_vyhub_ready", function ()
|
|
VyHub.Advert:refresh()
|
|
|
|
timer.Create("vyhub_advert_next", VyHub.Config.advert_interval, 0, function()
|
|
VyHub.Advert:next()
|
|
end)
|
|
|
|
timer.Create("vyhub_advert_refresh", 300, 0, function ()
|
|
VyHub.Advert:refresh()
|
|
end)
|
|
end) |