This is your problem:
Code: ags
The new version now has "lazy evaluation" which means that if the first part of an "OR" experrsion is true, it doesn't bother evaluating the other parts. Either change this to:
(WaitKey(delay)==0)||1
or turn off lazy evaluation on the main editor setting panel.
Also, you might like to look at the code in my credits module which has a typewriter function in it, too...
1||(WaitKey(delay)==0)
The new version now has "lazy evaluation" which means that if the first part of an "OR" experrsion is true, it doesn't bother evaluating the other parts. Either change this to:
(WaitKey(delay)==0)||1
or turn off lazy evaluation on the main editor setting panel.
Also, you might like to look at the code in my credits module which has a typewriter function in it, too...