Advertisement
Taizen

Event 002

Aug 18th, 2014
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.60 KB | None | 0 0
  1. switch(argument0){
  2. case 1:{
  3.  
  4. screen_flash(c_black,1,60,false);
  5. objects_hide();
  6.  
  7. global.actor[1] = actor_create(act_garrett,416,640);
  8. global.actor[2] = actor_create(act_norman,432,664);
  9. global.actor[3] = actor_create(act_matt,400,664);
  10.  
  11. global.actor[4] = actor_create(act_aleph,592,224);
  12.  
  13. camera_focus_object(global.actor[1]);
  14. actor_move(global.actor[1],90,240,180,0);
  15. actor_move(global.actor[2],90,240,180,0);
  16. actor_move(global.actor[3],90,240,180,0);
  17. scene_pause(80);
  18. break;}
  19. case 2:{
  20. actor_face(global.actor[4],2);
  21. actor_emote(global.actor[4],em_exclamation,false);
  22. scene_pause(15);
  23. break;}
  24. case 3:{
  25. actor_move(global.actor[4],90,400,80,0);
  26. scene_pause(25);
  27. break;}
  28. case 4:{
  29. actor_delete(global.actor[4]);
  30. actor_face(global.actor[1],3);
  31. text_call("Garrett",sPortraitGarrett,"So I had to work here, at the school, over the summer, right? And it was\ntotally awful and not an experience I would recommend to anyone.");
  32. break;}
  33. case 5:{
  34. text_call("Garrett",sPortraitGarrett,"I found out a \iwhole bunch of stuff\c about our school.");
  35. break;}
  36. case 6:{
  37. text_call("Garrett",sPortraitGarrett,"Did you know that there is another building directly\nbelow the school we are in now?");
  38. break;}
  39. case 7:{
  40. text_call("Matthias",sPortraitMatthias,"You mean, like a basement?");
  41. break;}
  42. case 8:{
  43. text_call("Garrett",sPortraitGarrett,"Sort of, but it's like, an entire building.");
  44. break;}
  45. case 9:{
  46. text_call("Norman",sPortraitNorman,"That isn't like a basement at all.");
  47. break;}
  48. case 10:{
  49. text_call("Garrett",sPortraitGarrett,"No, but listen. There's something weird about this, you know? Wouldn't\nyou question the hell out of this?");
  50. break;}
  51. case 11:{
  52. text_call("Matthias",sPortraitMatthias,"Where's this at, then?");
  53. break;}
  54. case 10:{
  55. text_call("Garrett",sPortraitGarrett,"It's way in the back of the library, like beyond the faculty-only part\nand several doors.");
  56. break;}
  57. case 11:{
  58. text_call("Norman",sPortraitNorman,"I don't believe that we're meant to go down there, if\nit requires \ithat\c much effort.");
  59. break;}
  60. case 12:{
  61. text_call("Matthias",sPortraitMatthias,"But why did we need to come to the gymnasium?");
  62. break;}
  63. case 13:{
  64. text_call("Garrett",sPortraitGarrett,"I stored a few things for us to defend ourselves with here.\nI knew they wouldn't go anywhere, you see. Come on.");
  65. break;}
  66. case 14:{
  67. actor_move(global.actor[1],90,400,300,false);
  68. actor_move(global.actor[3],90,400,300,false);
  69. scene_pause(100);
  70. break;}
  71. case 15:{
  72. actor_emote(global.actor[2],em_ellipses,true);
  73. break;}
  74. case 16:{
  75. text_call("Norman",sPortraitNorman,"This is becoming less and less of a good idea by the second...");
  76. break;}
  77. case 17:{
  78. global.masterEventLine = 5;
  79. screen_fade(c_black,1,120,false);
  80. break;}
  81. default: {scene_end();}
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement