blob: 09638ebcbc330e894019c6e74518aae7e337e19e (
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 = "-1209 1544 -1770"
}
end
return np
|