Difference between revisions of "$sslready"

From Scriptwiki
Jump to: navigation, search
 
m (added example)
 
Line 2: Line 2:
 
  $sslready
 
  $sslready
 
Returns [[$true]] if it has, $false if not. This identifier has no parameters.
 
Returns [[$true]] if it has, $false if not. This identifier has no parameters.
 +
 +
== Examples ==
 +
if (!$sslready) { echo -ag You do not have the SSL dll in your mIRC directory. | return }
 +
 
==See Also==
 
==See Also==
 
* [[$ssl]]
 
* [[$ssl]]
 +
 
[[Category:Identifiers]]
 
[[Category:Identifiers]]

Latest revision as of 21:44, 6 April 2008

Used to determine whether mIRC has loaded the required OpenSSL DLL files successfully.

$sslready

Returns $true if it has, $false if not. This identifier has no parameters.

Examples

if (!$sslready) { echo -ag You do not have the SSL dll in your mIRC directory. | return }

See Also