Advertisement
Pahzon

Untitled

Nov 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. custom_require.call(%w[drinfomon events common common-items common-travel dependency])
  2.  
  3.  
  4. class Foragetask
  5. include DRC
  6. include DRCI
  7. include DRCT
  8.  
  9. def runmode
  10. if script.vars[1] =~ /help/i
  11. showhelp
  12. end
  13. if script.vars[1] =~ /task/i
  14. initialize
  15. end
  16. end
  17.  
  18. def initialize
  19. settings = get_settings
  20. @mech_safe_room = settings.mech_safe_room || "992"
  21. @forage_container = settings.forage_container || "backpack"
  22. @forage_container_two = settings.forage_container_two || "haversack"
  23. #go to Mags
  24. walk_to('954')
  25. gettask
  26. end
  27.  
  28. def showhelp
  29. echo('VERSION 2.1 NOW with 50% more slick thanks to Quillith. You can still yell at me Pahzon on lnet if anything seems broke...hasnt had a lot of testing yet.')
  30. echo('If you have not yet you will need to do a intial setup for dependency and such. GUIDE: https://github.com/rpherbig/dr-scripts/wiki/First-Time-Setup')
  31. echo('Youll also want to sell Mags all the branches you can, before you run this. Once thats done and you have a proper YAML. This script will run forage tasks from Mags to train Trading, it will also keep Outdoorsmanship, Perception, Appraisal, Mech, Scholarship, Athletics, Performance, Arcana, Attunement, and any magics setup in your crafting_training_spells https://pastebin.com/GuQY2xF2 pretty much locked up to at least 120ish so far.')
  32. echo('Youll need zills for performance, compendium/textbook for ;first-aid, and a sanowret crystal for ;sanowret-crystal arcana. You may want to ;e autostart sanowret-crystal so it launches on start up for you, but you will defintly want it running with this script if you have one.')
  33. echo('When you are all set up and ready to start task mode, type ;magzon task to kick off task mode.')
  34. exit
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement