File:Npc with quest question.png: Difference between revisions

From Arianne
Jump to navigation Jump to search
Content deleted Content added
imported>Hendrik Brummermann
No edit summary
imported>Hendrik Brummermann
added source code
Line 1: Line 1:
<source lang="dot">
digraph finite_state_machine {
rankdir=LR
IDLE -> ATTENDING [ label = "hi" ];
ATTENDING -> ATTENDING [ label = "help" ];
ATTENDING -> ATTENDING [ label = "job" ];
ATTENDING -> QUEST_OFFERED [ label = "quest" ];
QUEST_OFFERED -> ATTENDING [ label = "yes" ];
QUEST_OFFERED -> ATTENDING [ label = "no" ];
ANY -> IDLE [ label = "bye" ];

// special shape for the ANY-pseudo state
ANY [shape = plaintext]
}
</source>

Revision as of 20:23, 21 November 2009

<source lang="dot"> digraph finite_state_machine {

   rankdir=LR
   IDLE -> ATTENDING [ label = "hi" ];
   ATTENDING -> ATTENDING [ label = "help" ];
   ATTENDING -> ATTENDING [ label = "job" ];
   ATTENDING -> QUEST_OFFERED [ label = "quest" ];
   QUEST_OFFERED -> ATTENDING [ label = "yes" ];
   QUEST_OFFERED -> ATTENDING [ label = "no" ];
   ANY -> IDLE [ label = "bye" ];
   // special shape for the ANY-pseudo state
   ANY [shape = plaintext]

} </source>

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current15:41, 22 March 2026Thumbnail for version as of 15:41, 22 March 2026816 × 165 (22 KB)Maintenance script (talk | contribs)== Summary == Importing file

The following page uses this file:

Metadata