Q: How can I change the font/characters that CSQC drawstring() uses?Q: how can I change the font/characters that CSQC drawstring() uses? is that just conchars?
A: (eukara) Nope. there is a global float called drawfont. You change it, but first you have to allocate some fonts. Make a definition for e.g.
[code language=”c”]var float FONT_HUD;[/code]
and inside CSQC_Init:
[code language=”c”]FONT_HUD = loadfont( "hud", "gfx/otherfont", "16", -1 );[/code]
and then before calling drawstring, change drawfont to FONT_HUD. After that, change it back to FONT_DEFAULT