Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. draw_self();
  2. if (drawText == true){
  3. draw_set_font(Asimov);
  4. draw_set_color(c_white);
  5. draw_sprite (spr_dialogue_pepe,blink_index,view_xview[0]+160,view_yview[0]+270)
  6.  
  7. //Makes Press Z sprite appear at the end of the line.
  8. if (t>=string_length(text[line])){
  9. draw_sprite (spr_pressZ,pressZ_index,view_xview[0]+210,view_yview[0]+220)}
  10.  
  11. draw_text(view_xview[0]+5,view_yview[0]+245-75, string_copy(text[line],1,t));
  12.  
  13. //if (t==29){}
  14.  
  15.  
  16. if (t<=string_length(text[line]))
  17. t++;
  18.  
  19. //keeps it at the top layer
  20. depth = y * -9999999;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement