So, I found a line which is responsible for color nickname on the figure. I can not program in ruby, and I want to add the option to change the font type and size only in the code. If anyone can help me, I'll be very grateful. This is line of the code:
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# Other constants
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
COLORS = {}
COLORS['self'] = Color.new(0, 255, 0)
COLORS[GROUP_ADMIN] = Color.new(64, 192, 255)
COLORS[GROUP_2NDADMIN] = Color.new(128, 192, 255)
COLORS[GROUP_MOD] = Color.new(255, 255, 0)
COLORS[GROUP_PLAYER] = Color.new(255, 255, 255)
end
Regards, Salem