void OnTimer()
{
datetime now=TimeCurrent();
if(now-g_last_auth_check>=30)
{
g_last_auth_check=now;
if(!CheckAuthorization(false))
{
string state=(g_trial_expired ? "试用到期" : "授权无效");
NotifyRisk("Quantum Queen X - 需要授权: "+state);
ExpertRemove();
return;
}
} 上这是1313行左右我手里的代码你看下是不是和你的一样
|
|