You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/// draw_text_shadow(x, y, text)
|
|
draw_set_color(make_colour_rgb(8, 24, 32)); // dark bluegreen
|
|
draw_text(argument0 + 1, argument1 + 1, argument2);
|
|
draw_set_color(make_colour_rgb(224, 248, 208)); // green
|
|
draw_text(argument0, argument1, argument2);
|