Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
A game that teaches players how to play it. tutorial, teach HowToPlay

Examples:How to Play

To be written...

 


/* global adventurejs A */
var HowToPlay = new adventurejs.Game("HowToPlay", "MyGameDisplay").set({
  title: "How to Play Text Games",
  author: "Clippy",
  description: "The main character is YOU!",
  version: "0.0.1",
});

HowToPlay.createAsset({
  class: "Player",
  name: "Hero",
  is: { active: true },
});

HowToPlay.createAsset({
  class: "Room",
  name: "Classroom",
  description: "",
  exits: {
    // north: "Central Chamber",
  },
});

HowToPlay.createAsset({
  class: "Blackboard",
  name: "blackboard",
  place: { in: "Classroom" },
});

Source files