11c4a73414
This is a test to see if the cache feature is working and the API calls are within reasonable amounts.
11 lines
260 B
Lua
11 lines
260 B
Lua
local meta = FindMetaTable("Player")
|
|
if not meta then return end
|
|
|
|
function meta:IsNoxSupporter()
|
|
if NDB then
|
|
local memberlevel = self:GetMemberLevel()
|
|
return memberlevel == MEMBER_GOLD or memberlevel == MEMBER_DIAMOND
|
|
end
|
|
|
|
return self:GetDTBool(15)
|
|
end
|