mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 01:29:21 +02:00
17 lines
416 B
Lua
17 lines
416 B
Lua
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
|
|
if target.itemid ~= 5553 then
|
|
return false
|
|
end
|
|
|
|
if math.random(2) ~= 1 then
|
|
player:say("The golden fish escaped.", TALKTYPE_MONSTER_SAY)
|
|
return true
|
|
end
|
|
|
|
player:say("You catch a golden fish in the bowl.", TALKTYPE_MONSTER_SAY)
|
|
item:transform(5929)
|
|
target:remove()
|
|
toPosition:sendMagicEffect(CONST_ME_MAGIC_BLUE)
|
|
return true
|
|
end
|