First commit

This commit is contained in:
2025-02-26 13:42:34 +01:00
commit f465c9072c
2467 changed files with 426214 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
function onStepIn(creature, item, position, fromPosition)
if creature:isPlayer() and creature:getPlayer():getStorageValue(8) == 1 and creature:getPlayer():getStorageValue(9) == 0 then
creature:getPlayer():setStorageValue(9,1)
doRelocate(item:getPosition(),{x = 32268, y = 31856, z = 15})
Game.sendMagicEffect({x = 32268, y = 31856, z = 15}, 14)
else
doRelocate(item:getPosition(),{x = 32191, y = 31938, z = 14})
Game.sendMagicEffect({x = 32191, y = 31938, z = 14}, 1)
doTargetCombatHealth(0, creature, COMBAT_FIREDAMAGE, -55, -55)
end
end