blob: 1385bf582bc3547b6acc463bb2d4198735b9f10d (
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()},
{"Prayers",inv.CreateInventory("Prayers"):Serialize()},
{"Skills",inv.CreateInventory("Skills"):Serialize()},
},
quests = {},
}
end
np.newmeta = function()
return {
lastserver = "67.163.245.187:27015",
lastlocation = "-1209 1544 -1770"
}
end
return np
|