Guest User

Untitled

a guest
Jul 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. turbo_room,117,89,4 script Quest NPC 2 911,{ // ==Change coords, Name of NPC and Sprite==
  2. set .@npc$,"[Mixis]"; // ==Change to name of npc==
  3.  
  4. mes .@npc$; // ==You can change the dialouge if you want==
  5. mes "Pssst!";
  6. mes "Hey! Why are you carrying so many";
  7. mes "items?";
  8. mes "You mind sharing them with me?";
  9. next;
  10. menu "Wolf Flute",l_wbw,"No Thanks!",l_nothanks;
  11.  
  12. l_wbw:
  13. mes .@npc$;
  14. mes "^4EE2ECWolf Flute^000000";
  15. mes "150 Brigan,";
  16. mes "20 Soft Feather,";
  17. mes "10 Gold";
  18. next;
  19. if(countitem(7054) <150) goto l_noitem;
  20. if(countitem(7063) <20) goto l_noitem;
  21. if(countitem(969) <10) goto l_noitem;
  22. delitem 7054,150;
  23. delitem 7063,20;;
  24. delitem 969,200;
  25. getitem 6124,1; // IMPORTANT: Change this to the ItemID of the item you're giving and the amount.
  26. mes .@npc$;
  27. mes "Congratulations! You have earned my ^4EE2ECWolf Flute^000000!";
  28. next;
  29. mes .@npc$;
  30. mes "Goodbye!";
  31. close;
  32.  
  33. l_noitem:
  34. mes .@npc$;
  35. mes "Please come back when you have my required items.";
  36. close;
  37.  
  38. l_nothanks:
  39. mes .@npc$;
  40. mes "Alright, bye for now!";
  41. close;
  42. }
Add Comment
Please, Sign In to add comment