blob: 9bb14202df6354ceb21ebcc50f1d854b8a1d54ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
|