finished druid outfit quest

This commit is contained in:
ErikasKontenis
2019-12-15 17:04:00 +02:00
parent d404db3628
commit c1ac298033
16 changed files with 237 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
function onUse(player, item, fromPosition, target, toPosition)
if not target:isItem() then
return false
end
if target:getId() == 5662 and Game.isItemThere({x = 33024, y = 32672, z = 6}, 5662) then
item:transform(5939, 1)
target:getPosition():sendMagicEffect(2)
return true
end
return false
end