diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-03 19:33:40 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-03 19:33:40 -0400 |
| commit | dbf40282e8d65b2c5e98e787e3c8fcca4dd6c069 (patch) | |
| tree | a934a3701c6ef55f28a027b7376804573548dd70 /gamemode/server | |
| parent | 0a56354f66b61644d80957c92ace3ed60a6bbd28 (diff) | |
| download | gmstranded-dbf40282e8d65b2c5e98e787e3c8fcca4dd6c069.tar.gz gmstranded-dbf40282e8d65b2c5e98e787e3c8fcca4dd6c069.tar.bz2 gmstranded-dbf40282e8d65b2c5e98e787e3c8fcca4dd6c069.zip | |
All tools menues except material menu added
Diffstat (limited to 'gamemode/server')
| -rw-r--r-- | gamemode/server/database.lua | 10 |
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 |
