ifmapper 0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. data/HISTORY.txt +2 -0
  2. data/IFMapper.gemspec +21 -0
  3. data/IFMapper.rb +27 -0
  4. data/icons/copy.png +0 -0
  5. data/icons/cut.png +0 -0
  6. data/icons/filenew.png +0 -0
  7. data/icons/fileopen.png +0 -0
  8. data/icons/filesave.png +0 -0
  9. data/icons/filesaveas.png +0 -0
  10. data/icons/help.png +0 -0
  11. data/icons/kill.png +0 -0
  12. data/icons/nextpage.png +0 -0
  13. data/icons/paste.png +0 -0
  14. data/icons/prevpage.png +0 -0
  15. data/icons/printicon.png +0 -0
  16. data/icons/redo.png +0 -0
  17. data/icons/saveas.png +0 -0
  18. data/icons/undo.png +0 -0
  19. data/icons/winapp.png +0 -0
  20. data/icons/zoom.png +0 -0
  21. data/lib/IFMapper/Connection.rb +63 -0
  22. data/lib/IFMapper/FXAboutDialogBox.rb +32 -0
  23. data/lib/IFMapper/FXConnection.rb +283 -0
  24. data/lib/IFMapper/FXConnectionDialogBox.rb +126 -0
  25. data/lib/IFMapper/FXMap.rb +1614 -0
  26. data/lib/IFMapper/FXMapDialogBox.rb +51 -0
  27. data/lib/IFMapper/FXMapFileDialog.rb +29 -0
  28. data/lib/IFMapper/FXMapperSettings.rb +45 -0
  29. data/lib/IFMapper/FXMapperWindow.rb +1051 -0
  30. data/lib/IFMapper/FXPage.rb +24 -0
  31. data/lib/IFMapper/FXPageDialogBox.rb +38 -0
  32. data/lib/IFMapper/FXRoom.rb +218 -0
  33. data/lib/IFMapper/FXRoomDialogBox.rb +119 -0
  34. data/lib/IFMapper/FXSearchDialogBox.rb +51 -0
  35. data/lib/IFMapper/FXSpline.rb +54 -0
  36. data/lib/IFMapper/FXWarningBox.rb +45 -0
  37. data/lib/IFMapper/IFMReader.rb +613 -0
  38. data/lib/IFMapper/Map.rb +110 -0
  39. data/lib/IFMapper/PDFMapExporter.rb +315 -0
  40. data/lib/IFMapper/Page.rb +158 -0
  41. data/lib/IFMapper/Room.rb +104 -0
  42. data/maps/Bureaucracy.ifm +75 -0
  43. data/maps/Hollywood_Hijinx.ifm +149 -0
  44. data/maps/Jigsaw.ifm +806 -0
  45. data/maps/LGOP.ifm +705 -0
  46. data/maps/Mercy.ifm +76 -0
  47. data/maps/Planetfall.ifm +186 -0
  48. data/maps/Plundered_Hearts.ifm +251 -0
  49. data/maps/Ralph.ifm +50 -0
  50. data/maps/Robots_of_Dawn.ifm +224 -0
  51. data/maps/Seastalker.ifm +149 -0
  52. data/maps/Sherlock.ifm +209 -0
  53. data/maps/SoFar.ifm +72 -0
  54. data/maps/Starcross.ifm +170 -0
  55. data/maps/Suspended.ifm +82 -0
  56. data/maps/Wishbringer.ifm +277 -0
  57. data/maps/Wishbringer2.ifm +246 -0
  58. data/maps/Zork1.ifm +410 -0
  59. data/maps/Zork2.ifm +150 -0
  60. data/maps/Zork3.ifm +136 -0
  61. data/maps/Zork_Zero.ifm +557 -0
  62. data/maps/anchor.ifm +645 -0
  63. data/maps/atrox.ifm +134 -0
  64. data/maps/awaken.ifm +116 -0
  65. data/maps/babel.ifm +279 -0
  66. data/maps/bse.ifm +150 -0
  67. data/maps/change.ifm +128 -0
  68. data/maps/curses.ifm +307 -0
  69. data/maps/curves.ifm +529 -0
  70. data/maps/edifice.ifm +158 -0
  71. data/maps/frozen.ifm +126 -0
  72. data/maps/glow.ifm +101 -0
  73. data/maps/library.ifm +93 -0
  74. data/maps/mindelec.ifm +89 -0
  75. data/maps/minster.ifm +234 -0
  76. data/maps/muse.ifm +154 -0
  77. data/maps/paperchase.ifm +110 -0
  78. data/maps/space_st.ifm +104 -0
  79. data/maps/stationfall.ifm +320 -0
  80. data/maps/theatre.ifm +182 -0
  81. data/maps/toonesia.ifm +54 -0
  82. data/maps/tortoise.ifm +72 -0
  83. data/maps/vgame.ifm +219 -0
  84. data/maps/weather.ifm +98 -0
  85. data/maps/windhall.ifm +154 -0
  86. data/maps/zebulon.ifm +68 -0
  87. metadata +144 -0
data/maps/curves.ifm ADDED
@@ -0,0 +1,529 @@
1
+ # IFM Map for "Dangerous Curves" by Irene Callaci
2
+ # Based on Release 9 / Serial number 010613
3
+ #
4
+ # This file writen by Dave Chapeskie <dchapes@ddm.crosswinds.net>
5
+ #
6
+ # $Id: curves.ifm,v 1.2 2003/01/11 21:29:21 dchapes Exp $
7
+ #
8
+
9
+ # XXX
10
+ room_width = 0.90;
11
+ room_height = 0.80;
12
+
13
+ # Mark the starting location
14
+ room_border_width = 2 in style Start;
15
+
16
+ # This style is used for connecting rooms between different map sections
17
+ style Connection;
18
+ room_shadow_xoff = 0;
19
+ room_shadow_yoff = 0;
20
+ ps.room_border_dashed = 1;
21
+ tk.room_border_colour = "grey";
22
+ tk.room_colour = "grey90";
23
+ endstyle Connection;
24
+
25
+
26
+ title "Dangerous Curves";
27
+
28
+ ########################################################################
29
+ # Starting items
30
+ item "trenchcoat" keep;
31
+ item "key ring" keep;
32
+ item "apartment key" keep;
33
+ item "car key" tag car_key keep;
34
+ item "office key" keep;
35
+ item "wallet" tag wallet keep;
36
+
37
+
38
+ ########################################################################
39
+ # Tasks that can be done anywhere
40
+ task "get wallet" tag G_wallet need wallet;
41
+ task "open it" follow last;
42
+ task "get money from wallet" tag Bills follow last;
43
+
44
+ task "wait until 11 am" tag w11am cmd "";
45
+ task "wait until 2 pm" tag w2pm after last;
46
+ task "wait until 3 pm" tag w3pm cmd "" after last;
47
+ task "wait until 5 pm" tag w5pm cmd "" after last;
48
+ task "wait until 6 pm" tag w6pm after last;
49
+ task "wait until 7 pm" tag w7pm cmd "" after last;
50
+ task "wait until 8 pm" tag w8pm after last;
51
+ task "wait until 12 pm" tag w12pm cmd "" after last;
52
+ task "wait until 2 am" tag w2am cmd "" after last;
53
+
54
+
55
+ ########################################################################
56
+ map "City";
57
+
58
+ room "Northwest Corner of Main and First" tag NW_Main_First;
59
+ item "Ford";
60
+ task "get in car";
61
+ task "start car" tag start1 follow last need car_key;
62
+
63
+ room "Southwest Corner of Main and First" tag SW_Main_First dir s;
64
+
65
+ room "Southeast Corner of Main and First" tag SE_Main_First dir e;
66
+
67
+ room "Northeast Corner of Main and First" tag NE_Main_First dir n;
68
+ link last to NW_Main_First;
69
+
70
+ room "Outside the Post Office" tag Outside_Post_Office dir n n;
71
+
72
+ room "Outside the Service Station" tag Outside_Service_Station dir n;
73
+
74
+ room "Outside the Hospital" tag Outside_Hospital dir n;
75
+ task "remove trenchcoat";
76
+ task "wear surgical scrubs" tag W_scrubs follow last need scrubes;
77
+ task "remove surgical scrubs" tag R_scrubs;
78
+ task "wear trenchcoat" follow last;
79
+
80
+
81
+ room "Outside Earl's Pawn and Loan" tag Outside_Earl
82
+ dir w w from NW_Main_First;
83
+ room "Outside the Tribune" tag Outside_Tribune dir w w;
84
+ room "Outside the Bank" tag Outside_Bank dir w exit w;
85
+
86
+ room "Kincaid Driveway" dir w w sw style special after start2 oneway;
87
+ task "exit car" tag stop2;
88
+ task "enter car";
89
+ task "start it" tag start3 follow last need car_key;
90
+ link last to Outside_Theater dir e style special after last oneway;
91
+
92
+ room "Kincaid Mansion Portico" dir n after stop2;
93
+ task "knock" tag knock_Kincaid;
94
+
95
+ room "Foyer" dir n after knock_Kincaid;
96
+ room "Drawing Room" tag Kincaid_Drawing_Room dir e exit n;
97
+
98
+
99
+ room "Outside Lenny's Bar" tag Outside_Lenny dir w w from SW_Main_First;
100
+ room "Outside The Hole" tag Outside_Hole dir w;
101
+ room "Entrance to the Alley" tag Alley_Entrance dir w
102
+ link Outside_Tribune;
103
+ # 11 am to 12 pm
104
+ room "Outside the Bijou Theater" tag Outside_Theater dir w
105
+ link Outside_Bank;
106
+ item "youth";
107
+ link last to Theater_Lobby hidden after Bills before w12pm
108
+ cmd to "buy ticket" cmd to "s" cmd from "n";
109
+
110
+
111
+ room "Outside the Drugstore" tag Outside_Drugstore
112
+ dir s s s from SW_Main_First;
113
+ task "pick lock" tag pick_drugstore need lockpicks;
114
+
115
+
116
+ room "Outside Chez Maxine" tag Outside_Maxine dir s se
117
+ style special after start1 oneway;
118
+ task "turn off car" tag stop1 follow start1;
119
+ task "exit car" follow last;
120
+ task "give keys to attendant" tag use_valet give valet_ticket
121
+ after last w6pm;# lose car_key;
122
+ item "valet ticket" tag valet_ticket hidden;
123
+ task "give ticket to attendant" need valet_ticket lose it
124
+ safe after verify_alibi;# give car_key;
125
+ task "give attendant one-dollar bill" after last;
126
+ task "enter car" tag start2 after last;
127
+ link last to Outside_Courthouse dir n
128
+ style special after last before w7pm oneway;
129
+
130
+ room "Inside Chez Maxine" dir w style special need valet_ticket;
131
+ task "ask proprietor about Jessica" tag verify_alibi score 5;
132
+
133
+
134
+ room "Outside the Police Department" tag Outside_Police
135
+ dir s s from SE_Main_First;
136
+ room "Outside the Courthouse" tag Outside_Courthouse dir s;
137
+
138
+
139
+ room "Outside the Vacant Lot" tag Outside_Lot dir e e from SE_Main_First;
140
+ room "Vacant Lot" dir s;
141
+
142
+
143
+ room "Outside the Library" tag Outside_Library dir n n n from NW_Main_First
144
+ link Outside_Service_Station;
145
+
146
+ # Sunday 10 am, Wednesday 7 pm
147
+ room "Outside the Church" tag Outside_Church dir n link Outside_Hospital;
148
+
149
+
150
+ room "Alley" dir s s from Alley_Entrance;
151
+ room "Behind The Hole" dir e;
152
+ task "x garbage";
153
+ item "lipstick" tag lipstick hidden after last score 5;
154
+ room "Behind Lenny's Bar" dir e;
155
+ room "Behind Rosie's Diner" dir e;
156
+ item "newspaper page" tag newspaper;
157
+ task "read newspaper" need newspaper;
158
+
159
+
160
+ room "Freemont Office Building" style Connection
161
+ dir nw from NW_Main_First nopath;
162
+
163
+ # 9 am - ?
164
+ room "City Hall" style Connection
165
+ dir se from SE_Main_First nopath;
166
+
167
+ room "Police Department" style Connection
168
+ dir e from Outside_Police nopath;
169
+
170
+ room "The Palms" style Connection
171
+ dir ne s ne from NE_Main_First nopath;
172
+ link last to Outside_Lot nopath;
173
+
174
+ room "Hospital" style Connection
175
+ dir ne from Outside_Hospital nopath;
176
+
177
+
178
+ # 6 am to midnight
179
+ room "Inside Rosie's Diner" dir sw from SW_Main_First before w12pm;
180
+ item "Flo";
181
+ task "ask Flo about Walter" tag Flo_Walter
182
+ note "freeway argument with mayor";
183
+ task "ask Flo about freeway" after last score 5;
184
+ task "ask Flo about argument" after last score 5;
185
+ task "ask Flo about mayor" after Flo_Walter;
186
+ task "ask Flo about the Jaguar";
187
+
188
+ # 10 am - 6 pm
189
+ room "Inside Earl's Pawn and Loan" dir n from Outside_Earl before w6pm;
190
+ item "lockpicks" tag lockpicks keep;
191
+ #task "how much are the lockpicks";
192
+ task "buy lockpicks" get lockpicks after Bills;
193
+
194
+ # 11 am - 2 am
195
+ room "Inside Lenny's Bar" tag Lennys dir s from Outside_Lenny
196
+ after w11am before w2am;
197
+ task "examine table";
198
+ item "cards" hidden after last;
199
+ task "get cards" after last note "8:00 pm";
200
+ task "ask Lenny about cards" after last;
201
+ task "ply teller with booze" after last w8pm score 3;
202
+ task "ask Lenny about Larry" after last;
203
+ task "tell Frank about land" after w8pm lookup_land;
204
+
205
+ # 2pm - 2am
206
+ room "Inside The Hole" dir s from Outside_Hole after w2pm before w2am;
207
+ task "wait for stripper to finish" tag w_stripper;
208
+ task "ask stripper about the Jaguar" note "Larry";
209
+ task "show lipstick to stripper" need lipstick score 5;
210
+ task "show Marlboro butt to stripper" need butt2;
211
+ task "accuse stripper" after last;
212
+
213
+ # 9 am - 6 pm
214
+ room "Inside the Tribune" dir n from Outside_Tribune before w6pm;
215
+ item "Frank Thibodeaux";
216
+ task "ask Frank about Walter";
217
+ task "ask Frank about Jessica";
218
+ task "ask Frank about Jessica's boyfriend";
219
+ task "ask Frank about the Jaguar";
220
+ task "ask Frank about Jessica's alibi";
221
+ task "ask Frank about the mayor";
222
+ task "ask Frank about freeway" note "he gets a stack of newspapers";
223
+ # XXX unsure of the actual number of papers to read
224
+ task "read newspaper stack" cmd "read newspaper stack" 5
225
+ tag mayor_freeway follow last score 5;
226
+
227
+ # Mon -- Fri 10:00 am to 3:00 pm
228
+ room "Inside First National Bank" dir n from Outside_Bank before w3pm;
229
+
230
+ room "Lobby of the Bijou Theater" tag Theater_Lobby
231
+ dir s s from Outside_Theater style special nopath;
232
+ link last to Outside_Theater hidden oneway;
233
+ room "Bijou Theater, In the Aisle" tag Theater_Aisle dir s;
234
+ room "Bijou Theater, West Side" dir w;
235
+ room "Bijou Theater, East Side" dir e from Theater_Aisle;
236
+ task "sit" note "informant arrives";
237
+ task "yes" follow last;
238
+
239
+ room "In the Drugstore" dir w from Outside_Drugstore
240
+ style special after pick_drugstore;
241
+
242
+ # 9 am - 5 pm
243
+ room "Inside the Courthouse" dir e from Outside_Courthouse before w5pm;
244
+ room "Hall of Records" dir s;
245
+
246
+ # 9 am - 6 pm
247
+ room "Inside the Library" dir w from Outside_Library before w6pm;
248
+ task "ask librarian about Jaguar" tag librarian;
249
+ task "ask librarian about Larry";
250
+
251
+ # 9 am - 5 pm
252
+ room "Inside the Post Office" dir e from Outside_Post_Office before w5pm;
253
+ item "clerk";
254
+
255
+ room "Narthex of the Church" dir nw from Outside_Church;
256
+ room "Church Sanctuary, In the Aisle" tag Church_Aisle dir w;
257
+ task "ask priest about the Jaguar";
258
+ room "In the Pews, North Side" dir n;
259
+ room "In the Pews, South Side" dir s from Church_Aisle;
260
+
261
+ # 6 am - 6pm
262
+ room "Inside the Service Stations" dir e from Outside_Service_Station
263
+ before w6pm;
264
+ item "Jaguar";
265
+ task "ask mechanic about the Jaguar";
266
+ task "ask mechanic about the Larry";
267
+ task "ask mechanic about brakes" note "having brung in car";
268
+ task "get in car" follow last note "hide in the car";
269
+ task "wait" note "for him to leave";
270
+ task "out" note "climbs into Jaguar";
271
+ task "search Jaguar" follow last;
272
+ item "Marlboro cigarette butt" tag butt2 hidden after last;
273
+ task "wait" after last need butt2 note "for him to leave";
274
+ task "out" follow last note "climbs back into Ford"
275
+ score 5;
276
+
277
+
278
+ ########################################################################
279
+ map "Freemont Office Building";
280
+
281
+ room "to street" style Connection;
282
+
283
+ room "Lobby" tag F_Lobby dir nw nopath;
284
+ join last to NW_Main_First go se hidden;
285
+ item "directory";
286
+ # 202 -- Bernice Van Osterhaut Telephone Answering Service
287
+ # 301 -- Liberty Bail Bonds
288
+ # 304 -- Masquerade Costumes and Theatrical Supplies
289
+ # 401 -- Pearl Institute for Youth and Beauty
290
+ # 507 -- Sunland Realty
291
+ item "reception desk";
292
+
293
+ room "Second Floor Stairwell" tag Fr_2nd_Floor dir n go up;
294
+ room "Third Floor Stairwell" tag Fr_3rd_Floor dir n n go up;
295
+ room "Fourth Floor Stairwell" tag Fr_4th_Floor dir n n go up;
296
+ room "Fifth Floor Stairwell" tag Fr_5th_Floor dir n n go up;
297
+ room "Basement" dir s from F_Lobby go down;
298
+
299
+ # Unoccupied offices have signs: For rent, call LA66034
300
+ room "Outside Room 201" dir w from Fr_2nd_Floor exit s;
301
+ room "Outside Room 202" tag O202 dir w;
302
+ room "Outside Room 203" dir w exit s;
303
+ room "Outside Room 204" dir w exit n;
304
+ room "Outside Room 205" dir w exit s;
305
+ room "Outside Room 206" dir w exit n;
306
+ room "Outside Room 207" dir w exit s;
307
+ room "Outside Room 208" dir w exit n;
308
+ room "Outside Room 209" dir w exit s;
309
+ room "Outside Room 210" dir w exit n;
310
+
311
+ room "Outside Room 301" tag O301 dir w from Fr_3rd_Floor exit s;
312
+ room "Outside Room 302" dir w exit n;
313
+ room "Outside Room 303" dir w exit s;
314
+ room "Outside Room 304" tag O304 dir w exit n;
315
+ task "pick lock" tag pick_304 need lockpicks;
316
+ room "Outside Room 305" dir w exit s;
317
+ room "Outside Room 306" dir w exit n;
318
+ room "Outside Room 307" dir w exit s;
319
+ room "Outside Room 308" dir w exit n;
320
+ room "Outside Room 309" dir w exit s;
321
+ room "Outside Room 310" dir w exit n;
322
+
323
+ room "Outside Room 401" tag O401 dir w from Fr_4th_Floor;
324
+ room "Outside Room 402" dir w exit n;
325
+ room "Outside Room 403" dir w exit s;
326
+ room "Outside Room 404" dir w exit n;
327
+ room "Outside Room 405" dir w exit s;
328
+ room "Outside Room 406" dir w exit n;
329
+ room "Outside Room 407" dir w exit s;
330
+ room "Outside Room 408" dir w exit n;
331
+ room "Outside Room 409" dir w exit s;
332
+ room "Outside Room 410" dir w exit n;
333
+
334
+ room "Outside Room 501" dir w from Fr_5th_Floor;
335
+ room "Outside Room 502" dir w exit n;
336
+ room "Outside Room 503" dir w exit s;
337
+ room "Outside Room 504" dir w exit n;
338
+ room "Outside Room 505" dir w exit s;
339
+ room "Outside Room 506" dir w exit n;
340
+ room "Outside Room 507" tag O507 dir w exit s;
341
+ task "pick lock" tag pick_507 need lockpicks after w6pm;
342
+ room "Outside Room 508" dir w exit n;
343
+ room "Outside Room 509" dir w exit s;
344
+ room "Outside Room 510" dir w exit n;
345
+
346
+
347
+ # 202 -- Bernice Van Osterhaut Telephone Answering Service
348
+ room "Inside Room 202" dir n from O202;
349
+ item "switchboard";
350
+
351
+ # 301 -- Liberty Bail Bonds
352
+ # external sign: 9 am to 6 pm Mon-Sat, After Hours Call LA61197
353
+ room "Inside Room 301" dir s from O301;
354
+
355
+ # external sign: 10 am - 8 pm Mon thru Sat
356
+ # 304 -- Masquerade Costumes and Theatrical Supplies
357
+ room "Inside Room 304" dir n from O304 style special after pick_304;
358
+ item "uniform";
359
+ task "examine uniform";
360
+ item "surgical scrubs" tag scrubes hidden after last;
361
+
362
+ room "Inside Room 401" tag Office dir s from O401 style Start start;
363
+ #item "swivel chair";
364
+ #item "wing chair";
365
+ #item "desk";
366
+ item "telephone";
367
+ item "ashtray";
368
+ item "pencil" tag pencil;
369
+ item "money" tag money score 2 keep
370
+ after Ask_alibi Ask_Walter Ask_Jag;
371
+ item "Chesterfield cigarette butt" tag butt1 score 3;
372
+ task "ask Jessica about the Jaguar" tag Ask_Jag;
373
+ task "ask Jessica about Walter" tag Ask_Walter;
374
+ task "ask Jessica about alibi" tag Ask_alibi;
375
+ task "ask Jessica about Chez Maxine" after last;
376
+ task "ask her about hospital" note "room 714";
377
+ task "x desk" tag X_desk;
378
+ task "open middle drawer" after last note "reveals notepad";
379
+ item "notepad" tag notepad hidden;# after last;
380
+ task "get notepad and pencil" after last give notepad pencil;
381
+
382
+ # 507 -- Sunland Realty
383
+ # external sign: 10 am to 6 pm Mon-Sat
384
+ room "Inside Room 507" dir s from O507 before w6pm;
385
+ link last to O507 after pick_507 hidden;
386
+ item "cabinet" note "has 4 drawers";
387
+ #task "ask woman about Walter";
388
+ task "x cabinet" after w6pm;
389
+ task "open third drawer" after last;
390
+ task "look in third drawer for Carlotta" tag lookup_land after last score 5
391
+ note "4855, 4856, 4868, 4870, 5374, 5375, 5377, 5380, 5384";
392
+ task "open top drawer" after last;
393
+ task "look in top drawer for 4855" after last;
394
+ task "look in top drawer for 4856" after last;
395
+ task "look in top drawer for 4868" after last;
396
+ task "look in top drawer for 4870" after last;
397
+ task "open second drawer" after last;
398
+ task "look in second drawer for 5374" after last;
399
+ task "look in second drawer for 5375" after last;
400
+ task "look in second drawer for 5377" after last;
401
+ task "look in second drawer for 5380" after last;
402
+ task "look in second drawer for 5384" after last;
403
+
404
+
405
+ ########################################################################
406
+ map "City Hall";
407
+
408
+ room "to street" style Connection;
409
+
410
+ room "Inside City Hall" dir se nopath exit s;
411
+ join last to SE_Main_First go nw hidden;
412
+ task "show receptionist scrap of paper" need paper;
413
+ task "ask receptionist about Carlotta" after X_paper score 5;
414
+ task "ask receptionist about Larry";
415
+
416
+
417
+ ########################################################################
418
+ map "The Palms Apartments";
419
+
420
+ room "to street" style Connection;
421
+
422
+ room "The Palms Apartments" dir ne nopath;
423
+ join last to NE_Main_First go sw hidden;
424
+ join last to Outside_Lot go s hidden;
425
+
426
+ room "Living Room" tag Apt_Living_Room dir n;
427
+ item "lamp";
428
+ item "sofa";
429
+ task "turn on lamp";
430
+
431
+ room "Hall" tag Apt_Hall dir n;
432
+ room "Bedroom" dir w;
433
+ item "bed";
434
+ item "dresser";
435
+ item "chair";
436
+
437
+ room "Bathroom" dir e from Apt_Hall;
438
+ room "Kitchen" dir e from Apt_Living_Room;
439
+
440
+ ########################################################################
441
+ map "Police Department";
442
+
443
+ room "to street" style Connection;
444
+
445
+ room "Inside the Police Department" dir e nopath exit e;
446
+ join last to Outside_Police go w hidden;
447
+ task "ask cop about Walter";
448
+ task "ask cop about Jessica";
449
+ task "ask cop about Jag";
450
+ task "ask cop about Jessica's boyfriend";
451
+ task "ask cop about Jessica's alibi";
452
+ task "ask cop about Larry" note "mayor's secretary bailed him out";
453
+
454
+ ########################################################################
455
+ map "Hospital";
456
+ room "to street" style Connection;
457
+
458
+ room "Hospital Lobby" tag Hospital_Lobby dir ne nopath exit e;
459
+ join last to Outside_Hospital go sw hidden;
460
+
461
+ room "Hospital Second Floor" dir n go up
462
+ style special after W_scrubs before R_scrubs
463
+ score 5;
464
+ room "Hospital Third Floor" dir n go up exit n w e;
465
+ room "Hospital Fourth Floor" dir n go up exit n w e;
466
+ room "Hospital Fifth Floor" dir n go up exit n w e;
467
+ room "Hospital Sixth Floor" dir n go up exit n w e;
468
+ room "Hospital Seventh Floor" tag Hospital_7 dir nw go up exit n w e;
469
+ room "Hospital Eighth Floor" dir ne go up exit n w e;
470
+ room "Hospital Basement" dir s from Hospital_Lobby go down;
471
+
472
+ room "Outside Room 740" dir w from Hospital_7 exit s;
473
+ room "Outside Room 739" dir w exit n;
474
+ room "Outside Room 738" dir w exit s;
475
+ room "Outside Room 737" dir w exit n;
476
+ room "Outside Room 736" dir w exit s w;
477
+
478
+ room "Outside Room 701" dir n from Hospital_7 exit w;
479
+ room "Outside Room 702" dir n exit e;
480
+ room "Outside Room 703" dir n exit w;
481
+ room "Outside Room 704" dir n exit e;
482
+ room "Outside Room 705" dir n exit w;
483
+ room "Outside Room 706" dir n exit e;
484
+ room "Outside Room 707" dir n exit w;
485
+ room "Outside Room 708" dir n exit e;
486
+ room "Outside Room 709" dir n exit w;
487
+ room "Outside Room 710" dir n exit e;
488
+ room "Northeast Junction" dir n;
489
+ room "Outside Room 711" dir w exit s;
490
+ room "Outside Room 712" dir w exit n;
491
+ room "Outside Room 713" dir w exit s;
492
+ room "Outside Room 714" tag HO_714 dir w exit n;
493
+ room "Outside Room 715" dir w exit s w;
494
+
495
+ room "Inside Room 714" dir n from HO_714;
496
+ item "Walter's clothes";
497
+ task "examine clothes" give paper score 5;
498
+ item "scrape of paper" tag paper hidden keep;
499
+ task "examine paper" tag X_paper need paper
500
+ note "Carlotta Maldonado -- LA63140";
501
+
502
+
503
+ ########################################################################
504
+ # Adjustments required for a proper walkthrough
505
+
506
+ # Don't leave the office without taking the money
507
+ link Office need money;
508
+
509
+ # Driving to Chez Maxine's requires waiting until 6 pm which is after
510
+ # the pawn shop, Tribune, Library and service station close.
511
+ task start1 need lockpicks butt2 after mayor_freeway librarian;
512
+
513
+ ########################################################################
514
+ # Not required, just makes the generated walkthrough nicer/shorter, etc
515
+
516
+ task w2pm in Outside_Hole;
517
+ task w6pm in Outside_Maxine;
518
+ task w8pm in Lennys;
519
+
520
+ # Go to "The Hole" before Chez Maxine (time consideration)
521
+ task start1 after w_stripper;
522
+
523
+ # Don't muck around until after Jessica leaves
524
+ task X_desk need money;
525
+ task G_wallet need money;
526
+
527
+ link Office to O401 hidden before w11am;
528
+
529
+ # EOF