$font » History » Revision 8
Revision 7 (Per Amundsen, 01/14/2017 08:21 PM) → Revision 8/9 (Per Amundsen, 12/13/2019 09:08 PM)
_Added in 1.9.6_ *$font(N|name, t)* Returns the Nth installed font. *Parameters* N|name - Get the name of the Nth font, if N is 0, returns number of fonts. If a font name is entered, returns [[$true]] if the font is installed, otherwise [[$false]]. t - List only truetype fonts. *(AdiIRC only)* (AdiIRC only) *Example* <pre> ; Get number of installed fonts. //echo -ag $font(0) ; Check if 'Verdana' is installed. if ($font(Verdana)) { echo -ag Verdana is installed } else { echo -ag Verdana is not installed } </pre>