Quote:
Originally Posted by Sjn
PHP код:
new
Text3D: g_myLabel[MAX_PLAYERS]; // Global array (goes on top of your script before the includes) (I have this after includes)
// Creating / attaching
g_myLabel[playerid] = Create3DTextLabel(...);
Attach3DTextLabelToPlayer(playerid, g_myLabel[playerid], ...);
// Destroying
Delete3DTextLabel(g_myLabel[playerid]);
|
Thanks this will help me to understand it