diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2017-02-18 21:55:55 -0500 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2017-02-18 21:55:55 -0500 |
| commit | a22cbeddc5f8fb61e87a30aa14ba354de5cf4431 (patch) | |
| tree | 297c1dbfb23185c5246e1dd7bdec52253a24ba60 /gamemode/config/sv_newplayer.lua | |
| parent | f4ee62bb0725a3ae94477b2818071f506e4dfd9f (diff) | |
| download | artery-a22cbeddc5f8fb61e87a30aa14ba354de5cf4431.tar.gz artery-a22cbeddc5f8fb61e87a30aa14ba354de5cf4431.tar.bz2 artery-a22cbeddc5f8fb61e87a30aa14ba354de5cf4431.zip | |
Updates
Diffstat (limited to 'gamemode/config/sv_newplayer.lua')
| -rw-r--r-- | gamemode/config/sv_newplayer.lua | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gamemode/config/sv_newplayer.lua b/gamemode/config/sv_newplayer.lua new file mode 100644 index 0000000..9bb1420 --- /dev/null +++ b/gamemode/config/sv_newplayer.lua @@ -0,0 +1,23 @@ +local np = {} +local inv = nrequire("inventory/inventory.lua") +local itm = nrequire("inventory/item.lua") + +np.newdata = function() + return { + inventories = { + {"Equipment", inv.CreateInventory("Equipment"):Serialize()} + }, + skills = {}, + prayers = {}, + quests = {}, + } +end + +np.newmeta = function() + return { + lastserver = "67.163.245.187:27015", + lastlocation = "185 310 524" + } +end + +return np |
