Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. ///Text Noise
  2.  
  3. if string_copy(str[text],i,1) = " " { //Checks for spaces
  4. //nothing (error handling)
  5.  
  6. }
  7. else
  8. {
  9.  
  10. if istop=0{
  11. if i<imax{
  12. nextsound += .5
  13.  
  14. if nextsound = 1{
  15. audio_play_sound(snd_introtext,10,0);
  16. nextsound = 0;
  17. }
  18. }
  19. }
  20. }
  21.  
  22. //Time to stop that annoying noise!
  23.  
  24. if i == imax{
  25. audio_stop_sound(snd_introtext)
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement