10.01.2015, 15:32
Don't use OnPlayerUpdate for stuff like textdraws, especially when you need to show it once. That's a BAD example of scripting, as player updates get call every second or something like that, so yeah, expect lag.
To make it show once. Use a timer, when the timer is called, show the textdraw and set a new timer for x milliseconds you want to show the textdraw, and on that textdraw, hide the textdraw. Make a variable and check if a player has already seen the textdraw.
That's all I understood from your post. Try to be more clearer next time.
To make it show once. Use a timer, when the timer is called, show the textdraw and set a new timer for x milliseconds you want to show the textdraw, and on that textdraw, hide the textdraw. Make a variable and check if a player has already seen the textdraw.
That's all I understood from your post. Try to be more clearer next time.