From 22f3c6d96fcb560c13445d4a6135ca3f01d27197 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Fri, 8 Sep 2017 18:48:13 -0400 Subject: Deleted a lot of code Deleted code that was not being used, and some of the images too. --- gamemode/shared/loaditems.lua | 61 ------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 gamemode/shared/loaditems.lua (limited to 'gamemode/shared/loaditems.lua') diff --git a/gamemode/shared/loaditems.lua b/gamemode/shared/loaditems.lua deleted file mode 100644 index dba80e8..0000000 --- a/gamemode/shared/loaditems.lua +++ /dev/null @@ -1,61 +0,0 @@ --- do return end --- --[=[ --- --[[ --- This file loads in all the items --- ]] --- local concmd = include("concommands.lua") --- --local autolua = include("../autolua.lua") --- print("Hello from LoadItems.lua!") --- ART.Items = {} --- local requiredfields = { --- "Name", --- "Shape", --- "Serialize", --- "DeSerialize", --- } --- local defaultfields = { --- ["Serialize"] = function(self) return "" end, --- ["DeSerialize"] = function(self,string) return self end, --- ["Shape"] = {{true}}, --- } --- function ART.RegisterItem(tbl) --- --print("Registering item:" .. tbl.Name) --- for k,v in pairs(requiredfields) do --- assert(tbl[v] ~= nil, "Attempted to register an item without field:" .. v) --- end --- assert(ART.Items[tbl.Name] == nil, "Attempted to register 2 items with the same name!") --- for k,v in pairs(defaultfields) do --- if tbl[k] == nil then --- tbl[k] = v --- end --- end --- ART.Items[tbl.Name] = tbl --- --print("Art is now:") --- --PrintTable(ART) --- end --- --- --autolua.AddLuaSHFolder("/shared/itemsystem") --- --- function ART.GiveItem(player,name) --- assert(ART.Items[name] ~= nil, "Attempted to give a nil item!") --- player:GiveItem(ART.Items[name]) --- player:SynchronizeInventory() --- end --- --- function ART.GetItemByName(name) --- assert(ART.Items[name] ~= nil,"Attempted to get a nil item:" .. name) --- return ART.Items[name] --- end --- --- concommand.Add("artery_printitems",function(ply,cmd,args) --- if not ply:IsAdmin() then return end --- print("Items table:") --- PrintTable(ART.Items) --- end) --- --- concommand.Add("artery_giveitem",function(ply,cmd,args) --- if not ply:IsAdmin() then return end --- print("Trying to give an item:" .. args[1]) --- ART.GiveItem(ply,args[1]) --- end, concmd.AutocompleteFunction(table.GetKeys(ART.Items)), "Give an item to the specified player, or yourself if no player is specified.") --- ]=] -- cgit v1.2.3-70-g09d2