15.06.2015, 19:06
Hello!
You need the following functions:
• https://sampwiki.blast.hk/wiki/Create3DTextLabel
• https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
Here is also an example, maybe it can help you:
- Mencent
You need the following functions:
• https://sampwiki.blast.hk/wiki/Create3DTextLabel
• https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer
Here is also an example, maybe it can help you:
PHP код:
public OnPlayerConnect(playerid)
{
new Text3D:label = Create3DTextLabel("Hello, I am new here!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
return 1;
}