ScriptName DelmarScript
short test1
short test2
short day
float hour
float timerhour
float daycheck
Begin GameMode
if ( GetStage MG08MagesStaff == 50 )
if ( MG08MagesStaff.staffchoice >= 1 && MG08MagesStaff.choicemade == 0 )
set timerhour to GameHour
set day to GameDaysPassed
set hour to GameHour
set MG08MagesStaff.choicemade to 1
endif
endif
if ( MG08MagesStaff.staffdone == 0 )
if ( MG08MagesStaff.choicemade == 1 )
if ( day < GameDaysPassed )
set MG08MagesStaff.staffdone to 1
endif
endif
endif
End
Begin MenuMode
if ( MG08MagesStaff.staffdone == 0 )
if ( MG08MagesStaff.choicemade == 1 )
if ( day < GameDaysPassed )
set MG08MagesStaff.staffdone to 1
endif
endif
endif
End
|