Make font size smaller?Solved

Hey @all I am pretty new here and got a question. Really don't know where to post it. My question is, if it is possible to make the font size of players/items way smaller in Admin Radar. Do you know if that is possible?

And where do I find the config file?
Edit: Didn't read good enough, found the config file. So I only want to know if I can set the font size smaller. Maybe in  the .cs file?

this isn't possible without editing the cs file.

if (drawText || @override) player.SendConsoleCommand("ddraw.text", invokeTime + flickerDelay, color, position, text);​

would have to look something like

if (drawText || @override) player.SendConsoleCommand("ddraw.text", invokeTime + flickerDelay, color, position, "<size=8>" + text + "</size>");​
nivex

this isn't possible without editing the cs file.

if (drawText || @override) player.SendConsoleCommand("ddraw.text", invokeTime + flickerDelay, color, position, text);​

would have to look something like

if (drawText || @override) player.SendConsoleCommand("ddraw.text", invokeTime + flickerDelay, color, position, "<size=8>" + text + "</size>");​
Exactly what I was looking for. Really appreciate your support. Thank you very much.

Customization for this has been added in 5.1.1

Locked automatically