meine tankstellen werden irgentwie nicht geladen...
ich bin noch änfänger ich mysql ich hoffe um hilfe
ich habe mysql_log(1); in OnGameModeInit aber es ist nirgens ein logfile
Loadtanke:
public LoadTanke(){
for(new t; t<MAX_TANKE; t++){
new query[60 + MAX_PLAYER_NAME];
mysql_format(mycon,query, sizeof(query), "SELECT * FROM `Tankstellen` WHERE `TankID` = '%e'",t);
cache_get_field_content(0,"Name",TankInfo[t][tName]),cache_get_field_content(0,"oName",TankInfo[t][oName]),TankInfo[t][tX] = cache_get_field_content_float(0,"PosX");
TankInfo[t][tY] = cache_get_field_content_float(0,"PosY"),TankInfo[t][tZ] = cache_get_field_content_float(0,"PosZ"),TankInfo[t][Preis] = cache_get_field_content_int(0,"Preis");
TankInfo[t][sPreis] = cache_get_field_content_int(0,"Spritpreis"),TankInfo[t][Tankgeld] = cache_get_field_content_int(0,"Tankgeld");
switch(cache_get_field_content_int(0,"Owned")){
case 0: TankInfo[t][Owned] = false;
case 1: TankInfo[t][Owned] = true;
}
if(TankInfo[t][Owned] == false){
new string[128];
format(string,sizeof(string),"[Tankstellen ID: %d]\nName: %s\nPreis: %d\nTankstelle zu verkaufen!\nBenutze /tanke",t,TankInfo[t][tName],TankInfo[t][Preis]);
TankLabel[t] = Create3DTextLabel(string,Türkis,TankInfo[t][tX],TankInfo[t][tY],TankInfo[t][tZ],10,0);
AddStaticPickup(1272,2,TankInfo[t][tX],TankInfo[t][tY],TankInfo[t][tZ],0);
}
else {
new string[128];
format(string,sizeof(string),"[Tankstellen ID: %d]\nName: %s\nBesitzer: %s\nSpritpreis: %d\nBenutze /tanken",t,TankInfo[t][tName],TankInfo[t][oName],TankInfo[t][sPreis]);
TankLabel[t] = Create3DTextLabel(string,Rot,TankInfo[t][tX],TankInfo[t][tY],TankInfo[t][tZ],10,0);
AddStaticPickup(1272,2,TankInfo[t][tX],TankInfo[t][tY],TankInfo[t][tZ],0);
}
}
return 1;
}