Advertisement
Dartellum

Startup

Aug 20th, 2022
1,063
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.61 KB | None | 0 0
  1. custom_require.call(%w[drinfomon common])
  2.  
  3. pause 45
  4. class Startup
  5.  
  6.   def initialize
  7.     no_pause_all
  8.     start_script('inventory-manager',['save'])
  9.     loop do
  10.       start_script('dependency') if not Script.running?('dependency')
  11.       start_script('rshell') if not Script.running?('rshell')
  12.       start_script('convomon') if not Script.running?('convomon')
  13.       start_script('jail-buddy') if not Script.running?('jail-buddy')
  14.       start_script('status-monitor') if not Script.running?('status-monitor')
  15.       start_script('sorter') if not Script.running?('sorter')
  16.       start_script('loot-logger') if not Script.running?('loot-logger')
  17.       start_script('trigger-watcher') if not Script.running?('trigger-watcher')
  18.       if checkname=="xxx"
  19.         start_script('pattern-hues') if not Script.running?('pattern-hues')
  20.         start_script('almanac') if not Script.running?('almanac')
  21.       end
  22.       start_script('footwatch') if not Script.running?('footwatch')
  23.       if checkname=="xxx" || checkname=="xxx" || checkname=="xxx" || checkname=="xxx"
  24.         start_script('tarantula') if not Script.running?('tarantula')
  25.       end
  26.       if checkname=="xxx" || checkname=="Dartellum"
  27.         start_script('moonwatch', ['window']) if not Script.running?('moonwatch')
  28.       end
  29.       #if checkname=="xxx"
  30.       if checkname.casecmp?('xxx')
  31.         # pause 20
  32.         start_script('vessel') if not Script.running?('vessel')
  33.       end
  34.       start_script('play') if not Script.running?('play')
  35.       start_script('buff-watcher') if not Script.running?('buff-watcher')
  36.       pause 5
  37.     end
  38.   end
  39. end
  40. Startup.new
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement