Imported Upstream version 6.33.1~b2+dfsg.1
[debian_inform6.git] / lib / verblib.h
blob12e361c6e808ef34b391d91bdb76373e7a650cba
1 ! ==============================================================================
2 ! VERBLIB: Front end to standard verbs library.
4 ! Supplied for use with Inform 6 -- Release 6/12-beta1 -- Serial number 140724
6 ! Copyright Graham Nelson 1993-2004 and David Griffith 2012-2014
8 ! This code is licensed under either the traditional Inform license as
9 ! described by the DM4 or the Artistic License version 2.0. See the
10 ! file COPYING in the distribution archive or at
11 ! https://github.com/DavidGriffith/inform6lib/
13 ! In your game file, Include three library files in this order:
14 ! Include "Parser";
15 ! Include "VerbLib";
16 ! Include "Grammar";
17 ! ==============================================================================
19 System_file;
21 ! ------------------------------------------------------------------------------
23 Default AMUSING_PROVIDED 1;
24 Default MAX_CARRIED 100;
25 Default MAX_SCORE 0;
26 Default NUMBER_TASKS 1;
27 Default OBJECT_SCORE 4;
28 Default ROOM_SCORE 5;
29 Default SACK_OBJECT 0;
30 Default TASKS_PROVIDED 1;
32 #Ifndef task_scores;
33 Array task_scores -> 0 0 0 0;
34 #Endif;
36 Array task_done -> NUMBER_TASKS;
38 #Ifndef LibraryMessages;
39 Object LibraryMessages;
40 #Endif;
42 #Ifndef NO_PLACES;
43 [ ObjectsSub; Objects1Sub(); ];
44 [ PlacesSub; Places1Sub(); ];
45 #Endif; ! NO_PLACES
47 #Ifdef USE_MODULES;
48 Link "verblibm";
49 #Ifnot;
50 Include "verblibm";
51 #Endif; ! USE_MODULES
53 ! ==============================================================================
55 Undef LIBRARY_STAGE; Constant LIBRARY_STAGE = AFTER_VERBLIB;
57 ! ==============================================================================