How do I draw text from script? [SOLVED]

G

GrayDwarf

Guest
Not sure what I'm doing wrong but I can't figure out why my text isn't showing up. I have a script (file) called TileClicked and I call it from a 'mouse pressed' event. The message "making it here" shows up in the console output so what sorts of things should I be looking for?
Code:
show_debug_message("making it here")
draw_set_halign(fa_left);
draw_set_font(font0);
draw_set_colour(c_black); 
draw_text(10, 10, "wtf");
 
Top