Advertisement
Guest User

bapho

a guest
May 6th, 2013
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. prt_maze03,52,190,5 script Evil Baphomet 1929,{
  2.  
  3. mes "[ Evil Baphomet ]";
  4. mes "So you're here to make the powerful horns?";
  5. mes "I can make you one if you bring me the right items";
  6. next;
  7. mes "[ Evil Baphomet ]";
  8. mes "These are what I need";
  9. mes "300 Evil Horns",
  10. mes "20 Pieces of Young Twig";
  11. mes "10 Pieces of Baphomet Card";
  12. mes "10 Pieces of Biotite";
  13. next;
  14. mes "and 1 Emblem of the Sun God";
  15. mes "Do you have the items that I need?";
  16. menu "Yes",-,No",L_ayaw;
  17. next;
  18. mes "[ Evil Baphomet ]";
  19. mes "Are the items ready? Let me check.";
  20. next;
  21. if(countitem(923) < 300 || countitem(7018) < 20 || countitem(7297) < 10 || countitem(4147) < 10 || countitem(7806) < 1) goto koolang;
  22. if(countitem(923) >= 300 || countitem(7018) >= 20 || countitem(7297) >= 10 || countitem(4147) >= 10 || countitem(7806) >= 1) goto kontinueq;
  23. close;
  24.  
  25. L_ayaw:
  26. mes "[ Evil Baphomet ]";
  27. mes "Don't waste my time or I'll kill you";
  28. close;
  29.  
  30. koolang:
  31. mes "[ Evil Baphomet ]";
  32. mes "You don't have the complete items needed";
  33. close;
  34.  
  35. kontinueq:
  36. mes "[ Evil Baphomet ]";
  37. mes "Good!! Now here's the horn!!";
  38. delitem 923,300;
  39. delitem 7018,20;
  40. delitem 7297,10;
  41. delitem 4147,10;
  42. delitem 7806,1;
  43. getitem 26027,1;
  44. next;
  45. mes "[ Evil Baphomet ]";
  46. mes "Use my power wisely!!";
  47. announce "Wow! "+strcharinfo(0)+" has just acquired the Evil Baphomet Horns.",8;
  48. close;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement