Er zeigt mir zwar an dass das Auto erstellt wurde.
Aber es wird keins erstellt.
enum playerCar{
id_x,
besitzer[MAX_PLAYER_NAME],
Float:c_x,
Float:c_y,
Float:c_z,
Float:c_r
}
createPlayerCar(playerid,modelid,Float:x,Float:y,Float:z,Float:r)
{
for(new i=0; i<sizeof(cInfo); i++)
{
if(cInfo[i][id_x]!=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][id_x] = CreateVehicle(modelid,x,y,z,r,-1,-1,-1);
new string[128];
format(string,sizeof(string),"Das Auto cInfo[%i] wurde erstellt.",i);
SendClientMessageToAll(COLOR_RED, string);
return 1;
}
return 1;
}
ocmd:aveh(playerid,params[])
{
new mID,pID;
if(sscanf(params,"ui",pID,mID))return SendClientMessage(playerid, COLOR_RED, "Nutze: /veh [Besitzer ID] [Fahrzeug ID]");
if(mID<400||mID>611)return SendClientMessage(playerid,COLOR_WHITE,"Du kannst du dir ID's 400-611 benutzen!");
new Float:xc,Float:yc,Float:zc,Float:rc;
GetPlayerPos(pID,xc,yc,zc);
createPlayerCar(pID,mID,xc,yc,zc,rc);
return 1;
}