Find
Room Interface Class in hh_room and add the following code to the bottom of eventProcActiveObj.
Code:
if (the controlDown and tIsController) then
if pSelectedType = "active" then
ttype = "stuff"
else if pSelectedType = "item" then
ttype = "item"
end if
me.hideInterface(#hide)
return me.getComponent().getRoomConnection().send("ADDSTRIPITEM", "new" && ttype && pSelectedObj)
end if
if (the shiftDown and tIsController) then
me.getComponent().getActiveObject(pSelectedObj).rotate()
end if
You will need to comment out this line:
Code:
if the shiftDown then
--return me.outputObjectInfo(tSprID, "active", the rollover)
end if
This will allow you to use
CTRL+Click to pickup items and Shift+Click to rotate furniture.Special thanks to Webbanditten for this addition from his v14 client.