12345678910111213141516171819202122232425262728293031323334353637 |
- # bus_incidental
- if $ARGS[0] = 'events':
- *clr & cla
- menu_off = 1
- transportVars['train_event_day'] = daystart
- gt 'bus_incidental', 'event<<rand(1, 1)>>'
- end
- if $ARGS[0] = 'event1':
- *clr & cla
- menu_off = 1
- 'This is a placeholder incidental event!!'
- 'Cool stuff to be added here!'
- act 'Continue': gt $loc, $loc_arg
- end
- if $ARGS[0] = 'end':
- *clr & cla
- menu_off = 1
- gt 'bus_incidental', 'end<<rand(1, 1)>>'
- end
- if $ARGS[0] = 'end1':
- 'This is a placeholder end incidental event!!'
- 'Cool stuff to be added here!'
- act 'Continue': gt $loc, $loc_arg
- end
- --- bus_incidental ---------------------------------
|