function onUse(cid, item, fromPosition, itemEx, toPosition) if getCreatureStorage(cid, 1) == -1 then doCreatureSetStorage(cid, 1, 1) doRemoveItem(item.uid) doCreatureSay(cid, 'You\'ve bribed your way to heaven! The gods now personally keep an eye on you!', TALKTYPE_ORANGE_1, false, cid) local p = getThingPos(cid) for i = 1, 3 do for d = 0, 7 do doSendDistanceShoot(getPosByDir({x=p.x,y=p.y,z=p.z}, math.random(0,7), math.random(2)), p, i == 1 and 30 or 37) end end doSendMagicEffect(p, CONST_ME_HOLYDAMAGE) else doCreatureSay(cid, 'You\'re already being watched over!', TALKTYPE_ORANGE_1, false, cid) end return true end