Posts: 39
Threads: 6
Joined: Aug 2013
Reputation:
0
Nothing is changed... Still can't see objects
Posts: 232
Threads: 4
Joined: Apr 2013
Quote:
Originally Posted by ProjectMan
Код:
Create3DTextLabel
Returns The ID of the newly created 3D Text Label
Why would you return it into an array? Make a new variable without array and return it there.
Ex:
Outside:
OnGameModeInit:
pawn Код:
SpawnLabel = Create3DTextLabel("SPAWN: Abandoned Airport", COL_RED, 284.1689,2030.7312,17.6406, 50.0, 0, 0);
|
pawn Код:
/*you can use it on an array
example:*/
new Test[18];
public OnGameModeInit()
{
Test[0] = Create3DTextLabel("SPAWN: Abandoned Airport", COL_RED, 284.1689,2030.7312,17.6406, 50.0, 0, 0);
return 1;
}
xPirate, your problem isn't for these codes, Create3DTextLabel hasen't any problem
Posts: 391
Threads: 25
Joined: Jul 2013
Reputation:
0
Try CreateObject!
and you're posting a label script when it's an object problem
Posts: 134
Threads: 5
Joined: Nov 2009
Reputation:
0
Try puting the TextLabel functino after creating all the objects, I assume that theres an error with creating the 3dtextlabel so it doesnt continue with the rest of the functions.
This might only solve the object issue but you will still have the 3dtextlabel issue.
Posts: 39
Threads: 6
Joined: Aug 2013
Reputation:
0
Im saying when i Add Create3DTextLabel all createdynamicobjects dissapear D: