03.04.2011, 17:55
(
Последний раз редактировалось Lazy_Duck; 03.04.2011 в 18:27.
)
Hi
I need someone to help me out with making a textcommand , witch attach a 3d head text on player....
my current command:
This command attach a 3d text "Blahblahblahblah" on player..
But i want that every player can create his own 3d text ingame
So the command should be like that
/Set3dtext [TEXT]
someone help me
I need someone to help me out with making a textcommand , witch attach a 3d head text on player....
my current command:
Код HTML:
new Text3D:label[MAX_PLAYERS]; if(strcmp("/set3dtext", cmdtext, true) == 0) { label[playerid] = Create3DTextLabel("Blahblahblahblahblah!",0x008080FF,30.0,40.0,50.0,40.0,0); Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7); return 1; } if(strcmp("/remove3dtext", cmdtext, true) == 0) { Delete3DTextLabel(label[playerid]); return 1; }
But i want that every player can create his own 3d text ingame
So the command should be like that
/Set3dtext [TEXT]
someone help me