24.09.2012, 13:37
Quote:
|
Код:
//Where you create all your variables
new stringAFK[16];
public OnPlayerUpdate(playerid)
{
format(stringAFK, sizeof(stringAFK), "[AFK] %d [AFK]", playerid);
new Text3D:label = Create3DTextLabel(stringAFK, 0xFF0000FF, 30.0, 40.0, 50.0, 40.0, 0, 0);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
return 1;
}
|


