Examples
Character: char{
team: "The Eagles"
Event: Enter_Room {
// If player and char are not from the same team, text is displayed and player is moved to street
if (player.team != team){
display("You are not welcome here! Leave NOW!")
player.moveTo(street)
}
}
}