quote:
Originally posted by deAd
You need the latest version for this script to work.
Then you might wanna make that mandatory for your script to start. Aka: check on the version of Plus! and show a warning (with link to official Plus! site) if the user doesn't have 4.11.
if (MsgPlus.Version < 4.11) {
// some message
}
PS: Use the less than operator and not the equality or identity operators as there is no garantee that the returned version number is exact as it is a floating point number which has possible rounding inaccuracies (though it will always be slightly higher and never lower). See docs.