Was ist da denn bitte falsch?
Code
C:\Users\Admin\Desktop\Life of Rio\gamemodes\LOS.pwn(168) : error 017: undefined symbol "Create3DTextLable"
C:\Users\Admin\Desktop\Life of Rio\gamemodes\LOS.pwn(170) : error 017: undefined symbol "Create3DTextLable"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
Code
//Interiors
for(new i=0;i<sizeof(bInfo);i++)
{
new string[250],string2[250];
CreatePickup(1318,1,bInfo[i][b_x],bInfo[i][b_y],bInfo[i][b_z],-1);
CreatePickup(1318,1,bInfo[i][b_ix],bInfo[i][b_iy],bInfo[i][b_iz],-1);
format(string,sizeof(string),"%s um zu interagieren\nbenutze die Taste f oder die Eingabe Taste",bInfo[i][b_name]);
Create3DTextLable(string,weiss,bInfo[i][b_x],bInfo[i][b_y],bInfo[i][b_z],40,0,1);
format(string2,sizeof(string2),"%s um zu interagieren\nbenutze die Taste f oder die Eingabe Taste",bInfo[i][b_name]);
Create3DTextLable(string,weiss,bInfo[i][b_ix],bInfo[i][b_iy],bInfo[i][b_iz],40,i,1);
}
return 1;
Alles anzeigen