mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-10-17 15:53:26 +02:00
finish many new 7.92 items and missing todo items from 7.8
This commit is contained in:
16
data/actions/scripts/misc/catch_fish.lua
Normal file
16
data/actions/scripts/misc/catch_fish.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
Reference in New Issue
Block a user