bed.qsrc 534 B

123456789101112131415161718192021222324
  1. # bed
  2. menu_off = 1
  3. !! Prepare to lie down, move to events related to entering the bed.
  4. if $ARGS[0] = 'start' or $ARGS[0] = '':
  5. menu_off = 1
  6. shour = 24 - hour
  7. gs 'stat'
  8. gt 'bed', 'mod_sleeptriggers'
  9. end
  10. if $ARGS[0] = 'mod_sleeptriggers':
  11. !! This location is here to allow mods to hook into the system.
  12. !! Either check for: if $ARGS[0] = 'bed' and $ARGS[1] = 'mod_sleeptriggers'
  13. !!
  14. !! This is NOT for events!!
  15. gs 'LOCA', 'bed', 'mod_sleeptriggers'
  16. gt 'bed_events', 'start'
  17. end
  18. --- bed ---------------------------------