Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. namespace = "ZDoom";
  2. include = "SCRIPT00";
  3.  
  4. conversation
  5. {
  6. actor = "ConversationPotionGuy1";
  7.  
  8. page
  9. {
  10. name = "Potion Merchant";
  11. panel = "PANEL002";
  12. dialog = "Hello. What can I do for you?";
  13.  
  14. choice
  15. {
  16. text = "Healing Potion for 5 gold";
  17. yesmessage = "Here is your Healing Potion";
  18. giveitem = "JTTUHealingPotion";
  19. nextpage = 1;
  20. cost
  21. {
  22. item = "gold";
  23. amount = 5;
  24. }
  25. nomessage = "not enough gold!";
  26. }
  27.  
  28. choice
  29. {
  30. text = "Mana Potion for 8 gold";
  31. yesmessage = "Here is your Mana Potion";
  32. giveitem = "JTTUManaPotion";
  33. nextpage = 1;
  34. cost
  35. {
  36. item = "gold";
  37. amount = 8;
  38. }
  39. nomessage = "not enough gold!";
  40. }
  41.  
  42. choice
  43. {
  44. text = "Stamina Potion for 3 gold";
  45. yesmessage = "Here is your Stamina Potion";
  46. giveitem = "JTTUStaminaPotion";
  47. nextpage = 1;
  48. cost
  49. {
  50. item = "gold";
  51. amount = 3;
  52. }
  53. nomessage = "not enough gold!";
  54. }
  55. }
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement