22.02.2011, 19:07
Having trouble attaching 3D TEXT to a player.
Quote:
new Text3Dlayertextid[MAX_PLAYERS]; |
Quote:
command(playerlabel, playerid, params[]) { #pragma unused params new Float:X, Float:Y, Float:Z; if(Player[playerid][AdminLevel] >= 4) { GetPlayerPos(playerid, X, Y, Z); playertextid[playerid] = CreatePlayer3DTextLabel(playerid, "a", WHITE, X, Y, Z, 40.0); // problem here Attach3DTextLabelToPlayer(playertextid[playerid], playerid, 0.0, 0.0, 0.7); } return 1; } |
Quote:
(18264) : warning 213: tag mismatch |