21.10.2016, 11:39
Do you want ideas or are you asking for someone to make it for you?
Well, I'm assuming you know how to make a command. Lets just say you're using ZCMD for beginners' sake.
Congratulations, you've now created a command.
Now you can use Create3DTextLabel to create a label.
Then you can set a timer using SetTimerEx or SetTimer, coolies. You could either make a global loop in the timer, or a label ID specific update timer. (Update all labels at once > Run a loop in the timer) (Update a single label at once > Pass the label ID through SetTimerEx)
Now within that timer, you can just use Update3DTextLabel to update the label. Wow, that's so easy!
--
Good luck!
Well, I'm assuming you know how to make a command. Lets just say you're using ZCMD for beginners' sake.
PHP код:
CMD:command(playerid, params[])
Now you can use Create3DTextLabel to create a label.
Then you can set a timer using SetTimerEx or SetTimer, coolies. You could either make a global loop in the timer, or a label ID specific update timer. (Update all labels at once > Run a loop in the timer) (Update a single label at once > Pass the label ID through SetTimerEx)
Now within that timer, you can just use Update3DTextLabel to update the label. Wow, that's so easy!
--
Good luck!