main(void)1 void main( void )
2 {
3  //setup Mog and do cutscene
4 freeze(1);
5  playmidi("1009.mid");
6 
7 wait(500);
8  say_stop("All this killing and still no answers.", 1);
9 
10  int &crap = create_sprite(317,301, 0, 0, 0);
11  &temp2hold = &crap;
12  sp_script(&crap, "en-gmog");
13  freeze(&crap);
14 
15  wait(500);
16  say_stop("`4Who dares wake the mighty Mog, king of Goblins?", &crap);
17  wait(500);
18  say_stop("What's this?  You have learned our tongue well, Mog.", 1);
19  wait(500);
20  say_stop("`4Of course.  I was raised by.. what is this?  My comrades litter the ground!", &crap);
21  wait(500);
22  say_stop("It was I who fell them.",1);
23  wait(500);
24 say_stop("NOW TELL ME OF YOUR SECRET DEALINGS WITH THE CAST!", 1);
25  wait(500);
26  say_stop("`4You?  YOU?  I MUST AVENGE MY BROTHERS!", &crap);
27  wait(500);
28  sp_target(&crap, 1);
29  sp_brain(&crap, 9);
30 screenlock(1);
31 unfreeze(1);
32 unfreeze(&crap);
33 }
34