25.07.2011, 10:56
I have this error: error 035: argument type mismatch (argument 2)
On this line: CreateDynamic3DTextLabel(schildtext,schildtext,wPo s[0], wPos[1], wPos[2],40.0,0,0,1,0,0,-1,100.0);
The hole stock:
Please help me D:
On this line: CreateDynamic3DTextLabel(schildtext,schildtext,wPo s[0], wPos[1], wPos[2],40.0,0,0,1,0,0,-1,100.0);
The hole stock:
Код:
stock CreateSchilder()
{
new
File:schilderFile,
Float:wPos[3],
Line[50],
schildfarbe[64],
schildtext[128],
Float:oPos;
schilderFile = fopen(SCHILDER_FILE, io_read);
oPos = wPos[2]-1;
while(fread(schilderFile, Line))
{
sscanf(Line, "p<|>ssfff",schildfarbe,schildtext, wPos[0], wPos[1], wPos[2]);
CreateDynamicObject(1229, wPos[0], wPos[1], oPos, 0.00000000,0.00000000,0.00000000, 0, 0, -1, 200.0);
CreateDynamic3DTextLabel(schildtext,schildtext,wPos[0], wPos[1], wPos[2],40.0,0,0,1,0,0,-1,100.0);
}
fclose(schilderFile);
}
Please help me D:

