enjoy
function clamp (num, min, max) {return num <= min? min: num> = max? max: num;}
function draw_bold_text (x, y, centered, text, color, font) {
Render.String (x + 1, y + 1, centered, text, [0, 0, 0, color [3]], font);
Render.String (x + 1, y, centered, text, [0, 0, 0, color [3]]...