Sigoles
Discord: @sigoles
- Joined
- Nov 20, 2015
- Messages
- 1,209
- Solutions
- 2
- Reaction score
- 154
I have 2 items on same sqm,
how to check only one of them?
tfs 1.2
how to check only one of them?
LUA:
function onStepIn(creature, item, position, fromPosition)
local monster = creature:getMonster()
if not monster or monster:getName():lower() ~= 'the sinister hermit' then
return true
end
item:remove() -- no working
end
tfs 1.2