Guest User

Untitled

a guest
Dec 28th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. //******* Guild Manager by Vhan48**********
  2. //******* Please Keep my Credits*********
  3. //********Thank you*******************
  4.  
  5. prontera,135,195,4 script Guild Manager 884,{
  6. {
  7. mes "[Guild Manager]";
  8. mes "Hi "+ strcharinfo ( 0 ) +" I'm the guild manager, I can help you organize a guild for a fee";
  9. next;
  10. mes "[Guild Manager]";
  11. mes "Do you want to avail my service?";
  12. switch(select("Yes!:I'll think about it.")) {
  13. case 1:
  14.  
  15. mes "[Guild Manager]";
  16. mes "Okay,you will need the following items:";
  17. next;
  18. mes "Caveiras (7420) x50";
  19. next;
  20. mes "[Guild Manager]";
  21. mes "Are you sure you to gather it all?";
  22. goto yes_no;
  23. yes_no:
  24. menu "Yes",g_check,"No",m_noitem;
  25.  
  26.  
  27. g_check:
  28. if(countitem(7420)<50)
  29.  
  30. goto m_noitem;
  31. next;
  32. mes "[Guild Manager]";
  33. mes "Seems like , it's a piece of cake for you?";
  34. delitem 7420,50;
  35. next;
  36. mes "[Guild Manager]";
  37. mes "Please Enter the name of the Guild that you want to be organized:";
  38. next;
  39. input .@name$;
  40. next;
  41. mes "[Guild Manager]";
  42. mes "Congratulations. You have now created your own guild!.";
  43. close2;
  44. atcommand "@guild "+.@name$+"";
  45. announce " Guild Master "+ strcharinfo ( 0 ) +" has established the "+.@name$+" Guild! Make your members proud!.",0;
  46. end;
  47.  
  48. m_noitem:
  49. mes "[Guild Manager]";
  50. mes "Sorry,You haven't completed the requirements yet, please come back after completing it.";
  51.  
  52. case 2:
  53. mes "[Guild Manager]";
  54. mes "Ok, decide carefully";
  55. close;
  56. }
  57. }
  58. mes "[Guild Manager]";
  59. mes "Hi "+ strcharinfo ( 0 ) +" . You must not be in a guild and should be base level 99 and job level 70 to avail my services.";
  60. close;
  61.  
  62. }
Add Comment
Please, Sign In to add comment