bus_incidental.qsrc 624 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # bus_incidental
  2. if $ARGS[0] = 'events':
  3. *clr & cla
  4. menu_off = 1
  5. transportVars['train_event_day'] = daystart
  6. gt 'bus_incidental', 'event<<rand(1, 1)>>'
  7. end
  8. if $ARGS[0] = 'event1':
  9. *clr & cla
  10. menu_off = 1
  11. 'This is a placeholder incidental event!!'
  12. 'Cool stuff to be added here!'
  13. act 'Continue': gt $loc, $loc_arg
  14. end
  15. if $ARGS[0] = 'end':
  16. *clr & cla
  17. menu_off = 1
  18. gt 'bus_incidental', 'end<<rand(1, 1)>>'
  19. end
  20. if $ARGS[0] = 'end1':
  21. 'This is a placeholder end incidental event!!'
  22. 'Cool stuff to be added here!'
  23. act 'Continue': gt $loc, $loc_arg
  24. end
  25. --- bus_incidental ---------------------------------