$sslready: Difference between revisions

From Scriptwiki
Jump to navigation Jump to search
Daveoh (talk | contribs)
No edit summary
 
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 19: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