14.04.2017, 05:41
Hello, how can I make chatbubble or 3d label to be above player and stay until player performs certain command to remove them? I want to make text [ADMIN] over players head, but how?
You can set the time for chat bubbles. So they dont "dissapear in short time".
https://sampwiki.blast.hk/wiki/SetPlayerChatBubble |
task ChatDouble[3000]() { foreach(Player,i) { //chat bubbles with 3000ms time
that's exactly what i did.
Code:
task ChatDouble[3000]() { foreach(Player,i) { //chat bubbles with 3000ms time |
I still suggest using 3DTextLabels for long time texts, like if you want to display something above the player head that should stay there for a while, for example writing "Admin" or things like those.
And use bubble for short term texts like actions, appearance, etc. |