Bizen und Häuser werden nicht gespawned

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Hey
    Die Bizen etc. werden ingame nicht gespawned:
    public LoadProperty()
    {
    new string[128];
    for(new i = 0; i < sizeof(HouseInfo); i++)
    {
    format(string, sizeof(string),"SELECT * FROM `houses` WHERE `HouseID` = '%d'", i);
    self_mysql_query(string);
    mysql_store_result(MySQLConnection);
    if(mysql_num_rows(MySQLConnection) != 0)
    {
    mysql_fetch_row_format(string);
    new val[ 256 ];
    self_mysql_get_field("Owner", val); strmid(HouseInfo[i][hOwner], val, 0, strlen(val), 255);
    self_mysql_get_field("Beschreibung", val); strmid(HouseInfo[i][hBeschreibung], val, 0, strlen(val), 255);
    self_mysql_get_field("Preis", val); HouseInfo[i][hPreis] = strval( val );
    self_mysql_get_field("HealUpgrade", val); HouseInfo[i][hHealUpgrade] = strval( val );
    self_mysql_get_field("ArmorUpgrade", val); HouseInfo[i][hArmorUpgrade] = strval( val );
    self_mysql_get_field("Lock", val); HouseInfo[i][hLock] = strval( val );
    self_mysql_get_field("Owned", val); HouseInfo[i][hOwned] = strval( val );
    self_mysql_get_field("Rooms", val); HouseInfo[i][hRooms] = strval( val );
    self_mysql_get_field("Rent", val); HouseInfo[i][hRent] = strval( val );
    self_mysql_get_field("Rentabil", val); HouseInfo[i][hRentabil] = strval( val );
    self_mysql_get_field("Kasse", val); HouseInfo[i][hKasse] = strval( val );
    //self_mysql_get_field("Date", val); HouseInfo[i][hDate] = strval( val );
    self_mysql_get_field("Level", val); HouseInfo[i][hLevel] = strval( val );
    }
    mysql_free_result(MySQLConnection);
    }
    return 1;
    }


    public LoadBiz()
    {
    new string[128];
    for(new i = 0; i < sizeof(BizInfo); i++)
    {
    format(string, sizeof(string),"SELECT * FROM `biz` WHERE `BizID` = '%d'", i);
    self_mysql_query(string);
    mysql_store_result(MySQLConnection);
    if(mysql_num_rows(MySQLConnection) != 1)
    {
    mysql_fetch_row_format(string);
    new val[ 256 ];
    self_mysql_get_field("Owned", val); BizInfo[i][bOwned] = strval( val );
    self_mysql_get_field("Owner", val); strmid(BizInfo[i][bOwner], val, 0, strlen(val), 255);
    self_mysql_get_field("Message", val); strmid(BizInfo[i][bMessage], val, 0, strlen(val), 255);
    self_mysql_get_field("Extortion", val); strmid(BizInfo[i][bExtortion], val, 0, strlen(val), 255);
    self_mysql_get_field("LevelNeeded", val); BizInfo[i][bLevelNeeded] = strval( val );
    self_mysql_get_field("BuyPrice", val); BizInfo[i][bBuyPrice] = strval( val );
    self_mysql_get_field("EntranceCost", val); BizInfo[i][bEntranceCost] = strval( val );
    self_mysql_get_field("Till", val); BizInfo[i][bTill] = strval( val );
    self_mysql_get_field("Locked", val); BizInfo[i][bLocked] = strval( val );
    self_mysql_get_field("Products", val); BizInfo[i][bProducts] = strval( val );
    self_mysql_get_field("MaxProducts", val); BizInfo[i][bMaxProducts] = strval( val );
    self_mysql_get_field("PriceProd", val); BizInfo[i][bPriceProd] = strval( val );
    }
    mysql_free_result(MySQLConnection);
    }
    return 1;
    }
    public LoadSBiz()
    {
    for(new i = 0; i < sizeof(SBizInfo); i++)
    {
    new string[256];
    format(string, sizeof(string),"SELECT * FROM `sbiz` WHERE `SBizID` = '%d'", i);
    self_mysql_query(string);
    mysql_store_result(MySQLConnection);
    if(mysql_num_rows(MySQLConnection) != 1)
    {
    mysql_fetch_row_format(string);
    new val[ 256 ];
    self_mysql_get_field("Owned", val); SBizInfo[i][sbOwned] = strval( val );
    self_mysql_get_field("Owner", val); strmid(SBizInfo[i][sbOwner], val, 0, strlen(val), 255);
    self_mysql_get_field("Message", val); strmid(SBizInfo[i][sbMessage], val, 0, strlen(val), 255);
    self_mysql_get_field("Extortion", val); strmid(SBizInfo[i][sbExtortion], val, 0, strlen(val), 255);
    self_mysql_get_field("LevelNeeded", val); SBizInfo[i][sbLevelNeeded] = strval( val );
    self_mysql_get_field("BuyPrice", val); SBizInfo[i][sbBuyPrice] = strval( val );
    self_mysql_get_field("EntranceCost", val); SBizInfo[i][sbEntranceCost] = strval( val );
    self_mysql_get_field("Till", val); SBizInfo[i][sbTill] = strval( val );
    self_mysql_get_field("Locked", val); SBizInfo[i][sbLocked] = strval( val );
    self_mysql_get_field("Products", val); SBizInfo[i][sbProducts] = strval( val );
    self_mysql_get_field("MaxProducts", val); SBizInfo[i][sbMaxProducts] = strval( val );
    self_mysql_get_field("PriceProd", val); SBizInfo[i][sbPriceProd] = strval( val );
    }
    mysql_free_result(MySQLConnection);
    }
    return 1;
    }


    public LoadTankenBiz()
    {
    new string[128];
    for(new i = 1; i < sizeof(TankenBizInfo); i++)
    {
    format(string, sizeof(string),"SELECT * FROM `tankenbiz` WHERE `TankenBizID` = '%d'", i);
    self_mysql_query(string);
    mysql_store_result(MySQLConnection);
    if(mysql_num_rows(MySQLConnection) != 1)
    {
    mysql_fetch_row_format(string);
    new val[ 256 ];
    self_mysql_get_field("Owned", val); TankenBizInfo[i][TBOwned] = strval( val );
    self_mysql_get_field("Owner", val); strmid(TankenBizInfo[i][TBOwner], val, 0, strlen(val), 255);
    self_mysql_get_field("Message", val); strmid(TankenBizInfo[i][TBMessage], val, 0, strlen(val), 255);
    self_mysql_get_field("Extortion", val); strmid(TankenBizInfo[i][TBExtortion], val, 0, strlen(val), 255);
    self_mysql_get_field("LevelNeeded", val); TankenBizInfo[i][TBLevelNeeded] = strval( val );
    self_mysql_get_field("KaufPreis", val); TankenBizInfo[i][TBKaufPreis] = strval( val );
    self_mysql_get_field("Spritpreis", val); TankenBizInfo[i][TBSpritPreis] = strval( val );
    self_mysql_get_field("Kasse", val); TankenBizInfo[i][TBKasse] = strval( val );
    self_mysql_get_field("Locked", val); TankenBizInfo[i][TBLocked] = strval( val );
    self_mysql_get_field("Products", val); TankenBizInfo[i][TBProducts] = strval( val );
    self_mysql_get_field("MaxProducts", val); TankenBizInfo[i][TBMaxProducts] = strval( val );
    self_mysql_get_field("ProdPreis", val); TankenBizInfo[i][TBProdPreis] = strval( val );
    }
    mysql_free_result(MySQLConnection);
    printf("Eigentümer:%s Name:%s Spritpreis:%d Kasse:%d Produkte:%d/%d",
    TankenBizInfo[i][TBOwner],
    TankenBizInfo[i][TBMessage],
    TankenBizInfo[i][TBSpritPreis],
    TankenBizInfo[i][TBKasse],
    TankenBizInfo[i][TBProducts],
    TankenBizInfo[i][TBMaxProducts]);
    print("Tanken laden");
    }
    return 1;
    }


    forward LoadProperty();
    forward LoadBiz();
    forward LoadSBiz();
    forward LoadTankenBiz();


    Bei OnGamemodeInit:
    LoadProperty();
    printf("OnGamemodeInt: LoadProperty");
    LoadBiz();
    printf("OnGamemodeInt: LoadBiz");
    LoadSBiz();
    printf("OnGamemodeInt: LoadSBiz");
    LoadTankenBiz();
    printf("OnGamemodeInt: LoadTankenBiz");

  • Das mach ich hier:
    public Update3DTexte()
    {
    new string[256];
    for(new h = 0; h < sizeof(SBizInfo); h++)
    {
    DestroyPickup(SBizPickup[h]);
    if(SBizInfo[h][sbOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d\n\nGeschäft betreten: /enter",SBizInfo[h][sbMessage],SBizInfo[h][sbOwner],SBizInfo[h][sbExtortion],SBizInfo[h][sbEntranceCost],SBizInfo[h][sbLevelNeeded],(SBizInfo[h][sbMaxProducts]-SBizInfo[h][sbProducts]),SBizInfo[h][sbPriceProd]);
    SBizPickup[h] = CreatePickup(1239, 23, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Busines steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",SBizInfo[h][sbMessage],GetPoint(SBizInfo[h][sbBuyPrice]),SBizInfo[h][sbLevelNeeded]);
    SBizPickup[h] = CreatePickup(1272, 23, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]);
    }
    Update3DTextLabelText(Text3D:SBiz[h], COLOR_GREY2, string);
    }
    for(new h = 0; h < sizeof(TankenBizInfo); h++)
    {
    DestroyPickup(TankenBizPickup[h]);
    if(TankenBizInfo[h][TBOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d",TankenBizInfo[h][TBMessage],TankenBizInfo[h][TBOwner],TankenBizInfo[h][TBExtortion],TankenBizInfo[h][TBSpritPreis],TankenBizInfo[h][TBLevelNeeded],(TankenBizInfo[h][TBMaxProducts]-TankenBizInfo[h][TBProducts]),TankenBizInfo[h][TBProdPreis]);
    TankenBizPickup[h] = CreatePickup(1239, 23, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Busines steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",TankenBizInfo[h][TBMessage],GetPoint(TankenBizInfo[h][TBKaufPreis]),TankenBizInfo[h][TBLevelNeeded]);
    TankenBizPickup[h] = CreatePickup(1272, 23, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]);
    }
    Update3DTextLabelText(Text3D:TankenBiz[h], COLOR_GREY2, string);
    }
    for(new h = 0; h < sizeof(HouseInfo); h++)
    {
    DestroyPickup(HousePickup[h]);
    if(HouseInfo[h][hOwned] == 1)
    {
    if(HouseInfo[h][hRentabil] == 0)
    {
    format(string, sizeof(string), "Dieses Haus gehört:\n%s\nLevel: %d",HouseInfo[h][hOwner],HouseInfo[h][hLevel]);
    }
    else
    {
    format(string, sizeof(string), "Dieses Haus gehört:\n%s\nMiete: $%d\nLevel: %d\nBenutze /rentroom um dir eine Wohnung zu mieten",HouseInfo[h][hOwner],HouseInfo[h][hRent],HouseInfo[h][hLevel]);
    }
    HousePickup[h] = CreatePickup(1239, 23, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
    }
    else
    {
    format(string, sizeof(string), "Dieses Haus steht zum Verkauf\nBeschreibung: %s\nKosten: %s$\nLevel: %d\nBenutze /buyhouse um das Haus zu kaufen",HouseInfo[h][hBeschreibung],GetPoint(HouseInfo[h][hPreis]),HouseInfo[h][hLevel]);
    HousePickup[h] = CreatePickup(1273, 23, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
    }
    Update3DTextLabelText(Text3D:House[h], COLOR_GREY2, string);
    }
    for(new h = 0; h < sizeof(BizInfo); h++)
    {
    DestroyPickup(BizPickup[h]);
    if(BizInfo[h][bOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d\n\nGeschäft betreten: /enter",BizInfo[h][bMessage],BizInfo[h][bOwner],BizInfo[h][bExtortion],BizInfo[h][bEntranceCost],BizInfo[h][bLevelNeeded],(BizInfo[h][bMaxProducts]-BizInfo[h][bProducts]),BizInfo[h][bPriceProd]);
    BizPickup[h] = CreatePickup(1239, 23, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Business steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",BizInfo[h][bMessage],GetPoint(BizInfo[h][bBuyPrice]),BizInfo[h][bLevelNeeded]);
    BizPickup[h] = CreatePickup(1272, 23, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]);
    }
    Update3DTextLabelText(Text3D:Biz[h], COLOR_GREY2, string);
    }
    return 1;
    }


    public Update3DTextHouse(HouseID)
    {
    new string[256], h;
    h = HouseID;
    DestroyPickup(HousePickup[h]);
    if(HouseInfo[h][hOwned] == 1)
    {
    if(HouseInfo[h][hRentabil] == 0)
    {
    format(string, sizeof(string), "Dieses Haus gehört:\n%s\nLevel: %d",HouseInfo[h][hOwner],HouseInfo[h][hLevel]);
    }
    else
    {
    format(string, sizeof(string), "Dieses Haus gehört:\n%s\nMiete: $%d\nLevel: %d\nBenutze /rentroom um dir eine Wohnung zu mieten",HouseInfo[h][hOwner],HouseInfo[h][hRent],HouseInfo[h][hLevel]);
    }
    HousePickup[h] = CreatePickup(1239, 23, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
    }
    else
    {
    format(string, sizeof(string), "Dieses Haus steht zum Verkauf\nBeschreibung: %s\nKosten: %s$\nLevel: %d\nBenutze /buyhouse um das Haus zu kaufen",HouseInfo[h][hBeschreibung],GetPoint(HouseInfo[h][hPreis]),HouseInfo[h][hLevel]);
    HousePickup[h] = CreatePickup(1273, 23, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
    }
    Update3DTextLabelText(Text3D:House[h], COLOR_GREY2, string);
    return 1;
    }


    public Update3DTextBiz(BizID)
    {
    new string[256], h;
    h = BizID;
    DestroyPickup(BizPickup[h]);
    if(BizInfo[h][bOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d\n\nGeschäft betreten: /enter",BizInfo[h][bMessage],BizInfo[h][bOwner],BizInfo[h][bExtortion],BizInfo[h][bEntranceCost],BizInfo[h][bLevelNeeded],(BizInfo[h][bMaxProducts]-BizInfo[h][bProducts]),BizInfo[h][bPriceProd]);
    BizPickup[h] = CreatePickup(1239, 23, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Business steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",BizInfo[h][bMessage],GetPoint(BizInfo[h][bBuyPrice]),BizInfo[h][bLevelNeeded]);
    BizPickup[h] = CreatePickup(1272, 23, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]);
    }
    Update3DTextLabelText(Text3D:Biz[h], COLOR_GREY2, string);
    return 1;
    }


    public Update3DTextsBiz(sBiz)
    {
    new string[256], h;
    h = sBiz;
    DestroyPickup(SBizPickup[h]);
    if(SBizInfo[h][sbOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d\n\nGeschäft betreten: /enter",SBizInfo[h][sbMessage],SBizInfo[h][sbOwner],SBizInfo[h][sbExtortion],SBizInfo[h][sbEntranceCost],SBizInfo[h][sbLevelNeeded],(SBizInfo[h][sbMaxProducts]-SBizInfo[h][sbProducts]),SBizInfo[h][sbPriceProd]);
    SBizPickup[h] = CreatePickup(1239, 23, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Busines steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",SBizInfo[h][sbMessage],GetPoint(SBizInfo[h][sbBuyPrice]),SBizInfo[h][sbLevelNeeded]);
    SBizPickup[h] = CreatePickup(1272, 23, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]);
    }
    Update3DTextLabelText(Text3D:SBiz[h], COLOR_GREY2, string);
    return 1;
    }


    public Update3DTextTanke(Tanke)
    {
    new string[256], h;
    h = Tanke;
    DestroyPickup(TankenBizPickup[h]);
    if(TankenBizInfo[h][TBOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nSpritpreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d",TankenBizInfo[h][TBMessage],TankenBizInfo[h][TBOwner],TankenBizInfo[h][TBExtortion],TankenBizInfo[h][TBSpritPreis],TankenBizInfo[h][TBLevelNeeded],(TankenBizInfo[h][TBMaxProducts]-TankenBizInfo[h][TBProducts]),TankenBizInfo[h][TBProdPreis]);
    TankenBizPickup[h] = CreatePickup(1239, 23, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Busines steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",TankenBizInfo[h][TBMessage],GetPoint(TankenBizInfo[h][TBKaufPreis]),TankenBizInfo[h][TBLevelNeeded]);
    TankenBizPickup[h] = CreatePickup(1272, 23, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]);
    }
    Update3DTextLabelText(Text3D:TankenBiz[h], COLOR_GREY2, string);
    return 1;
    }

  • Hier wird folgendes aufgerufen:
    Create3DTexte();
    printf(">>>>> Create3DTexte Fertig <<<<<");


    public Create3DTexte()
    {
    new string[256];
    for(new h = 0; h < sizeof(SBizInfo); h++)
    {
    if(SBizInfo[h][sbOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d",SBizInfo[h][sbMessage],SBizInfo[h][sbOwner],SBizInfo[h][sbExtortion],SBizInfo[h][sbEntranceCost],SBizInfo[h][sbLevelNeeded],(SBizInfo[h][sbMaxProducts]-SBizInfo[h][sbProducts]),SBizInfo[h][sbPriceProd]);
    SBizPickup[h] = CreatePickup(1239, 23, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Busines steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",SBizInfo[h][sbMessage],GetPoint(SBizInfo[h][sbBuyPrice]),SBizInfo[h][sbLevelNeeded]);
    SBizPickup[h] = CreatePickup(1272, 23, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]);
    }
    SBiz[h] = Create3DTextLabel(string, COLOR_GREY2, SBizInfo[h][sbEntranceX], SBizInfo[h][sbEntranceY], SBizInfo[h][sbEntranceZ]+0.5,15.0,0);
    }
    for(new h = 0; h < sizeof(TankenBizInfo); h++)
    {
    if(TankenBizInfo[h][TBOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\n{21DD00}Besitzer: {0082FF}%s\n{21DD00}Erpresser: {0082FF}%s\n{21DD00}Spritpreis: {21DD00}$%d {0082FF}{21DD00}Level: {0082FF}%d\n{21DD00}Prods benötigt: {0082FF}%d\n{21DD00}Preis/Prod: {0082FF}$%d",TankenBizInfo[h][TBMessage],TankenBizInfo[h][TBOwner],TankenBizInfo[h][TBExtortion],TankenBizInfo[h][TBSpritPreis],TankenBizInfo[h][TBLevelNeeded],(TankenBizInfo[h][TBMaxProducts]-TankenBizInfo[h][TBProducts]),TankenBizInfo[h][TBProdPreis]);
    TankenBizPickup[h] = CreatePickup(1239, 23, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]);
    }
    else
    {
    format(string, sizeof(string), "%s\n{21DD00}Dieses Busines steht zum Verkauf\nKosten: {0082FF}%s$ {21DD00}Level: {0082FF}%d\n{21DD00}Benutze {0082FF}/buybiz{21DD00} um das Business zu kaufen",TankenBizInfo[h][TBMessage],GetPoint(TankenBizInfo[h][TBKaufPreis]),TankenBizInfo[h][TBLevelNeeded]);
    TankenBizPickup[h] = CreatePickup(1272, 23, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]);
    }
    TankenBiz[h] = Create3DTextLabel(string, GREEN, TankenBizInfo[h][TBPosX], TankenBizInfo[h][TBPosY], TankenBizInfo[h][TBPosZ]+0.5,15.0,0);
    }
    for(new h = 0; h < sizeof(HouseInfo); h++)
    {
    if(HouseInfo[h][hOwned] == 1)
    {
    if(HouseInfo[h][hRentabil] == 0)
    {
    format(string, sizeof(string), "Dieses Haus gehört:\n%s\nLevel: %d",HouseInfo[h][hOwner],HouseInfo[h][hLevel]);
    }
    else
    {
    format(string, sizeof(string), "Dieses Haus gehört:\n%s\nMiete: $%d\nLevel: %d\nBenutze /rentroom um dir eine Wohnung zu mieten",HouseInfo[h][hOwner],HouseInfo[h][hRent],HouseInfo[h][hLevel]);
    }
    HousePickup[h] = CreatePickup(1239, 23, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
    }
    else
    {
    format(string, sizeof(string), "Dieses Haus steht zum Verkauf\nBeschreibung: %s\nKosten: %s$\nLevel: %d\nBenutze /buyhouse um das Haus zu kaufen",HouseInfo[h][hBeschreibung],GetPoint(HouseInfo[h][hPreis]),HouseInfo[h][hLevel]);
    HousePickup[h] = CreatePickup(1273, 23, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]);
    }
    House[h] = Create3DTextLabel(string, COLOR_GREY2, HouseInfo[h][hEntrancex], HouseInfo[h][hEntrancey], HouseInfo[h][hEntrancez]+0.5,15.0,0);
    }
    for(new h = 0; h < sizeof(BizInfo); h++)
    {
    if(BizInfo[h][bOwned] == 1)
    {
    format(string, sizeof(string), "%s\n\nBesitzer: %s\nErpresser: %s\nEintrittspreis: $%d Level: %d\nProds benötigt: %d\nPreis/Prod: $%d\ngib /enter ein um das Biz zu betreten",BizInfo[h][bMessage],BizInfo[h][bOwner],BizInfo[h][bExtortion],BizInfo[h][bEntranceCost],BizInfo[h][bLevelNeeded],(BizInfo[h][bMaxProducts]-BizInfo[h][bProducts]),BizInfo[h][bPriceProd]);
    BizPickup[h] = CreatePickup(1239, 23, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]);
    //CreatePickup(1239, 23, BizInfo[h][bExitX], BizInfo[h][bExitY], BizInfo[h][bExitZ], -1);
    }
    else
    {
    format(string, sizeof(string), "%s\nDieses Business steht zum Verkauf\nKosten: %s$ Level: %d\nBenutze /buybiz um das Business zu kaufen",BizInfo[h][bMessage],GetPoint(BizInfo[h][bBuyPrice]),BizInfo[h][bLevelNeeded]);
    BizPickup[h] = CreatePickup(1272, 23, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]);
    }
    Biz[h] = Create3DTextLabel(string, COLOR_GREY2, BizInfo[h][bEntranceX], BizInfo[h][bEntranceY], BizInfo[h][bEntranceZ]+0.5,15.0,0);
    }
    return 1;
    }

  • Folgendes:
    [15:23:22] OnGamemodeInt: LoadProperty
    [15:23:22] OnGamemodeInt: LoadBiz
    [15:23:22] OnGamemodeInt: LoadSBiz
    [15:23:22] Eigentümer:Staat Name:Zoll Tanke Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:BSN Tanke Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer Alhambra Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer SFPD Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer FS Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Ammunations Tanke LV Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer LV Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer LVPD Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer Matpoint LV Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer Bandits Stadion Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer LV Land Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Tanke Fort Carson Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer LV Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer SF Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer MC Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer MC 2 Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Gasso Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] Eigentümer:Staat Name:Xoomer Spritpreis:5 Kasse:0 Produkte:0/1000
    [15:23:22] Tanken laden
    [15:23:22] OnGamemodeInt: LoadTankenBiz

  • printf(">>>>> Create3DTexte Fertig <<<<<");
    Der print fehlt in deinem Log. Hast du ihn vergessen, oder wird er nicht angezeigt?
    Wenn er nicht angezeigt wird, poste bitte den zusammenhängenden Code von dem Laden der ganzen Sachen und dem Create3DTexte();.

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen
  • Folgendes:
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    ´[18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '4') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '5') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '6') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '7') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '8') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '9') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '10') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '11') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '12') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '13') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '14') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '15') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)
    [18:37:01] >> mysql_fetch_row_format( Connection handle: 1 )
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owned) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Owner) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Message) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Extortion) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(LevelNeeded) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(BuyPrice) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(EntranceCost) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Till) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Locked) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(Products) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(MaxProducts) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_fetch_field_row( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FetchField(PriceProd) - You cannot call this function now. (Reason: Fields/Rows are empty.)
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - Result was successfully free'd.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '16') - Successfully executed.
    [18:37:01] >> mysql_store_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::StoreResult() - Result was stored.
    [18:37:01] >> mysql_num_rows( Connection handle: 1 )
    [18:37:01] >> mysql_free_result( Connection handle: 1 )
    [18:37:01] CMySQLHandler::FreeResult() - The result is already empty.
    [18:37:01] >> mysql_query( Connection handle: 1 )
    [18:37:01] CMySQLHandler::Query(SELECT * FROM `tan Das ist nur ein Kleiner Auschnitt da nicht alles reinpasst.

  • Zitat

    [18:37:01] CMySQLHandler::NumRows() - Returned 0 row(s)


    Wie du siehst, kann nichts ausgelesen werden.


    Kannst du mal einen Screenshot deiner Datenbankstruktur und den Daten posten?
    An Beispiel der biz.

    Zitat

    [18:37:01] CMySQLHandler::Query(SELECT * FROM `biz` WHERE `BizID` = '4') - Successfully executed.

  • Die können sich ja nur erstellen, wenn der Server weiß an welchen Positionen er das Haus erstellen soll. Sprich, irgendwo müssen die Positionen ja sein. Wenn sie nicht in der Datenbank sind, wo sind sie dann?
    Wenn du gar keine Daten hast, dann musst du die Daten erst erstellen, woher sollen sonst die Positionen kommen?

  • Hier:


    #define MaxHouse 31
    new Text3D:House[MaxHouse];
    new HousePickup[MaxHouse];
    enum hInfo
    {
    Float:hEntrancex,
    Float:hEntrancey,
    Float:hEntrancez,
    Float:hExitx,
    Float:hExity,
    Float:hExitz,
    hOwner[MAX_PLAYER_NAME],
    hBeschreibung[128],
    hPreis,
    hHealUpgrade,
    hArmorUpgrade,
    hInt,
    hLock,
    hOwned,
    hRooms,
    hRent,
    hRentabil,
    hKasse,
    hDate,
    hLevel,
    hVW,
    };
    new HouseInfo[MaxHouse][hInfo] =
    {
    {1378.4648,-1753.1239,14.1406,446.100006,507.899993,1001.400024,"Staat","2 Room Apartment",100000,0,0,12,1,0,1,666,1,0,132,5,304},
    {1242.2749,-1101.0942,27.9766,386.100006,1471.800048,1080.099975,"Staat","3 Room Apartment",150000,0,0,15,1,0,1,2000,0,0,131,5,307},
    {1189.4886,-1017.9988,36.2344,301.299987,306.299987,1003.500000,"Staat","Bedsit",50000,0,0,4,1,0,1,200,0,0,131,3,309},
    {980.5103,-677.2499,121.9763,225.600006,1023.500000,1084.000000,"Staat","8 Room Luxury",3000000,0,0,7,1,0,0,6000,1,0,132,11,361},
    {1496.9773,-688.5631,95.3642,225.600006,1023.500000,1084.000000,"Staat","6 Room Luxury",1000000,0,0,7,1,0,0,500,0,0,131,9,362},
    {1332.0663,-633.1792,109.1349,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,10,363},
    {952.5779,-909.6609,45.7656,225.600006,1023.500000,1084.000000,"Staat","8 Room Luxury",3000000,0,0,7,1,0,0,6000,1,0,132,11,364},
    {1106.319335,-299.648345,74.539062,2365.1992,-1134.7502,1050.8750,"Staat","4 Room Apartment",250000,0,0,8,1,0,0,25000,0,0,133,7},// Mittel
    {1242.497192,-878.370666,46.640625,301.299987,306.299987,1003.500000,"Staat","Bedsit",50000,0,0,4,1,0,1,200,0,0,131,3,302},// Klein
    {985.823974,-1094.754150,27.604057,23.000000,1405.599975,1084.400024,"Staat","4 Room House",250000,0,0,5,1,0,0,2500,1,0,133,7},// Mittel
    {652.901733,-1619.912475,15.000000,376.299987,1417.199951,1081.300048,"Staat","4 Room Apartment",250000,0,0,15,1,0,0,200,1,0,131,7},// Mittel
    {315.758697,-1769.920043,4.634671,83.300003,1324.699951,1083.800048,"Staat","6 Room House",1000000,0,0,9,1,0,0,500,0,0,131,9},// Gross
    {1095.4082,-647.2377,113.6484,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1182.9657,-1076.0183,31.6719,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1182.9722,-1099.0010,28.2578,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1142.1216,-1093.2526,28.1875,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1142.1696,-1069.6936,31.7656,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1127.9697,-1022.8050,34.9922,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1102.8433,-1069.7996,31.8828,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1103.1816,-1092.6387,28.4688,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1284.7593,-1066.8260,31.6789,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1242.1627,-1076.3270,31.5547,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1540.1965,-851.3334,64.3361,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {251.7053,-1220.6342,75.9784,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {299.7329,-1154.8922,81.0911,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {255.1439,-1366.5763,53.1094,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1326.5747,-1067.8400,31.5547,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {2141.7119,-1802.1111,16.1475,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {946.1943,-710.1659,122.6199,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {1045.0592,-642.1236,120.1172,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99}, //Haus in vinewood
    {190.0562,-1308.1864,70.2582,227.0870,1114.1605,1080.9969,"Staat","7 Room Luxury",2000000,0,0,5,1,0,0,5000,0,0,131,99} //Haus in vinewood
    };


    #define MaxBiz 17
    new Text3D:Biz[MaxBiz];
    new BizPickup[MaxBiz];
    enum bInfo
    {
    bOwned,
    bOwner[MAX_PLAYER_NAME],
    bMessage[128],
    bExtortion[MAX_PLAYER_NAME],
    Float:bEntranceX,
    Float:bEntranceY,
    Float:bEntranceZ,
    Float:bExitX,
    Float:bExitY,
    Float:bExitZ,
    bLevelNeeded,
    bBuyPrice,
    bEntranceCost,
    bTill,
    bLocked,
    bInterior,
    bProducts,
    bMaxProducts,
    bPriceProd,
    bWorld,
    bExtortionTill,
    };
    new BizInfo[MaxBiz][bInfo] =
    {
    {1,"Staat","Gun Shop SF","Niemand",-2626.4827,209.3238,4.6004,285.6058,-86.0131,1001.5229,5,500000,0,0,1,4,100000,100000,100,1,0},
    {1,"Staat","Gun Shop LS","Niemand",1791.5143,-1164.1787,23.8281,2169.461181,1618.798339,999.976562,5,500000,0,0,1,1,100000,100000,100,2,0},
    {0,"Staat","Restaurant","Niemand",1420999999.1936,-1623.8427,13.5469,-794.936218,490.632385,1376.195312,5,500000,0,0,1,1,100,500,100,3,0},
    {1,"Staat","LS Polizei Waffenkammer","Niemand",1568.625122,-1690.535766,5.890600,246.376007,109.246002,1003.218811,5,500000,0,0,0,10,100000,1000000,100,1,0},
    {1,"Staat","Bank LS","Niemand",1469999992.395751,-1012.391174,26.843799,389.3555,173.8684,1008.3828,5,500000,0,0,0,3,99999,100000,1,1,0},
    {1,"Staat","SF Polizei Waffenkammer","Niemand",-15999993.8340,716.2302,-5.2422,226.7151,110.9211,1010.2188,5,500000,0,0,1,10,100000,1000000,100,2,0},
    {1,"Staat","LV Polizei Waffenkammer","Niemand",699911.0042,-583.9974,17.9763,227.3422,122.0904,1010.2188,5,500000,0,0,0,10,100000,1000000,100,3,0},
    {1,"Staat","Bank SF","Niemand",-1799949.3010,867.1620,25.0859,389.3555,173.8684,1008.3828,5,500000,0,0,0,3,99999,100000,1,2,0},
    {1,"Staat","Gesund Fahren mit dem Fahrad verleih","Niemand",1399912.5642,-873.9422,39.5781,1312.5642,-873.9422,39.5781,5,500000,0,0,0,0,99999,100000,1,0,0},
    {1,"Staat","Ammu Nation","Niemand",1367.9816,-1279.9513,13.5469,286.148986,-40.644397,1001.515625,5,500000,0,0,1,1,100000,100000,100,4,0},
    {1,"Staat","Gun Shop LV","Niemand",2158.5098,943.0615,10.8203,296.919982,-108.071998,1001.515625,5,500000,0,0,1,6,100000,100000,100,5,0},
    {0,"Staat","Alhambra","Niemand",1834.9247,-1682.5403,13.4112,493.2791,-24.2553,1000.6797,5,500000,0,0,1,17,500,500,100,2,0},
    {0,"Staat","Jizzy","Niemand",-2699924.2668,1411.7013,7.0938,-2636.5610,1403.2194,906.4609,5,500000,0,0,1,3,500,500,100,2,0},
    {0,"Staat","Donator Autohaus","Niemand",2209990.5083,1394.3988,11.0625,2200.5083,1394.3988,11.0625,5,500000,0,0,1,0,500,500,100,0,0},
    {0,"Staat","Telefon GmbH","Niemand",1382.1464,-1088.7307,28.2098,-2240.3855,137.1735,1035.4141,5,500000,0,0,1,6,500,500,100,2,0},
    {1,"Staat","Ammu Nation Angle Pine","Niemand",-2093.2163,-2464.3862,30.6250,316.524993,-167.706985,999.593750,5,500000,0,0,1,6,100000,100000,100,8,0},
    {1,"Staat","Bank LV","Niemand",999938.7953,1733.1140,8.8516,389.3555,173.8684,1008.3828,5,500000,0,0,0,3,99999,100000,1,3,0}
    };


    //Hab ausversehen als Erledigt markiert.

  • do.de - Domain-Offensive - Domains für alle und zu super Preisen