Guten Abend ich habe ein autohaus system wo es mit sscanf gebaut ist aber die autos werden nicht mehr createt 
 
hier das stock
stock LoadBuyAbleCars()
{
	new Query[500], i,string[64];
	format(Query, sizeof(Query), "SELECT * FROM buycars");
	mysql_query(Query);
	mysql_store_result();
	while(mysql_fetch_row_format(Query))
	{
    	sscanf(Query, "p<|>e<iiffffiiiii>", BuyInfo[i]);
    	BuyAbleCar[i] = CreateVehicle(BuyInfo[i][Model],BuyInfo[i][BuyX],BuyInfo[i][BuyY],BuyInfo[i][BuyZ],BuyInfo[i][BuyR],BuyInfo[i][Color1],BuyInfo[i][Color2], 60*10000);
    	format(string,64,"%s \n Preis: %d",AutoNamen[BuyInfo[i][Model]-400],BuyInfo[i][Preis]);
		AutohausLabel[i] = Create3DTextLabel(string, 0x008080FF, BuyInfo[i][BuyX],BuyInfo[i][BuyY],BuyInfo[i][BuyZ], 40.0, -1, 1);
    	Attach3DTextLabelToVehicle(AutohausLabel[i], BuyAbleCar[i], 0.0, 0.0, 1.5);
   		print("Buy Car Geladen.");
    	i++;
	}
}
könnte es an der sscanf version liegen ?