23.02.2011, 15:46
So i want to create a Create3DTextLabel with a dialog.
so i do
and the when i want to remove it(this is the problem)
so i do
pawn Код:
new textString3D[98];
format(textString3D,sizeof(textString3D),"%s",inputtext);
TextNo = Create3DTextLabel(textString3D,COLOR_WHITE,X,Y,Z,50.0,0,0);
TextNo++;
pawn Код:
TextNo = strval(inputtext);//But that would make it (warning 213: tag mismatch)
Delete3DTextLabel(TextNo);
TextNo--;