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?
Make font size smaller?Solved
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.nivexthis 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 likeif (drawText || @override) player.SendConsoleCommand("ddraw.text", invokeTime + flickerDelay, color, position, "<size=8>" + text + "</size>");âÂÂ
Customization for this has been added in 5.1.1
Locked automatically