xrune

Wydins door no apron (Stage 0)

Mar 17th, 2013
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1.  
  2. NpcTalk("Heh you can't go in there");
  3. NpcTalk("Only employees of the grocery store can go in");
  4. int choice = showMenu(new String[] {"Well can I get a job here?","Sorry I didn't realise"});
  5. if(choice == 0) {
  6. jobhere();
  7. } else if(choice == 1) {
  8. sorry();
  9. }
  10. }
  11. private void jobhere() {
  12. NpcTalk("Well you're keen I'll give you that");
  13. NpcTalk("Ok I'll give you a go");
  14. NpcTalk("Have you got your own apron?");
  15. PlayerTalk("No");
  16. NpcTalk("Well you can't work here unless you have an apron");
  17. NpcTalk("Health and safety regulations, you understand");
  18. }
  19. }
  20. private void sorry() {
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment