Hey Leute, ich bekomme bei meinem stock immer den Warning der im Titel steht! Wieso? Kann mir einer helfen?
Das Auto wird auch garnicht erstellt?
stock createPlayerCar(playerid, modelid, Float:x, Float:y, Float:z, Float:r, color1, color2)
{
for(new i=0; i<sizeof(cInfo); i++)
{
new string[128];
if(cInfo[i][cid]!=0)continue;
GetPlayerName(playerid, cInfo[i][besitzer], MAX_PLAYER_NAME);
cInfo[i][c_x]=x;
cInfo[i][c_y]=y;
cInfo[i][c_z]=z;
cInfo[i][c_r]=r;
cInfo[i][farbe1]=color1;
cInfo[i][farbe2]=color2;
cInfo[i][cid] = CreateVehicle(modelid, x, y, z, r, color1, color2, -1);
format(string,sizeof(string),"Das Auto cInfo[%i] wurde erfolgreich erstellt.", i);
SendClientMessage(playerid, COLOR_YELLOW, string);
PutPlayerInVehicle(playerid, cInfo[i][cid], 0);
}
return 1;
}