1 |
var shop_name = global.shop_name; |
2 |
draw_set_font(fnt_main); |
3 |
draw_set_halign(fa_left); |
4 |
draw_set_valign(fa_top); |
5 |
if (shop_name == "Hotel Shop") |
6 |
{ |
7 |
draw_set_color(c_fuchsia); |
8 |
draw_text_ext(obj_talk_screen_shop.x + 30, obj_talk_screen_shop.y + 10, string_hash_to_newline(message_draw_alt), global.text_separation_shop, global.text_linebreak_limit_shop); |
9 |
} |
10 |
draw_set_color(c_white); |
11 |
draw_text_ext(obj_talk_screen_shop.x + 30, obj_talk_screen_shop.y + 10, string_hash_to_newline(message_draw), global.text_separation_shop, global.text_linebreak_limit_shop); |