function isVip(cid)
-- your check here.. bla
-- return true / false here depending on check
end
data>lib>50-function
LUA:function isVip(cid) getPlayerStorageValue(cid, VIP, 1) end
function isVip(cid)
if getPlayerStorageValue(cid, YOURSTORAGE) > 0 then return true else return false end
end
LUA:function isVip(cid) if getPlayerStorageValue(cid, YOURSTORAGE) > 0 then return true else return false end
function isVip(cid)
return getPlayerStorageValue(cid, STORAGE) > 0
end