Advertisement
Conner_36

intro lopp

Jun 30th, 2011
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.84 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. #include "introduction.h"
  4. #include "wait.h"
  5.  
  6. int introduction (void) {
  7.    
  8.     extern int quittersFlag;
  9.    
  10.     printf("This is your character -> @\n\nSay hello!\n");
  11.     wait();
  12.     printf("\n@ is excited about his new master...\n");
  13.     printf("\n@ needs some word food to complete his upcoming journey.\n");
  14.     wait();
  15.     printf("Any letter or number on your keyboard will do.\n");
  16.     printf("I warn you though, @ hates numbers. If you feed him some...\nhe might just run back to the start.\n\nOr worse...\n\nHe may get lost.\n");
  17.     wait();
  18.     printf("If this seems too great a responsibility you can always press (control-D)\n");
  19.     wait();
  20.     printf("I won't hold it against you.\n");
  21.     wait();
  22.     printf("Still here?\n");
  23.     wait();
  24.     printf("Very well then... its time you give some motivation to your character:\n");
  25.    
  26.     return quittersFlag;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement