mimidog111
级别: 探索解密
精华主题: 0
发帖数量: 0 个
工控威望: 161 点
下载积分: 669 分
在线时间: 57(小时)
注册时间: 2012-08-28
最后登录: 2025-09-14
查看mimidog111的 主题 / 回贴
楼主  发表于: 4天前
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 变量在哪里