function onStepIn(creature, item, position, fromPosition)
local player = creature:getPlayer()
if not player then
return true
end
if player:isPremium() or config:freePremium then
return true
end
player:teleportTo(fromPosition)
fromPosition:sendMagicEffect(CONST_ME_MAGIC_BLUE)
return true
end