AINE: Accelerated Interactive Narrator Engine
  • Download
  • References
  • Games
  • Wiki
  • Facebook Twitter
  • Object

    Room

  • Name

    chars

  • Examples

    Room: room{
    chars: [
    someChar,
    someChar2
    ]
    // Assigning characters to room doing declaration

    Event: Game_Start {
    // Prints a list of all characters in the room to the console

    foreach (Characters in chars as char)
    print(char.getName())

    // Prints player name to the console if player is in room

    if(player.currentRoom() == this)
    print(player.getName())
    }
    }

    Character: someChar
    Character: someChar2
  • Description

    Holds a list of characters in the room.
  • Syntax

    • chars: Character
    • chars: [Character1, ..., CharacterN]
  • Related

    Character

  • Contact
  • Terms of Use
  • GitHub
  • Drakkashi.com

The copyright of all images rendered by me goes to their respective owners.
© 2008 Daniel Svejstrup Christensen