skeetzoo
Banned User
skeetzoo submitted a new resource:
houseitems unmoveable outside of house - house revscript
Read more about this resource...
houseitems unmoveable outside of house - house revscript
have you ever wanted an item to never leave players house?
now its possible!
LUA:local echangables = EventCallback -- Define item IDs in a table local itemIds = { hangableLightId = 8580, anotherItemId = 8581, -- Add more item IDs as needed yetAnotherItemId = 8582, } local dustbinId = 1777 -- Function to check if the position is within a house local function isHouseTile(pos) local tile = Tile(pos) return tile and tile:getHouse() ~= nil end -- Function to check if...
Read more about this resource...