How to use IsGenuine(4 params) properly in Java?

Hi!Will you please explain how exactly IsGenuineEx() (IsGenuine() with 4 parameters) method in Java works? I am confused with the two Boolean parameters, skipOffline and offlineShowInetErr. Please clearly elaborate what Boolean values (true or false) they should have? What exactly happens when you set those values to true and false. Does it mean that once a user activates using a file (offline), the parameter daysBetweenChecks is not applicable to him? Basically I want my all the users to activate (online or offline) every 60 days. Please help.

Basically I want my all the users to activate (online or offline) every 60 days. Please help.

Well, in that case use IsGenuine(60,14,false,false);

If "skipOffline" is true then TurboActivate will never verify with the activation servers if the initial activation was done offline. If "offlineShowInetErr" is true and if "skipOffline" is also true, then if IsGenuine(x,x,true,true) fails to connect to the activation servers it will return an "internet error" rather than a success (which would happen if "offlineShowInetErr" was set to false).

Does that make sense?

Thank you sir.If I use IsGenuine(60,14,false,false);then all of my users (initially online or offline activated) must verify with LimeLM servers every 60 days (without grace period). Those who don't have internet connection will again need to activate offline and they will not be prompted for next 60 days. In short every 60 days they will activate using file and rest of the users will activate through internet. Am I correct?

If I use IsGenuine(60,14,false,false);then all of my users (initially online or offline activated) must verify with LimeLM servers every 60 days (without grace period).

Correct.

Those who don't have internet connection will again need to activate offline and they will not be prompted for next 60 days.

Correct.

In short every 60 days they will activate using file and rest of the users will activate through internet. Am I correct?

Right. And if you set skipOffline to "true" then the users who activate offline won't have to verify. It's entirely up to you how you want to do it.

Thank you very much!