aboutsummaryrefslogtreecommitdiff
path: root/gamemode/config/sv_newplayer.lua
blob: fc66c82c237d9eb9abc77993eec7fafe5c648882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local np = {}
local inv = nrequire("inventory/inventory.lua")
local itm = nrequire("inventory/item.lua")

np.newdata = function()
	return {
		inventories = {
			{"Equipment", inv.CreateInventory("Equipment"):Serialize()},
			{"Shaped Inventory",inv.CreateInventory("Shaped Inventory"):Serialize()}
		},
		skills = {},
		prayers = {},
		quests = {},
	}
end

np.newmeta = function()
	return {
		lastserver = "67.163.245.187:27015",
		lastlocation = "185 310 524"
	}
end

return np