Beiträge von TheOneBehindYou1

    hab das jetzt so gemacht:
    public OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ)
    {
    if(hittype == BULLET_HIT_TYPE_VEHICLE) // Hier wird abgefragt ob das abgeschossene Objekt ein Fahrzeug ist.
    {
    if(GetPlayerWeapon(playerid) == RP_WEAPON) // Hier wird abgefragt ob es die Radarpistole ist
    {
    GetVehiclePos(hitid, fX, fY, fZ);// Findet die Fahrzeug Position heraus
    if(IsPlayerInRangeOfPoint(playerid, PLAYER_RANGE, fX, fY, fZ))//fragt ab ob sich das Fahrzeug an in der Reichweite von 200m befindet.
    {
    new Float:speed_x,Float:speed_y,Float:speed_z,Float:final_speed,final_speed_int;
    new veh = GetPlayerVehicleID(hitid);
    GetVehicleVelocity(veh, speed_x, speed_y, speed_z);
    final_speed = floatsqroot(((speed_x*speed_x)+(speed_y*speed_y))+(speed_z*speed_z))*120.0; // 136.666667 = kmph // 85.4166672= mph
    final_speed_int = floatround(final_speed,floatround_round);
    new kmh_anzahl = final_speed_int;
    new string[256];
    format(string,sizeof(string),"%d KM/H",kmh_anzahl);
    if(kmh_anzahl <= 80)
    {
    SendClientMessage(playerid, COLOR_GREEN, string);
    return 1;
    }
    else
    {
    SendClientMessage(playerid,COLOR_RED,string);
    return 1;
    }
    }
    else SendClientMessage(playerid, -1, "Messung fehlgeschlagen!"); // Wenn das Fahrzeug nicht in der Reichweite ist.
    }
    }
    return 1;
    }


    Aber bekomme immer den Error:
    error 017: undefined symbol "BULLET_HIT_TYPE_VEHICLE

    Hey,
    Ich hab mal wieder eine Frage.
    Ist es möglich, wenn man mit zum Beispiel mit einer Deagle schießt, dass man keinen Schuss abgibt sondern die geschwindigkeit des vorbeifahrenden Fahrzeug gemessen wird?


    MfG

    Hey,
    Bei mir taucht seit einiger Zeit ein Payday-Bug auf. Manche Spieler bekommen den Payday und manche bekommen nur das Gehalt, aber es wird kein Payday angezeigt bzw. bekommen sie keine Respektpunkte.
    Payday-Code:
    if(IsPlayerConnected(i))
    {
    PlayerInfo[i][pGesamtMinutes]++;
    PlayerInfo[i][pMinutesSinceLogin]++;
    PlayerInfo[i][pMinutesSinceAn]++;
    if(PlayerInfo[i][pPlayMinutes] <= 60)
    {
    PlayerInfo[i][pPlayMinutes]++;
    }
    if(PlayerInfo[i][pPlayMinutes] >= 60)
    {
    PlayerInfo[i][pPlayMinutes] = 0;
    new string[128];
    new account,interest;
    new rent = 0;
    if(IsPlayerConnected(i))
    {
    if(M_Bot[i][PAFK] == 0)
    {
    if(MoneyMessage[i]==1)
    {
    if(PlayerInfo[i][pJailed] == 0 && WantedLevel[i] >= 0)
    {
    SendClientMessage(i, COLOR_LIGHTRED, "Du konntest deine Schulden nicht Bezahlen und hast ein Wanted bekommen!");
    GivePlayerMoney(i, 1000);
    WantedLevel[i]++;
    }
    else if(PlayerInfo[i][pJailed] == 1)
    {
    SendClientMessage(i, COLOR_LIGHTRED, "Du bist in den Schulden und musst 3 Minuten länger sitzen!");
    PlayerInfo[i][pJailTime] += 180;
    GivePlayerMoney(i, 1000);
    }
    }
    new playername2[MAX_PLAYER_NAME];
    GetPlayerName(i, playername2, sizeof(playername2));
    account = PlayerInfo[i][pAccount];
    new key = PlayerInfo[i][pPhousekey];
    if(key != 255)
    {
    rent = HouseInfo[key][hRent];
    if(strcmp(playername2, HouseInfo[key][hOwner], true) == 0)
    {
    rent = 0;
    }
    else if(rent > GetPlayerMoney(i))
    {
    PlayerInfo[i][pPhousekey] = 255;
    SendClientMessage(i, COLOR_WHITE, "Du wurdest aus der Wohnung geschmissen!");
    rent = 0;
    }
    HouseInfo[key][hTakings] = HouseInfo[key][hTakings]+rent;
    }
    new tmpintrate;
    if (key != 255 && strcmp(playername2, HouseInfo[key][hOwner], true) == 0)
    {
    if(PlayerInfo[i][pDonateRank] > 0)
    {
    tmpintrate = intrate+4;
    }
    else
    {
    tmpintrate = intrate+2;
    }//HouseInfo[key][hLevel]
    }
    else
    {
    if(PlayerInfo[i][pDonateRank] > 0)
    {
    tmpintrate = 3;
    }
    else
    {
    tmpintrate = 1;
    }
    }
    if(PlayerInfo[i][pPbiskey] > 0)
    {
    tmpintrate++;
    }
    new fraktion = 0;
    new checks;
    if(PlayerInfo[i][pMember] > 0) fraktion = PlayerInfo[i][pMember] - 1;
    if(PlayerInfo[i][pLeader] > 0) fraktion = PlayerInfo[i][pLeader] - 1;
    if(fraktion >= 0)
    {
    if(FraktionsKasse[fraktion] - PlayerInfo[i][pGehalt] < 0)
    {
    checks = 0;
    GivePlayerMoney(i, checks);
    }
    else if(FraktionsKasse[fraktion] - PlayerInfo[i][pGehalt] >= 0)
    {
    checks = PlayerInfo[i][pGehalt];
    GivePlayerMoney(i, checks);
    FraktionsKasse[fraktion] -= checks;
    }
    }
    else if(PlayerInfo[i][pJob] != 0 || PlayerInfo[i][pMember] == 0 || PlayerInfo[i][pLeader] == 0)
    {
    checks = 500;
    GivePlayerMoney(i, checks);
    }//Should work for every player online
    PlayerInfo[i][pAccount] -= Tax;
    new ehouse = PlayerInfo[i][pPhousekey];
    if(PlayerInfo[i][pDonateRank] > 0)
    {
    new bonus = PlayerInfo[i][pPayCheck] / 2;
    PlayerInfo[i][pPayCheck] += bonus;
    }
    new ebill;
    if(HouseInfo[ehouse][hOwned] == 1)
    {
    ebill = 300;
    }
    else
    {
    ebill = 0;
    }
    //new oil = (PlayerInfo[i][pPhousekey]*100);
    ConsumingMoney[i] = 1;
    if(PlayerInfo[i][pAccount] > 0)
    {
    GivePlayerMoney(i, -ebill);
    SBizzInfo[3][sbTill] += ebill;
    }
    else
    {
    ebill = 0;
    }
    interest = (PlayerInfo[i][pAccount]/1000)*(tmpintrate);
    //PlayerInfo[i][pExp]++;
    PlayerPlayMusic(i);
    PlayerInfo[i][pAccount] = account+interest;
    SendClientMessage(i, COLOR_YELLOW, "|================| Payday |================|");
    format(string, sizeof(string), " Gehalt: $%d Miete: -$%d Steuern: -$%d", checks, rent, Tax);
    SendClientMessage(i, COLOR_GRAD1, string);
    if(PlayerInfo[i][pPhousekey] != 255 || PlayerInfo[i][pPbiskey] != 255)
    {
    format(string, sizeof(string), " Strom Kosten: -$%d", ebill);
    SendClientMessage(i, COLOR_GRAD1, string);
    }
    if(PlayerInfo[i][pHandyVer] == 1)
    {
    SendClientMessage(i,COLOR_GRAD2," Handyvertragskosten: -$100");
    GivePlayerMoney(i, -100);
    }
    if(PlayerInfo[i][pDonateRank] >= 1)
    {
    PlayerInfo[i][pExp]++;
    PlayerInfo[i][pExp]++;
    PlayerInfo[i][pExp]++;
    SendClientMessage(i, COLOR_GRAD1, "Du hast 3 Respektpunkte erhalten.");
    }
    else {
    PlayerInfo[i][pExp]++;
    SendClientMessage(i, COLOR_GRAD1, "Du hast 1 Respektpunkt erhalten.");
    }
    if(PlayerInfo[i][pPlayerKreditDauer] > 0)
    {
    PlayerInfo[i][pAccount] -= PlayerInfo[i][pPlayerKredit];
    PlayerInfo[i][pPlayerKreditDauer]--;
    format(string, sizeof(string), " Kreditrate: -%d", PlayerInfo[i][pPlayerKredit]);
    SendClientMessage(i, COLOR_GRAD1, string);
    }
    format(string, sizeof(string), " Zinsen: $%d [0.%d Prozent]", interest,tmpintrate);
    SendClientMessage(i, COLOR_GRAD2, string);
    SendClientMessage(i, COLOR_YELLOW, "|=================||============||==============|");
    format(string, sizeof(string), " Neuer Kontostand: $%d", PlayerInfo[i][pAccount]);
    SendClientMessage(i, COLOR_GRAD5, string);
    format(string, sizeof(string), "~g~Zahltag~y~!!!");
    GameTextForPlayer(i, string, 5000, 1);
    if(checks == 0 && FrakMember(i) && PlayerInfo[i][pJob] == 0)
    {
    SendClientMessage(i,COLOR_LIGHTRED, "{FF9600} Imagine Roleplay Fraktions Kasse Meldet : {00FF8C}Deine Fraktion hat leider kein Geld mehr in der Kasse Bitte Melde es Deinem Leader ( Du hast kein lohn Bekommen! ) ");
    SendClientMessage(i,COLOR_LIGHTRED, "{FF9600} Imagine Roleplay Fraktions Kasse Meldet : {00FF8C}Dein Leader Soll dir Lohn Geben oder die Kasse Wieder Auffüllen.");
    }
    rent = 0;
    PlayerInfo[i][pPayCheck] = 0;
    PlayerInfo[i][pConnectTime] += 1;
    if(PlayerInfo[i][pZollPassTime] >= 25)
    {
    PlayerInfo[i][pZollPass] = 0;
    PlayerInfo[i][pZollPassTime] = 0;
    format(string, sizeof(string), "* Dein Zollpass ist nun nicht mehr gültig und vom Staat als ungültig anerkannt.");
    SendClientMessage(i, COLOR_LIGHTRED, string);
    }
    if(PlayerInfo[i][pZollPass] == 1)
    {
    PlayerInfo[i][pZollPassTime] += 1;
    format(string, sizeof(string), "* Du nutzt deinen Zollpass nun schon seit %d PayDays.", PlayerInfo[i][pZollPassTime]);
    SendClientMessage(i, COLOR_LIGHTBLUE, string);
    }
    if(WantedLevel[i] >= 1)
    {
    WantedLevel[i] --;
    new wlevel;
    wlevel = GetPlayerWantedLevel(i);
    new tmp[64];
    format(tmp,sizeof(tmp), "Aktuelles Wantedlevel:{FF9600} %i", wlevel-1);
    SendClientMessage(i, 0xFAFAFAFF,tmp);
    }
    if(PlayerInfo[i][pDonateRank] > 0)
    {
    PlayerInfo[i][pPayDayHad] += 1;
    if(PlayerInfo[i][pPayDayHad] >= 5)
    {
    PlayerInfo[i][pExp]++;
    PlayerInfo[i][pPayDayHad] = 0;
    }
    }
    }
    else
    {
    SendClientMessage(i, COLOR_LIGHTRED, "* Du hast kannst keinen PayDay bekommen, solange du AFK bist!");
    }
    }
    }
    if(KnastTime[i] > 0)
    {
    KnastTime[i]--;
    }
    if(KnastTime[i] == 0 && Knast[i] > 0)
    {
    Knast[i] = 0;
    KnastTime[i] = 0;
    SpawnPlayer(i);
    SendClientMessage(i,COLOR_YELLOW," Benimm dich ab jetzt, oder ein Admin wird dich wieder einsperren!");
    }
    }

    Zeig mal die Codestelle bei OnPlayerDeath.

    Hier:
    if(PlayerInfo[playerid][pLevel] >= 1 && KHSperre[playerid] == 0 && PlayerInfo[playerid][pJailed] == 0 && PlayerInfo[playerid][pGangJailed] == 0 && PlayerPaintballing[playerid] == 0 && AdminDuty[playerid] == 0 && PlayerInfo[playerid][pTot] == 0)
    {
    PlayerInfo[playerid][pTot] = 1;
    GetPlayerPos(playerid, p_X, p_Y, p_Z);
    KadaverX[playerid] = p_X;
    KadaverY[playerid] = p_Y;
    KadaverZ[playerid] = p_Z;
    format(string, sizeof(string), "{FFFFFF}Körper von {FFFF00}%s",GetName(playerid));
    TotenKopfLabel[playerid] = Create3DTextLabel(string,0xFFFFFFAA,KadaverX[playerid],KadaverY[playerid],KadaverZ[playerid]+1.0,10.0,-1,0);
    TotenKopf[playerid] = CreateDynamicPickup(1254,1, KadaverX[playerid], KadaverY[playerid], KadaverZ[playerid]);
    SetPlayerHealth(playerid, 2);
    Totentimer[playerid] = SetTimerEx("DeleteTotenkopf",180000,false,"i",playerid);
    TodTimer[playerid] = SetTimerEx("NachBehandlung2",181000,false,"i",playerid);
    WiederspawnTimer180[playerid] = SetTimerEx("Wiederspawn180",1000,false,"i",playerid);
    }

    Hey,
    hab mal wieder einen Fehler.
    Wenn man /porten eingibt sollte die todes Position des verstorbenen angezeigt werden. Wenn man auf stirbt wird der marker von /porten immer an die selbe stelle gesetzt. Der Befehl funktioniert nur dann wenn man Int verstirbt.
    Kann mir bitte einer helfen
    /porten Code:
    if(strcmp(cmd, "/porten", true) == 0)
    {
    if(IsPlayerConnected(playerid))
    {
    if(PlayerInfo[playerid][pLeader] == 4 || PlayerInfo[playerid][pMember] == 4)
    {
    tmp = strtok(cmdtext, idx);
    if(!strlen(tmp))
    {
    SendClientMessage(playerid, COLOR_GRAD2, "Benutzung: /porten [Spieler ID]");
    return 1;
    }
    giveplayerid = ReturnUser(tmp);
    KadaverX[giveplayerid] = p_X;
    KadaverY[giveplayerid] = p_Y;
    KadaverZ[giveplayerid] = p_Z;
    if(IsPlayerConnected(giveplayerid))
    {
    if(giveplayerid != INVALID_PLAYER_ID)
    {
    if(PlayerInfo[giveplayerid][pTot] == 0)
    {
    SendClientMessage(playerid,COLOR_RED,"Der angegebene Spieler benötigt keine Hilfe!");
    return 1;
    }
    else
    {
    SetPlayerCheckpoint(playerid, KadaverX[giveplayerid],KadaverY[giveplayerid],KadaverZ[giveplayerid], 4);
    SendClientMessage(giveplayerid,COLOR_RED,"Ein Arzt ist zu dir unterwegs.");
    SendClientMessage(playerid, COLOR_GRAD2, "Person geortet. Beeil dich!");
    return 1;
    }
    }


    }
    else
    {
    SendClientMessage(playerid, COLOR_GREY, "Falsche ID!");
    return 1;
    }
    }
    }
    return 1;
    }


    //Edit: KadaverX usw. ist eine globale Variable und wird bei OnPlayerDeath ausgelesen

    Hey,
    Wenn man den Server laufen lässt kommt folgender Fehler:

    Code
    [17:30:27] *** Streamer Plugin: Warning: Include file version (0x26104) does not match plugin version (0x27101) (script might need to be recompiled with the latest include file)
    [17:30:27] Script[gamemodes/GeTmyselfmade.amx]: Run time error 19: "File or function is not found"
    [17:30:27] Number of vehicle models: 0


    Streamer include und plugin sind jedoch auf der selben Version
    Wo kann der Fehler liegen?


    MfG

    Sorry, aber das ist eine der schlechtesten Werbungen die ich je gesehen habe. Es gibt ein Feature wo ich mir bei der Überschrift gedacht habe "ah mal was, das nicht jeder Server hat", nämlich das Waffenskillsystem. Aber als ich mir den Text dazu durchlaß ist es eigentlich mit dem Levelsystem verbunden und hat somit garnichts mit Skill zu tun.


    Werbung: 1/10 für die Mühe
    Server: -/10 Werbung hat mich nicht überzeugt den Server zu testen
    Forum: 0/10 bin mir nicht mal sicher ob es gekauft worden ist, da im Impressum NICHTS steht


    MfG

    hatte bis jetzt immer mysql R5
    habe mal mysql upgedated und jetzt sagt er mir bei folgendem Befehl "Numbers of Arguments doesn't match"
    mysql_query(query);
    wie muss ich den Befehl umschreiben bzw welchen andern Befehl muss ich nehmen, dass er immer noch das selbe bedeutet aber auch für mysql R34 funktioniert?

    Funkt plötzlich, hab nix umgestellt :thumbup:


    //edit: Hab jetzt anderen Fehler: Es kommt immer Run time error 19: "File or function is not found". Hab mir dann nativchecker runtergeladen und der gibt mir jetzt folgenden Fehler zum Run Time Error aus:
    [19:40:04] Error: Function not registered: 'Streamer_CallbackHook'

    [19:18:34] CMySQLHandler::CMySQLHandler() - Connecting to "5.39.74.166" | DB: "samp5290_mvd" | Username: "samp5290" ...
    [19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)


    Entweder die Login-Daten sind falsch oder du hast keinen Zugriff auf die Datenbank (Server down oder keine Berechtigung).


    Ist alles richtig eingegeben, und ich hab Zugriff auf die datenbank

    [19:18:34]
    [19:18:34] ---------------------------
    [19:18:34] MySQL Debugging activated (05/27/15)
    [19:18:34] ---------------------------
    [19:18:34]
    [19:18:34] >> mysql_connect( )
    [19:18:34] CMySQLHandler::CMySQLHandler() - constructor called.
    [19:18:34] CMySQLHandler::CMySQLHandler() - Connecting to "5.39.74.166" | DB: "samp5290_mvd" | Username: "samp5290" ...
    [19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)
    [19:18:34] >> mysql_ping( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection)
    [19:18:34] >> mysql_connect( )
    [19:18:34] CMySQLHandler::Connect() - Can't connect to MySQL server on '5.39.74.166' (111) (Error ID: 2003)
    [19:18:34] >> mysql_ping( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Ping() - You cannot call this function now. (Reason: Dead Connection)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )


    ...
    (Hier wiederholt es sich ca. 1000000x, hab ich raus genommen)
    ...


    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] >> mysql_query( Connection handle: 1 )
    [19:18:34] CMySQLHandler::Query() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_store_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::StoreResult() - There is nothing to store (Reason: Connection is dead)
    [19:18:34] >> mysql_retrieve_row( Connection handle: 1 )
    [19:18:34] CMySQLHandler::RetrieveRow() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] >> mysql_free_result( Connection handle: 1 )
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] CMySQLHandler::~CMySQLHandler() - deconstructor called.
    [19:18:34] CMySQLHandler::FreeResult() - There is nothing to free (Reason: Connection is dead)
    [19:18:34] CMySQLHandler::Disconnect() - You cannot call this function now. (Reason: Connection is dead)
    [19:18:34] CMySQLHandler::~CMySQLHandler() - deconstructor called.


    [18:59:16] <-| [MYSQL] Es konnte keine Verbindung zur Datenbank hergestellt werden!
    [18:59:16] <-| [MYSQL] Es wird erneut versucht eine Verbindung zur Datenbank herzustellen!
    [18:59:16] <-| [MYSQL] Es konnte keine Verbindung zur Datenbank hergestellt werden!
    [18:59:16] <-| [MYSQL] Der Server wird nun beendet!