Examples
Item: item {
Event "Drop item" {
player.dropItem(this)
// player drops item to the current room
item.moveTo(player.currentRoom())
// This does the same as the previous example
disableEvent("Drop item")
// Disables the event because player has dropped item
}
}