mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 17:49:20 +02:00
11 lines
380 B
Lua
11 lines
380 B
Lua
function onStepIn(creature, item, position, fromPosition)
|
|
if creature:isPlayer() and creature:getPlayer():isSorcerer() then
|
|
doRelocate(item:getPosition(),{x = 32659, y = 32105, z = 09})
|
|
else
|
|
doRelocate(item:getPosition(),{x = 32641, y = 32141, z = 11})
|
|
end
|
|
end
|
|
|
|
function onAddItem(item, tileitem, position)
|
|
doRelocate(item:getPosition(),{x = 32641, y = 32141, z = 11})
|
|
end |