Nerevr back
Member
- Joined
- Nov 7, 2014
- Messages
- 269
- Reaction score
- 7
local items = {
[8101] = "1 ET",
[8102] = "2 ET",
[8103] = "5 ET",
[8104] = "3 ET",
[8105] = "7 ET"
}
function onLook(cid, thing, position, lookDistance)
local x = items[thing.uid]
if x then
doCreatureSay(cid, x, TALKTYPE_MONSTER, false, cid, position)
end
return true
end