introduce svargrond arena quest

This commit is contained in:
ErikasKontenis
2022-07-24 21:42:40 +03:00
parent a041827f2a
commit b130e66149
24 changed files with 2152 additions and 1178 deletions

View File

@@ -0,0 +1,16 @@
function onStepIn(creature, item, position, fromPosition)
local player = creature:getPlayer()
if not player then
return true
end
doRelocate(item:getPosition(),{x = 32222, y = 31094, z = 07})
item:getPosition():sendMagicEffect(11)
Game.sendMagicEffect({x = 32222, y = 31094, z = 07}, 11)
end
function onAddItem(item, tileitem, position)
doRelocate(item:getPosition(),{x = 32222, y = 31094, z = 07})
item:getPosition():sendMagicEffect(11)
Game.sendMagicEffect({x = 32222, y = 31094, z = 07}, 11)
end