Advertisement
iFoxkun

Support NPC

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