mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 17:49:20 +02:00
11 lines
276 B
Lua
11 lines
276 B
Lua
function onStepIn(creature, item, position, fromPosition)
|
|
if creature:isPlayer() and creature:getPlayer():isSorcerer() then
|
|
item:transform(453, 1)
|
|
item:decay()
|
|
end
|
|
end
|
|
|
|
function onStepOut(creature, item, position, fromPosition)
|
|
item:transform(452, 1)
|
|
item:decay()
|
|
end |