back_ribbon.txt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. //===== eAthena Script =======================================
  2. //= Back Ribbon Quest
  3. //===== By: ==================================================
  4. //= Halca (1.0)
  5. //= Mass Zero (1.1)
  6. //===== Current Version: =====================================
  7. //= 1.3
  8. //===== Compatible With: =====================================
  9. //= Any eAthena Version.
  10. //===== Description: =========================================
  11. //= Seperate Back Ribbon quest.
  12. //===== Additional Comments: =================================
  13. //= 1.2 Fixed wrong labels, added missing text [Lupus]
  14. //= 1.3 Fixed possible exploit [Lupus]
  15. //============================================================
  16. prontera.gat,164,232,5 script Netpia 815,{
  17. mes "[Netpia]";
  18. mes "Wheee! Don't you just love making youself look pretty!?";
  19. mes "I love glamourising myself with all the best accessories!";
  20. next;
  21. mes "[Netpia]";
  22. mes "Ever heard of a ^560000Back Ribbon^000000?";
  23. mes "I can make you one, and you too can be fashionable!";
  24. next;
  25. menu "Make me a ^670000Back ribbon^000000.",-,"What are the requirements?",M_REQ,"No, I dont want one.",M_EXIT;
  26. if(countitem(2244) < 1 || countitem(2209) < 1 || countitem(10007) < 1) GOTO L_NOITEM;//Items: Big Ribbon, Ribbon, Silk Ribbon,
  27. delitem 2244,1;//Items: Big Ribbon,
  28. delitem 2209,1;//Items: Ribbon,
  29. delitem 10007,1;//Items: Silk Ribbon,
  30. mes "[Netpia]";
  31. mes "Wow, thank you! Let me just take your items.";
  32. next;
  33. getitem 5083,1;//Items: Back Ribbon,
  34. mes "[Netpia]";
  35. mes "Okay, now here is your item.";
  36. next;
  37. mes "[Netpia]";
  38. mes "Enjoy being pretty!";
  39. close;
  40. L_NOITEM:
  41. mes "[Netpia]";
  42. mes "Aww... sorry, but I cant make it if you don't bring me the materials.";
  43. next;
  44. M_REQ:
  45. mes "[Netpia]";
  46. mes "Well, for me to make you my BEAUTIFUL Back Ribbon...";
  47. mes "I require these materials:";
  48. mes "1 Big Ribbon.";
  49. mes "1 Ribbon (Slotted).";
  50. mes "1 Silk Ribbon.";
  51. close;
  52. M_EXIT:
  53. mes "[Netpia]";
  54. mes "Aww, well, okay then!";
  55. mes "Be pretty some other time";
  56. close;
  57. }