Is there a way I could say remove every single object from the players
Inventory to a specified room? and visa versa, every object in a specified
room back to the players Inventory?
for each object in <inventory> {
move <#quest.thing#; someRoom>
}for each object in <someRoom> {
'do something with each object here, then...
move <#quest.thing#; inventory>
}