No caso de servidor que não o tfs 0.4, usem da seguinte maneira:
function onLook(cid, thing, position, lookDistance)local t = {{name = "engenheiro", storage = 12012, value = 1},{name = "professor", storage = 12013, value = 1}}for _, prof in ipairs(t) doif isPlayer(thing.uid) thenif getPlayerStorageValue(thing.uid, prof.storage) >= prof.value and thing.uid ~= cid thendoPlayerSetSpecialDescription(thing.uid, " and "..prof.name.." (Level "..getPlayerStorageValue(thing.uid, prof.storage)..")")endif getPlayerStorageValue(thing.uid, prof.storage) >= prof.value and thing.uid == cid thenlocal text = "You are "..prof.name.." (Level "..getPlayerStorageValue(thing.uid, prof.storage)..")."doPlayerSendTextMessage(cid, 22, text) endendendreturn trueend