Advertisement
jbrocky

wm-charge

Jan 29th, 2021
1,402
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.42 KB | None | 0 0
  1. custom_require.call(%w(common))
  2.  
  3. class SummonAdmittance
  4.   include DRC
  5.  
  6.   def initialize
  7.     fput('pathway stop')
  8.  
  9.     summon
  10.   end
  11.  
  12.   def summon
  13.     case bput('summon admitt','You make yourself','You continue meditating','You so heavily embody')
  14.     when 'You make yourself','You continue meditating'
  15.       summon
  16.     when 'You so heavily embody'
  17.       fput('stand')
  18.     end
  19.   end
  20. end
  21.  
  22. SummonAdmittance.new
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement