if(DateTime.Now.Year < Globals.Tags.year_Int.Value.Int) then
isOpen = screen.IsOpen(1)
Globals.Tags.act.Value=true;
Globals.Tags.time_wrong_act.Value=true;
else if( Globals.Tags.year_Int.Value.Int ==DateTime.Now.Year ) then
if( DateTime.Now.Month < Globals.Tags.month_Int.Value.Int) then
Globals.Secret2.Show();
Globals.Tags.act.Value=true;
Globals.Tags.time_wrong_act.Value=true;
else if( Globals.Tags.month_Int.Value.Int == DateTime.Now.Month ) then
if ( Globals.Tags.day_Int.Value.Int > DateTime.Now.Day ) then
Globals.Secret2.Show();
Globals.Tags.act.Value=true;
Globals.Tags.time_wrong_act.Value=true;
end
end
end
end
請教下 Globals 變量在哪里