Skalth
Brian
Select PZ brush and hold Ctrl while using it.
Thank you so much
Select PZ brush and hold Ctrl while using it.
I think you can use one of these traps i dunno what they are called.Do anyone know how to make items unmoveable in the newest remere and tfs 1.1?
I tried the sparkling..it works until someone goes the way with "Browse Field"...
Then u can just drag & drop it out of anything.
Any ideas?
try setting a action id on them, works for meDo anyone know how to make items unmoveable in the newest remere and tfs 1.1?
I tried the sparkling..it works until someone goes the way with "Browse Field"...
Then u can just drag & drop it out of anything.
Any ideas?
local unmoveable = {
[1111] = {text = "You cannot move tables."},
[1111] = {text = "You cannot move chairs."}
}
function onMoveItem(cid, item, fromPosition, toPosition)
P = unmoveable[item.itemid]
if (not p) then
return true
end
doPlayerSendCancel(cid, P.text)
doTeleportThing(item.uid, fromPosition)
return true
end
If your server supports the onMoveItem function then you can use this...
Code:local unmoveable = { [1111] = {text = "You cannot move tables."}, [1111] = {text = "You cannot move chairs."} } function onMoveItem(cid, item, fromPosition, toPosition) P = unmoveable[item.itemid] if (not p) then return true end doPlayerSendCancel(cid, P.text) doTeleportThing(item.uid, fromPosition) return true end
set the same AID for any item you don't want moved and put the AID in moveevents.xml
doTeleportThing(item.uid, fromPosition)
doTeleportThing(item.uid, fromPosition, false)