local blessings = {"\nWisdom of Solitude", "\nSpark of the Phoenix", "\nFire of the Suns", "\nSpiritual Shielding", "\nEmbrace of Tibia"} function onUse(cid, item, fromPosition, itemEx, toPosition) local r = "Received blessings:" for i = 1, 5 do r = getPlayerBlessing(cid, i) and r .. blessings[i] or r end return doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, r:len() == 19 and "No blessings received." or r) end