Advertisement
Guest User

supportnpc

a guest
Nov 26th, 2011
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.41 KB | None | 0 0
  1. //Karul
  2. //ExcaliburRO
  3. prontera,137,228,5  script  Support NPC 94,{
  4.  
  5. mes "[Support]";
  6. mes "What do you want to do?";
  7. L_Main:
  8. set @menu, rand(1,2);
  9. if ( @menu == 1){
  10.     switch(select("I want to feel divine punishment:Request Help")){
  11.         case 1:
  12.                 next;
  13.                 mes "[Support]";
  14.                 mes "Good Day~";
  15.                 next;
  16.                 atcommand "@nuke "+strcharinfo(0)+"";
  17.                 close;
  18.         case 2:
  19.                 next;
  20.                 mes "[Support]";
  21.                 mes "What do you want to report?";
  22.                 menu    "Bug",L_Bug,"Question",L_Question,"Hacker",L_Hacker;
  23.         }
  24.     }
  25.     else{
  26.         switch(select("Request Help:I want to feel divine punishment")){
  27.         case 1:
  28.                 next;
  29.                 mes "[Support]";
  30.                 mes "What do you want to report?";
  31.                 menu    "Bug",L_Bug,"Question",L_Question,"Hacker",L_Hacker;
  32.         case 2:
  33.                 next;
  34.                 mes "[Support]";
  35.                 mes "Good Day~";
  36.                 next;
  37.                 atcommand "@nuke "+strcharinfo(0)+"";
  38.                 close;
  39.         }
  40.     }
  41. L_Bug:
  42.     next;
  43.     mes "[Support]";
  44.     mes "A bug you say... Please by VERY specific about this";
  45.     input @question$;
  46.     close2;
  47.     if(@question$ == "cancel")
  48.     {
  49.         next;
  50.         goto L_Main;
  51.     }
  52.     else
  53.     {
  54.         mes "Are you sure this is your request?";
  55.         mes "'^000088"+@question$+"^000000'";
  56.         if(select("Yes, send it please:Wait. Let me retype it")==2)goto L_Bug;
  57.         {
  58.             mes "Alright I will send it";
  59.             atcommand "@request Bug: "+@question$+"";
  60.             next;
  61.             mes "Your message was sent";
  62.             close;
  63.         }
  64.     }
  65.                                
  66. L_Question:
  67.     next;
  68.     mes "[Support]";
  69.     mes "A question you say... Please by VERY specific about this";
  70.     input @question2$;
  71.     close2;
  72.     if(@question2$ == "cancel")
  73.     {
  74.     next;
  75.     goto L_Main;
  76.     }
  77.     else
  78.     {
  79.         mes "Are you sure this is your question?";
  80.         mes "'^000088"+@question2$+"^000000'";
  81.         if(select("Yes, send it please:Wait. Let me retype it")==2) goto L_Question;
  82.         {
  83.             mes "Alright I will send it";
  84.             atcommand "@request Question: "+@question2$+"";
  85.             next;
  86.             mes "Your message was sent";
  87.             close;
  88.         }
  89.     }
  90. L_Hacker:
  91.     next;
  92.     mes "[Support]";
  93.     mes "A Hacker you say... Please by VERY specific about this";
  94.     input @question3$;
  95.     close2;
  96.     if(@question3$ == "cancel")
  97.     {
  98.         next;
  99.         goto L_Main;
  100.     }
  101.     else
  102.     {
  103.         mes "Are you sure this is your request?";
  104.         mes "'^000088"+@question3$+"^000000'";
  105.         if(select("Yes, send it please:Wait. Let me retype it")==2)goto L_Hacker;
  106.         {
  107.             mes "Alright I will send it";
  108.             atcommand "@request Hacker: "+@question3$+"";
  109.             next;
  110.             mes "Your message was sent";
  111.             close;
  112.         }
  113.     }
  114. }
  115.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement