1 | function draw_text_shadow(arg0, arg1, arg2) |
2 | { |
3 | __txtcolor__ = draw_get_color(); |
4 | draw_set_color(c_black); |
5 | draw_text(arg0 + 1, arg1 + 1, string_hash_to_newline(arg2)); |
6 | draw_set_color(__txtcolor__); |
7 | draw_text(arg0, arg1, string_hash_to_newline(arg2)); |
8 | } |