summaryrefslogtreecommitdiff
path: root/gamemode/server
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/server')
-rw-r--r--gamemode/server/database.lua10
1 files changed, 8 insertions, 2 deletions
diff --git a/gamemode/server/database.lua b/gamemode/server/database.lua
index 3a40fe5..9c4a827 100644
--- a/gamemode/server/database.lua
+++ b/gamemode/server/database.lua
@@ -34,11 +34,11 @@ function storeTable(uniqueIdentifier, table)
end
-local function convertTableToText(tbl)
+local function storetable(tbl)
if(GM.StorageMethod == "Text") then
elseif(GM.StorageMethod == "Static Map") then
-
+ local storagetable = convertTableStatic(tbl)
elseif(GM.StorageMethod == "LZWCompressed") then
else
@@ -55,6 +55,12 @@ local function convertTableStatic(tbl)
print("\tGM.StorageMethod is set to \"Static Map\", but GM.StoreageStaticMap is not defined!")
return
end
+ local converted = {}
+
+
+
+end
+local function parseStaticTable(tbl)
end