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

    [ ] (brackets)

  • Examples

    Item: someItem{
    Name: "Some Item"
    }

    Item: someOtherItem

    Player: player {
    items: [someItem, someOtherItem]
    // Brackets used doing player object declaration to assign several items to the player while loading

    Event: Game_start {
    print(items[0])
    // Outputs "Some Item"
    }

    Event: Leave_Room_First {
    display([
    "You are leaving the starting room",
    "If you have no items picked up, consider doing so before leaving"
    ])
    // Will display the first entry in the list followed by the second entry
    }
    }
  • Description

    Brackets are used to isolate the entries of a list from the rest of the code when declared, and to index existing lists.
  • Syntax

    • [entry1, ..., entryN]

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

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