Files
wnsrc/lua/menu/menu_dupe.lua

61 lines
1.4 KiB
Lua
Raw Normal View History

2024-08-04 22:55:00 +03:00
--[[
| 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/
--]]
ws_dupe = WorkshopFileBase( "dupe", { "dupe" } )
function ws_dupe:FetchLocal( offset, perpage )
local f = file.Find( "dupes/*.dupe", "MOD", "datedesc" )
local saves = {}
for k, v in ipairs( f ) do
if ( k <= offset ) then continue end
if ( k > offset + perpage ) then break end
local entry = {
file = "dupes/" .. v,
name = v:StripExtension(),
preview = "dupes/" .. v:StripExtension() .. ".jpg",
description = "Local duplication stored on your computer. Local content can be deleted in the main menu."
}
table.insert( saves, entry )
end
local results = {
totalresults = #f,
results = saves
}
local json = util.TableToJSON( results, false )
pnlMainMenu:Call( "dupe.ReceiveLocal( " .. json .. " )" )
end
function ws_dupe:FinishPublish( filename, imagename, name, desc, chosenTag, other )
steamworks.Publish( filename, imagename, name, desc, { "dupe", chosenTag }, other.Callback, other.WorkshopID, other.ChangeNotes )
end
--
-- Called from the engine!
--
concommand.Add( "dupe_publish", function( ply, cmd, args )
ws_dupe:Publish( args[1], args[2] )
gui.ActivateGameUI()
end, nil, "", { FCVAR_DONTRECORD } )