Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NpcTalk("Heh you can't go in there");
- NpcTalk("Only employees of the grocery store can go in");
- int choice = showMenu(new String[] {"Well can I get a job here?","Sorry I didn't realise"});
- if(choice == 0) {
- jobhere();
- } else if(choice == 1) {
- sorry();
- }
- }
- private void jobhere() {
- NpcTalk("Well you're keen I'll give you that");
- NpcTalk("Ok I'll give you a go");
- NpcTalk("Have you got your own apron?");
- PlayerTalk("No");
- NpcTalk("Well you can't work here unless you have an apron");
- NpcTalk("Health and safety regulations, you understand");
- }
- }
- private void sorry() {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment