local text = {
[1] = "I wouldn't leave just yet if I were you.",
[2] = "Sure you wanna leave?",
[3] = "Aren't you forgetting something?",
[4] = "I don\'t think you\'re done here"
}
function onLook(cid, item, position, lookDistance)
if item.uid == 33881 then
if(getPlayerStorageValue(cid, 19372) < 0) then
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, " " .. text[math.random(4)] .. " ")
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Exit.")
end
end
end