Advertisement
Dwarvenstarr

Untitled

Nov 12th, 2023 (edited)
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. Script #1
  2.  
  3. fput ("Ask Ceryaen for task")
  4.  
  5. loop do
  6. line = script.gets?
  7. pause 0.05 unless line
  8.  
  9. if line =~ /Our artificers have developed a tool that can also reveal the auras/
  10. fput ("decline task")
  11. pause 1
  12. fput ("Ask Ceryaen about standing")
  13. pause 600
  14. fput ("Ask Ceryaen for task")
  15. end
  16. if line =~ /Still, there are horrors in the depths that must be dealt with, if you are willing/
  17. fput ("decline task")
  18. pause 1
  19. fput ("Ask Ceryaen about standing")
  20. pause 600
  21. fput ("Ask Ceryaen for task")
  22. end
  23. if line =~ /You will wait while others do what was asked of you/
  24. pause 1
  25. fput ("Ask Ceryaen about standing")
  26. pause 60
  27. fput ("Ask Ceryaen for task")
  28. end
  29. if line =~ /The waters between you and us are vast, and only the best should be trusted to carry you landwalkers to us/
  30. fput ("accept task")
  31. break
  32. end
  33. end
  34.  
  35. pause 2
  36. fput ("Ask Ceryaen about standing")
  37. exit
  38.  
  39.  
  40. =========================================================================================================================================
  41. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  42. =========================================================================================================================================
  43.  
  44. Script #2
  45.  
  46. fput ("go pool")
  47.  
  48. loop do
  49. line = script.gets?
  50. pause 0.05 unless line
  51.  
  52. if line =~ /right up ahead\. Encourage the dolphin away|left up ahead\. Encourage the dolphin towards/
  53. fput ("lean left")
  54. end
  55. if line =~ /the left up ahead\. Encourage the dolphin away|right up ahead\. Encourage the dolphin towards/
  56. fput ("lean right")
  57. end
  58. if line =~ /you can brush it away|If you don't brush it soon/
  59. fput ("brush")
  60. end
  61. if line =~ /Rubbing it aside|If you don't rub it soon|recover if you can rub it away\./
  62. fput ("rub")
  63. end
  64. if line =~ /Jumping now may just give you a chance\!|You should jump to avoid it| Jump\!/
  65. fput ("jump")
  66. end
  67. if line =~ /Ducking now may|slam into the rudder\!|You should duck to avoid it| Duck\!/
  68. fput ("duck")
  69. end
  70. if line =~ /dolphin must adjust|Careful adjustment now|Adjust your heading/
  71. fput ("adjust")
  72. end
  73. if line =~ /Cleaning it aside|If you don't clean it soon|recover if you can clean it away/
  74. fput ("clean")
  75. end
  76. if line =~ /You believe you've satisfied Ceryaen's request/
  77. fput ("snap")
  78. break
  79. end
  80. end
  81.  
  82. fput ("ask ceryaen about task")
  83. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement