Advertisement
Nmb1Gamer

Untitled

Jan 29th, 2012
41
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 2
  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.         cm.dispose();
  29.         return;
  30.     }
  31.     if (cm.doingQuest(1000) && cm.canComplete()) {
  32.         cm.rewardPlayer(true, true);
  33.         cm.getPlayer().dropYellow("\"Welcome to Kerning City\" has been completed");
  34.         cm.dispose();
  35.     } else {
  36.         if (status == 0) {
  37.             cm.sendNext("#rTITS #bIN #dMY #gASSHOLE#k!!!!");
  38.         } else if (status == 1) {
  39.             cm.sendOk(".......", 2);
  40.             cm.dispose();
  41.         }
  42.     }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement