home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Games / Muscarine / 37.room < prev    next >
Text File  |  1999-11-23  |  2KB  |  62 lines

  1. /* Inside Hut
  2. /* Room script for GRAAL
  3. /* RF 1=1 fridge open =0 closed
  4.  
  5. /* UPDATE: scroll_frames[;normal_frames]
  6. /*
  7. UPDATE: 6;1
  8.  
  9. /* 3D: max;mid;min;adjspeed (This statement is optional)
  10. /*
  11. /* SECTION: SAME|section_no
  12. /*
  13. SECTION: 2
  14.  
  15. /* BACKDROP: file
  16. /*
  17. BACKDROP: 37BG.iff
  18.  
  19. /* START_POS: startpos_no;image;x;y;L|M|R;floor_no
  20. /*
  21. START_POS: 1;//SIMG11;54;107; ;1
  22.  
  23. /* FLOOR: floor_no;x1;y1;x2;y2;floormaps
  24. /*
  25. FLOOR: 1;42;93;260;169;1-1
  26.  
  27. /* PATH: path_no;floor1;floor2;px1;py1;px2;py2;[{more_points}] (This statement is optional)
  28. /*
  29. /* EXIT: exit_no;x1;y1;x2;y2;x;y;description (This statement is optional)
  30. EXIT: 1;23;14;58;106;49;100;door
  31.  
  32. /* CLPART: file (This statement is optional)
  33. CLPART: 37FG.iff
  34.  
  35. /* ROOMIMGS: number;start_bob;x1;y1;w;h;x-offset;hotspot (This statement is optional)
  36. ROOMIMGS: 2;1;0;0;74;90;74; 
  37.  
  38. /* STATIC: bob;image;x;y (This statement is optional)
  39. /*
  40. /* ANIM: bob;image;anim_ch;anim|ptrn;x;y (This statement is optional)
  41. /*
  42. /* ROOMOBJ: obj;name;room;VIS|NVIS;bob;image;x;y;cx;cy;cimage;prep;PICK|NPICK;anim_ch;verb;icon;LOW|MID|HIGH;types;w1;w2;w3 (This statement is optional)
  43. /*
  44. /* DACT: {cond|comm}
  45. /*
  46. DACT: LIGHTS ON;EXIT
  47.  
  48. /* LINE: dlg;line_no;sentence1;sentence2| ;{cond} (This statement is optional)
  49. /*
  50. /* LACT: dlg;line_no;{cond|comm} (This statement is optional)
  51. /*
  52. /* ACTION: verb_no;{cond|comm} (This statement is optional)
  53. ACTION: 0;IFOBJ 1;IFRF 1=1;IFNOTCARR 39;SAY I better close the fridge before I go.;SAY It's a waste of energy to leave it open all the time.;MOBJ 39;HANDLE;SHOW 39,252,33,RIMG2;W 12;SETRF 1=0;HANDLE -1;MEXIT;GOTO 35,2
  54. ACTION: 0;IFOBJ 1;MEXIT;GOTO 35,2
  55. /* Action 4 - Open
  56. ACTION: 4;IFOBJ 39;IFRF 1=1;IFNOTCARR 39;MOBJ;SAY It's already open.;EXIT
  57. ACTION: 4;IFOBJ 39;IFRF 1=0;IFNOTCARR 39;MOBJ;HANDLE;SHOW 39,252,33,RIMG1;W 12;HANDLE -1;SETRF 1=1;EXIT
  58. /* Action 7 - Close
  59. ACTION: 7;IFOBJ 39;IFRF 1=0;IFNOTCARR 39;MOBJ;SAY It's already closed.;EXIT
  60. ACTION: 7;IFOBJ 39;IFRF 1=1;IFNOTCARR 39;MOBJ;HANDLE;SHOW 39,252,33,RIMG2;W 12;SETRF 1=0;HANDLE -1;EXIT
  61. /* eof
  62.