Advertisement
Nmb1Gamer

Untitled

Jan 29th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2. --------------------------------
  3. Server:
  4.     Kerning City
  5. --------------------------------
  6. NPC Title:
  7.     Intro NPC - Part 1
  8. --------------------------------
  9. Created by:
  10.     Ryuuzi~
  11. --------------------------------
  12. Version:
  13.     1.0 - Script Started
  14. --------------------------------
  15. **/
  16.  
  17. var status;
  18.  
  19. function start() {
  20.     status = -1;
  21.     action(1, 0, 0);
  22. }
  23.  
  24. function action(mode, type, selection) {
  25.     if (mode == 1) {
  26.         status++;
  27.     } else {
  28.         if (mode == -1) {
  29.             cm.dispose();
  30.             return;
  31.         } else {
  32.             status--;
  33.         }
  34.     }
  35.     if (!cm.doingQuest()) { // Currently not doing any quests
  36.         if (cm.getStory() == 0) { // Hasn't started the main story
  37.             if (status == 0) {
  38.                 cm.sendNext("Don't get too close man, I can't tell what you're about to do...");
  39.             } else if (status == 1) {
  40.                 cm.sendNext("Oh...I'm sorry. I'm new here, I don't quite know where I'm going actually.", 2);
  41.             } else if (status == 2) {
  42.                 cm.sendNext("...What? How can you not know where you're going? That's impossible, you have to be going somewhere!");
  43.             } else if (status == 3) {
  44.                 cm.sendNext("If you must know, I ran away from home and took this subway all the way to where ever it stops. I'm not going back, ever. I hate it where I lived. Parents can't tell me anything man...", 2);
  45.             } else if (status == 4) {
  46.                 cm.sendNext("You ran away from home? That's what's up man, you gotta have some serious balls to do something like that and just take a subway where you don't know it goes...What's your name little kid?");
  47.             } else if (status == 5) {
  48.                 cm.sendNext("I'm not a little kid! Don't call me that! Do I look like a little kid to you?", 2);
  49.             } else if (status == 6) {
  50.                 cm.sendNext("Yes, actually you quite do. And with that being said, #b#h ##k, you can't live in Kerning City at all! You might as well go live with those rich kid brats in Henesys...");
  51.             } else if (status == 7) {
  52.                 cm.sendNext("What the...how did you know my...", 2);
  53.             } else if (status == 8) {
  54.                 cm.sendNext("Enough. I can see you don't know how things work around here. I hate those brats in Henesys! They're always driving their sleek ass cars over here in Kerning City, they think their so cool! Boy, if I could show them, I would drive their cars off a cliff for all I care...");
  55.             } else if (status == 9) {
  56.                 cm.sendNext("But you would be in the car.", 2);
  57.             } else if (status == 10) {
  58.                 cm.sendNext("Shut up.");
  59.             } else if (status == 11) {
  60.                 cm.sendNext("Tell you what little man, I like you. You can have something that those spoiled little punks in Henesys don't have, street smarts. Down here in Kerning City, it doesn't work like this anywhere else...");
  61.             } else if (status == 12) {
  62.                 cm.sendNext("And I don't want your ass turning into one of those faggot Henesys kids, so use your head little man!");
  63.             } else if (status == 13) {
  64.                 cm.sendNext("Watch the little kid stuff...and what do you mean about the way things work down here?", 2);
  65.             } else if (status == 14) {
  66.                 if (mode == 0) {
  67.                     cm.sendOk("Little bitch...tell anyone about what I offered you, and you die...");
  68.                     cm.dispose();
  69.                 } else {
  70.                     cm.sendNext("Take these shoes #i1072373#. Go to the subway cart to the left, and sell them to whoever wants to buy them. don't get robbed, but if you do, I'll rape you, kill you, then fuck the remains");
  71.                 }
  72.             } else if (status == 15) {
  73.                 cm.sendAcceptDecline("....", 2);
  74.             } else if (status == 16) {
  75.                 cm.startQuest(1000);
  76.                 cm.getPlayer().dropYellow("Started Quest: Welcome to Kerning City~")
  77.                 cm.dispose();
  78.             }
  79.         } else {
  80.             cm.sendOk("The rest of the storyline hasn't been completed yet...");
  81.             cm.dispose();
  82.         }
  83.     } else if (cm.doingQuest(1000)) { // If doing first quest
  84.         cm.sendOk("What're you still doing here? Get out the hell out of here.");
  85.         cm.dispose();
  86.     }
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement