Beiträge von Batu

    Hallo @Roxithro,


    es tut uns sehr leid das wir uns erst nach langer Zeit melden,
    nur es ist gerade sehr schwer während der Prüfungszeit Zeit zu finden.
    Ich könnte morgen Nachmittag/Abend, wie es bei meinem Kumpel aussieht weiss ich leider noch nicht.
    Um weiter in Kontakt zu bleiben kann ich dir meine Whatsapp Nummer anbieten per Privatnachricht.
    Schau einfach mal auf deine Konversationen. :)
    Wir bitten um Verzeihung.


    Mit freundlichen Grüßen,
    Akuma

    Hallo @Roxithro,


    mein Kumpel und ich planen derzeit ein Projekt im Bereich GTA SA:MP.
    Wir suchen derzeit noch eine Person die mit uns das ganze aufbauen möchte, sprich Konzept, Script und alles weitere.
    Wie oben schon genannt möchten wir ein Konzept zusammenstellen und anschließend aus diesem Konzept ein Selfmade Script erstellen.
    Geplant ist es einen vServer zu kaufen mit einer WBB Lizenz, welche Version ist derzeit noch nicht bekannt.
    Einen Namen für unseren Server haben wir nicht, jedoch möchten wir in Richtung Reallife gehen, da Roleplay in der SA:MP Szene sehr sehr schwierig ist. (Meiste Spieler halten sich nicht dran)
    Das ganze wird dann unter uns 3 besprochen, falls du Interesse hast.


    Persönliche Daten werde ich hier nun nicht veröffentlichen, aber wir können uns heut Abend mal im Teamspeak unterhalten.
    Ich werde dir demnächst eine Teamspeak IP per PN im Breadfish Forum senden.


    Wir würden uns sehr freuen, wenn wir bald eine Zusage bekommen würden.
    Falls es weitere Fragen gibt, nur zu, wir sind offen und ehrlich.


    Mit freundlichen Grüßen,
    Akuma

    Ich hab den Fehler entdeckt, es liegt an /fpark, weil wenn ich /createfrakcar mache und es spawnt ist es in der DB richtig eingespeichert, sobald ich /fpark mache ändert es die ID, also liegt es an /fpark, nur weiss noch nicht genau woran es in /fpark liegt, vielleicht kannst du mir ja trotzdem weiterhelfen. Hier mal der Code:


    if(!strcmp(cmd, "/fpark", true))
    {
    new veh = GetPlayerVehicleID(playerid);
    if(FFahrzeugInfo[veh][fAbgeschleppt] != 0) return SendStrukturMessage(playerid, MSG_FEHLER, "Dieses Fahrzeug wurde abgechleppt!");
    if(!IsFraktionsCar[veh]) return SendStrukturMessage(playerid, MSG_FEHLER, "Dies ist kein Fraktions Fahrzeug!");
    if(FFahrzeugInfo[veh][fFrakID] != PlayerInfo[playerid][pLeader]) return SendClientMessage(playerid, COLOR_GRAU, "Du kannst dieses Fahrzeug nicht parken!");
    GameTextForPlayer(playerid, "~n~~n~~n~~n~~n~~n~~W~Fraktionsfahrzeug ~g~~n~Geparkt!", 2000, 5);
    new Float:X, Float:Y, Float:Z, Float:Rot;
    GetVehiclePos(veh, X, Y, Z);
    GetVehicleZAngle(veh, Rot);
    FFahrzeugInfo[veh][fParkPosX] = X;
    FFahrzeugInfo[veh][fParkPosY] = Y;
    FFahrzeugInfo[veh][fParkPosZ] = Z;
    FFahrzeugInfo[veh][fParkPosA] = Rot;
    new Color1,Color2;
    GetVehicleColor(veh, Color1, Color2);
    new model = GetVehicleModel(veh);
    DestroyVehicle(veh);
    FFahrzeugInfo[veh][fModelID] =
    CreateVehicleEx(model,X,Y, Z, Rot, Color1, Color2, -1);
    SaveFraktionsCar(veh);
    return 1;
    }

    case _SQL_FRAKTIONSCARS_LOAD:
    {
    print(" "), print(TRENNLINIE), printf("[ - SCRIPT - ] | Fraktionscars werden geladen...");
    cache_get_data(rows, fields);
    printf("1");
    new lCount, lID, lStart = GetTickCount(), ModelID, Color[2], Float:Pos[4], tmp_databaseid;
    printf("2");


    if(rows)
    {
    printf("3: %d rows", rows);
    while(lCount < rows)
    {
    printf("4: %d lCount", lCount);
    cache_get_field_content(lCount, "ID", lResult), tmp_databaseid = strval(lResult);
    cache_get_field_content(lCount, "ModelID", lResult); ModelID = strval(lResult);
    if(ModelID < 400 || ModelID > 611){ lCount++; continue; }
    cache_get_field_content(lCount, "Farbe1", lResult); Color[0] = strval(lResult);
    cache_get_field_content(lCount, "Farbe2", lResult); Color[1] = strval(lResult);
    cache_get_field_content(lCount, "PosX", lResult); Pos[0] = floatstr(lResult);
    cache_get_field_content(lCount, "PosY", lResult); Pos[1] = floatstr(lResult);
    cache_get_field_content(lCount, "PosZ", lResult); Pos[2] = floatstr(lResult);
    cache_get_field_content(lCount, "PosA", lResult); Pos[3] = floatstr(lResult);


    new vid = CreateVehicleEx(ModelID, Pos[0], Pos[1], Pos[2], Pos[3], Color[0], Color[1]);
    cache_get_field_content(lCount, "AnmeldungsOrt", lResult); FFahrzeugInfo[vid][fAnmeldungsOrt] = strval(lResult);
    cache_get_field_content(lCount, "KFZNummer", lResult); FFahrzeugInfo[vid][fKFZNummer] = strval(lResult);
    IsFraktionsCar[vid] = true;
    SetVehicleRightNumberPlate(vid);


    FFahrzeugInfo[vid][fDatabaseID] = tmp_databaseid;


    FFahrzeugInfo[vid][fFarbe1] = Color[0];
    FFahrzeugInfo[vid][fFarbe2] = Color[1];
    FFahrzeugInfo[vid][fModelID] = ModelID;
    FFahrzeugInfo[vid][fPosX] = Pos[0];
    FFahrzeugInfo[vid][fPosY] = Pos[1];
    FFahrzeugInfo[vid][fPosZ] = Pos[2];
    FFahrzeugInfo[vid][fPosA] = Pos[3];


    cache_get_field_content(lCount, "FrakID", lResult), FFahrzeugInfo[vid][fFrakID] = strval(lResult);
    cache_get_field_content(lCount, "ParkPosX", lResult), FFahrzeugInfo[vid][fParkPosX] = floatstr(lResult);
    cache_get_field_content(lCount, "ParkPosY", lResult), FFahrzeugInfo[vid][fParkPosY] = floatstr(lResult);
    cache_get_field_content(lCount, "ParkPosZ", lResult), FFahrzeugInfo[vid][fParkPosZ] = floatstr(lResult);
    cache_get_field_content(lCount, "ParkPosA", lResult), FFahrzeugInfo[vid][fParkPosA] = floatstr(lResult);
    cache_get_field_content(lCount, "Paintjob", lResult), FFahrzeugInfo[vid][fPaintjob] = strval(lResult);
    cache_get_field_content(lCount, "Abgeschlossen", lResult), FFahrzeugInfo[vid][fAbgeschlossen] = strval(lResult);
    cache_get_field_content(lCount, "Versichert", lResult), FFahrzeugInfo[vid][fVersichert] = strval(lResult);
    cache_get_field_content(lCount, "Abgeschleppt", lResult), FFahrzeugInfo[vid][fAbgeschleppt] = strval(lResult);
    cache_get_field_content(lCount, "TankInhalt", lResult), FFahrzeugInfo[vid][fTankInhalt] = strval(lResult);
    cache_get_field_content(lCount, "TankArt", lResult), FFahrzeugInfo[vid][fTankArt] = strval(lResult);
    cache_get_field_content(lCount, "Batterie", lResult), FFahrzeugInfo[vid][fBatterie] = strval(lResult);
    cache_get_field_content(lCount, "MeterStand", lResult), FFahrzeugInfo[vid][fMeterStand] = strval(lResult);
    cache_get_field_content(lCount, "TagesMeterStand", lResult), FFahrzeugInfo[vid][fTagesMeterStand] = strval(lResult);
    cache_get_field_content(lCount, "FRadio", lResult), FFahrzeugInfo[vid][fFRadio] = strval(lResult);
    cache_get_field_content(lCount, "Zustand", lResult), FFahrzeugInfo[vid][fZustand] = floatstr(lResult);
    cache_get_field_content(lCount, "Mod1", lResult), FFahrzeugInfo[vid][fMod1] = strval(lResult);
    cache_get_field_content(lCount, "Mod2", lResult), FFahrzeugInfo[vid][fMod2] = strval(lResult);
    cache_get_field_content(lCount, "Mod3", lResult), FFahrzeugInfo[vid][fMod3] = strval(lResult);
    cache_get_field_content(lCount, "Mod4", lResult), FFahrzeugInfo[vid][fMod4] = strval(lResult);
    cache_get_field_content(lCount, "Mod5", lResult), FFahrzeugInfo[vid][fMod5] = strval(lResult);
    cache_get_field_content(lCount, "Mod6", lResult), FFahrzeugInfo[vid][fMod6] = strval(lResult);
    cache_get_field_content(lCount, "Mod7", lResult), FFahrzeugInfo[vid][fMod7] = strval(lResult);
    cache_get_field_content(lCount, "Mod8", lResult), FFahrzeugInfo[vid][fMod8] = strval(lResult);
    cache_get_field_content(lCount, "Mod9", lResult), FFahrzeugInfo[vid][fMod9] = strval(lResult);
    cache_get_field_content(lCount, "Mod10", lResult), FFahrzeugInfo[vid][fMod10] = strval(lResult);
    cache_get_field_content(lCount, "Mod11", lResult), FFahrzeugInfo[vid][fMod11] = strval(lResult);
    cache_get_field_content(lCount, "Mod12", lResult), FFahrzeugInfo[vid][fMod12] = strval(lResult);
    cache_get_field_content(lCount, "Mod13", lResult), FFahrzeugInfo[vid][fMod13] = strval(lResult);
    cache_get_field_content(lCount, "Mod14", lResult), FFahrzeugInfo[vid][fMod14] = strval(lResult);
    cache_get_field_content(lCount, "Panels", lResult), FFahrzeugInfo[vid][fPanels] = strval(lResult);
    cache_get_field_content(lCount, "Doors", lResult), FFahrzeugInfo[vid][fDoors] = strval(lResult);
    cache_get_field_content(lCount, "Lights", lResult), FFahrzeugInfo[vid][fLights] = strval(lResult);
    cache_get_field_content(lCount, "Tires", lResult), FFahrzeugInfo[vid][fTires] = strval(lResult);
    cache_get_field_content(lCount, "Panzerung", lResult), FFahrzeugInfo[vid][fPanzerung] = strval(lResult);
    cache_get_field_content(lCount, "KennzeichenFarbe", lResult), FFahrzeugInfo[vid][fKennzeichenFarbe] = strval(lResult);
    cache_get_field_content(lCount, "Autogas", lResult), FFahrzeugInfo[vid][fAutogas] = strval(lResult);


    if(FFahrzeugInfo[vid][fZustand] > 300) SetVehicleHealth(vid, FFahrzeugInfo[vid][fZustand]);
    else SetVehicleHealth(vid, 300);
    TankInhalt[vid] = FFahrzeugInfo[vid][fTankInhalt];
    Batterie[vid] = FFahrzeugInfo[vid][fBatterie];
    MeterStand[vid] = FFahrzeugInfo[vid][fMeterStand];
    TagesMeterStand[vid] = FFahrzeugInfo[vid][fTagesMeterStand];
    FRadio[vid] = FFahrzeugInfo[vid][fFRadio];
    TankInhaltArt[vid] = FFahrzeugInfo[vid][fTankArt];
    AddSpielerCarComponents(vid);
    UpdateVehicleDamageStatus(vid, FFahrzeugInfo[vid][fPanels], FFahrzeugInfo[vid][fDoors], FFahrzeugInfo[vid][fLights], FFahrzeugInfo[vid][fTires]);
    new engine, light, alarm, door, bonnet, boot, objective;
    GetVehicleParamsEx(vid, engine, light, alarm, door, bonnet, boot, objective);
    if(FFahrzeugInfo[vid][fAbgeschlossen] == 1) SetVehicleParamsEx(vid, engine, light, alarm, VEHICLE_PARAMS_ON, bonnet, boot, objective);
    else SetVehicleParamsEx(vid, engine, light, alarm, VEHICLE_PARAMS_OFF, bonnet, boot, objective);
    lID++; lCount++;
    }
    }
    printf("%d",ModelID);
    printf("[ - SCRIPT - ] | Fraktionscars erfolgreich in %d Millisekunden geladen!", GetTickCount()-lStart);
    }



    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3.7-R2, (C)2005-2015 SA-MP Team


    [14.04.2018 - 14:05:29]
    [14.04.2018 - 14:05:29] Server Plugins
    [14.04.2018 - 14:05:29] --------------
    [14.04.2018 - 14:05:29] Loading plugin: crashdetect
    [14.04.2018 - 14:05:29] CrashDetect plugin 4.19
    [14.04.2018 - 14:05:29] Loaded.
    [14.04.2018 - 14:05:29] Loading plugin: MapAndreas
    [14.04.2018 - 14:05:29] Loaded.
    [14.04.2018 - 14:05:29] Loading plugin: mysql
    [14.04.2018 - 14:05:29] >> plugin.mysql: R38 successfully loaded.
    [14.04.2018 - 14:05:29] Loaded.
    [14.04.2018 - 14:05:29] Loading plugin: sscanf
    [14.04.2018 - 14:05:29]


    [14.04.2018 - 14:05:29] ===============================


    [14.04.2018 - 14:05:29] sscanf plugin loaded.


    [14.04.2018 - 14:05:29] Version: 2.8.1


    [14.04.2018 - 14:05:29] (c) 2012 Alex "Y_Less" Cole


    [14.04.2018 - 14:05:29] ===============================


    [14.04.2018 - 14:05:29] Loaded.
    [14.04.2018 - 14:05:29] Loading plugin: streamer
    [14.04.2018 - 14:05:29]


    *** Streamer Plugin v2.8.2 by Incognito loaded ***


    [14.04.2018 - 14:05:29] Loaded.
    [14.04.2018 - 14:05:29] Loaded 5 plugins.


    [14.04.2018 - 14:05:29]
    [14.04.2018 - 14:05:29] Ban list
    [14.04.2018 - 14:05:29] --------
    [14.04.2018 - 14:05:29] Loaded: samp.ban
    [14.04.2018 - 14:05:29]
    [14.04.2018 - 14:05:29] [connection] 127.0.0.1:61290 requests connection cookie.
    [14.04.2018 - 14:05:29]
    [14.04.2018 - 14:05:29] Filterscripts
    [14.04.2018 - 14:05:29] ---------------
    [14.04.2018 - 14:05:29] Loading filterscript 'blinker.amx'...
    [14.04.2018 - 14:05:29] Loaded 1 filterscripts.


    [14.04.2018 - 14:05:29] [MYSQL]: Verbindung zur Datenbank rl hergestellt!
    [14.04.2018 - 14:05:29] [connection] 127.0.0.1:61289 requests connection cookie.
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] Objekte werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] 5651 Objecte wurden erfolgreich in 16 Millisekunden geladen!
    [14.04.2018 - 14:05:32] ----------------------------------
    [14.04.2018 - 14:05:32] Second Life Akuma.Yakuma
    [14.04.2018 - 14:05:32] Scripting by Akuma.Yakuma
    [14.04.2018 - 14:05:32]
    Heapspace: 65900 | 16364
    [14.04.2018 - 14:05:32] ----------------------------------
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] Number of vehicle models: 0
    [14.04.2018 - 14:05:32] [connection] incoming connection: 127.0.0.1:61290 id: 0
    [14.04.2018 - 14:05:32] [npc:join] BankAngestellte2 has joined the server (0:127.0.0.1)
    [14.04.2018 - 14:05:32] [connection] incoming connection: 127.0.0.1:61289 id: 1
    [14.04.2018 - 14:05:32] [npc:join] BankAngestellte1 has joined the server (1:127.0.0.1)
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Fraktionen werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Fraktionen erfolgreich in 1 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Tankstellen werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Tankstellen erfolgreich in 3 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 1) wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 1) erfolgreich in 4 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 2) wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 3) wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 3) erfolgreich in 2 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 4) wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Autohaussystem (Teil 4) erfolgreich in 1 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Fraktionscars werden geladen...
    [14.04.2018 - 14:05:32] 1
    [14.04.2018 - 14:05:32] 2
    [14.04.2018 - 14:05:32] 3: 69 rows
    [14.04.2018 - 14:05:32] 4: 0 lCount
    [14.04.2018 - 14:05:32] 4: 1 lCount
    [14.04.2018 - 14:05:32] 4: 2 lCount
    [14.04.2018 - 14:05:32] 4: 3 lCount
    [14.04.2018 - 14:05:32] 4: 4 lCount
    [14.04.2018 - 14:05:32] 4: 5 lCount
    [14.04.2018 - 14:05:32] 4: 6 lCount
    [14.04.2018 - 14:05:32] 4: 7 lCount
    [14.04.2018 - 14:05:32] 4: 8 lCount
    [14.04.2018 - 14:05:32] 4: 9 lCount
    [14.04.2018 - 14:05:32] 4: 10 lCount
    [14.04.2018 - 14:05:32] 4: 11 lCount
    [14.04.2018 - 14:05:32] 4: 12 lCount
    [14.04.2018 - 14:05:32] 4: 13 lCount
    [14.04.2018 - 14:05:32] 4: 14 lCount
    [14.04.2018 - 14:05:32] 4: 15 lCount
    [14.04.2018 - 14:05:32] 4: 16 lCount
    [14.04.2018 - 14:05:32] 4: 17 lCount
    [14.04.2018 - 14:05:32] 4: 18 lCount
    [14.04.2018 - 14:05:32] 4: 19 lCount
    [14.04.2018 - 14:05:32] 4: 20 lCount
    [14.04.2018 - 14:05:32] 4: 21 lCount
    [14.04.2018 - 14:05:32] 4: 22 lCount
    [14.04.2018 - 14:05:32] 4: 23 lCount
    [14.04.2018 - 14:05:32] 4: 24 lCount
    [14.04.2018 - 14:05:32] 4: 25 lCount
    [14.04.2018 - 14:05:32] 4: 26 lCount
    [14.04.2018 - 14:05:32] 4: 27 lCount
    [14.04.2018 - 14:05:32] 4: 28 lCount
    [14.04.2018 - 14:05:32] 4: 29 lCount
    [14.04.2018 - 14:05:32] 4: 30 lCount
    [14.04.2018 - 14:05:32] 4: 31 lCount
    [14.04.2018 - 14:05:32] 4: 32 lCount
    [14.04.2018 - 14:05:32] 4: 33 lCount
    [14.04.2018 - 14:05:32] 4: 34 lCount
    [14.04.2018 - 14:05:32] 4: 35 lCount
    [14.04.2018 - 14:05:32] 4: 36 lCount
    [14.04.2018 - 14:05:32] 4: 37 lCount
    [14.04.2018 - 14:05:32] 4: 38 lCount
    [14.04.2018 - 14:05:32] 4: 39 lCount
    [14.04.2018 - 14:05:32] 4: 40 lCount
    [14.04.2018 - 14:05:32] 4: 41 lCount
    [14.04.2018 - 14:05:32] 4: 42 lCount
    [14.04.2018 - 14:05:32] 4: 43 lCount
    [14.04.2018 - 14:05:32] 4: 44 lCount
    [14.04.2018 - 14:05:32] 4: 45 lCount
    [14.04.2018 - 14:05:32] 4: 46 lCount
    [14.04.2018 - 14:05:32] 4: 47 lCount
    [14.04.2018 - 14:05:32] 4: 48 lCount
    [14.04.2018 - 14:05:32] 4: 49 lCount
    [14.04.2018 - 14:05:32] 4: 50 lCount
    [14.04.2018 - 14:05:32] 4: 51 lCount
    [14.04.2018 - 14:05:32] 4: 52 lCount
    [14.04.2018 - 14:05:32] 4: 53 lCount
    [14.04.2018 - 14:05:32] 4: 54 lCount
    [14.04.2018 - 14:05:32] 4: 55 lCount
    [14.04.2018 - 14:05:32] 4: 56 lCount
    [14.04.2018 - 14:05:32] 4: 57 lCount
    [14.04.2018 - 14:05:32] 4: 58 lCount
    [14.04.2018 - 14:05:32] 4: 59 lCount
    [14.04.2018 - 14:05:32] 4: 60 lCount
    [14.04.2018 - 14:05:32] 4: 61 lCount
    [14.04.2018 - 14:05:32] 4: 62 lCount
    [14.04.2018 - 14:05:32] 4: 63 lCount
    [14.04.2018 - 14:05:32] 4: 64 lCount
    [14.04.2018 - 14:05:32] 4: 65 lCount
    [14.04.2018 - 14:05:32] 4: 66 lCount
    [14.04.2018 - 14:05:32] 4: 67 lCount
    [14.04.2018 - 14:05:32] 4: 68 lCount
    [14.04.2018 - 14:05:32] 174
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Fraktionscars erfolgreich in 29 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Häuser (Teil 1) werden geladen...
    [14.04.2018 - 14:05:32] Interior 1: 0
    [14.04.2018 - 14:05:32] Interior 3: 0
    [14.04.2018 - 14:05:32] Interior 5: 0
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Häuser (Teil 1) erfolgreich in 2 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Häuser (Teil 2) werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Häuser (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Häuser (Teil 3) werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Häuser (Teil 3) erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Gangwarsystem wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Gangwarsystem erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Angelgebiete werden geladen...
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Organisationen werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Organisationen erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Pfandflaschen werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Pfandflaschen erfolgreich in 3 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Werbetafeln werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Werbetafeln erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Blitzer werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Blitzer erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Elektrik wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Elektrik erfolgreich in 1 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Drogensysten wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Drogensystem erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Heal / Armour Pickups werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Heal / Armor Pickups erfolgreich in 3 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Enter / Exit Pickups werden geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Enter / Exit Pickups erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32]
    [14.04.2018 - 14:05:32] ====================================================
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Allgemeines wird geladen...
    [14.04.2018 - 14:05:32] [ - SCRIPT - ] | Allgemeines erfolgreich in 0 Millisekunden geladen!
    [14.04.2018 - 14:05:32] onGameModeInitEx Erreicht!
    [14.04.2018 - 14:05:32] Aktuelle Uhrzeit: 14.4.2018 14:05
    [14.04.2018 - 14:05:32] [connection] 127.0.0.1:61291 requests connection cookie.
    [14.04.2018 - 14:05:33] [connection] 127.0.0.1:61292 requests connection cookie.
    [14.04.2018 - 14:05:33] [connection] incoming connection: 127.0.0.1:61291 id: 2
    [14.04.2018 - 14:05:33] [connection] 127.0.0.1:61293 requests connection cookie.
    [14.04.2018 - 14:05:34] [connection] incoming connection: 127.0.0.1:61292 id: 2
    [14.04.2018 - 14:05:34] [connection] 127.0.0.1:61294 requests connection cookie.
    [14.04.2018 - 14:05:34] [connection] incoming connection: 127.0.0.1:61293 id: 2
    [14.04.2018 - 14:05:35] [connection] 127.0.0.1:61295 requests connection cookie.
    [14.04.2018 - 14:05:35] [npc:join] BankAngestellte3 has joined the server (2:127.0.0.1)
    [14.04.2018 - 14:05:35] [connection] incoming connection: 127.0.0.1:61294 id: 3
    [14.04.2018 - 14:05:35] [connection] 127.0.0.1:61296 requests connection cookie.
    [14.04.2018 - 14:05:35] [npc:join] BankAngestellte4 has joined the server (3:127.0.0.1)
    [14.04.2018 - 14:05:36] [connection] incoming connection: 127.0.0.1:61295 id: 4
    [14.04.2018 - 14:05:36] [connection] 127.0.0.1:61297 requests connection cookie.
    [14.04.2018 - 14:05:36] [npc:join] BankSecurity1 has joined the server (4:127.0.0.1)
    [14.04.2018 - 14:05:36] [connection] incoming connection: 127.0.0.1:61296 id: 5
    [14.04.2018 - 14:05:36] [npc:join] BankSecurity2 has joined the server (5:127.0.0.1)
    [14.04.2018 - 14:05:37] [connection] incoming connection: 127.0.0.1:61297 id: 6
    [14.04.2018 - 14:05:37] [npc:join] AAmtAng1 has joined the server (6:127.0.0.1)
    [14.04.2018 - 14:05:38] [connection] 127.0.0.1:61298 requests connection cookie.
    [14.04.2018 - 14:05:38] [connection] 127.0.0.1:61299 requests connection cookie.
    [14.04.2018 - 14:05:39] [connection] incoming connection: 127.0.0.1:61298 id: 7
    [14.04.2018 - 14:05:39] [connection] 127.0.0.1:61300 requests connection cookie.
    [14.04.2018 - 14:05:39] [npc:join] UHLadenVerkaufer has joined the server (7:127.0.0.1)
    [14.04.2018 - 14:05:39] [connection] incoming connection: 127.0.0.1:61299 id: 8
    [14.04.2018 - 14:05:39] [connection] 127.0.0.1:61301 requests connection cookie.
    [14.04.2018 - 14:05:40] [npc:join] JagerExperteHans has joined the server (8:127.0.0.1)
    [14.04.2018 - 14:05:40] [connection] incoming connection: 127.0.0.1:61300 id: 9
    [14.04.2018 - 14:05:40] [connection] 127.0.0.1:61302 requests connection cookie.
    [14.04.2018 - 14:05:40] [npc:join] Hausshop has joined the server (9:127.0.0.1)
    [14.04.2018 - 14:05:40] [connection] incoming connection: 127.0.0.1:61301 id: 10
    [14.04.2018 - 14:05:41] [connection] 127.0.0.1:61303 requests connection cookie.
    [14.04.2018 - 14:05:41] [npc:join] ammuls has joined the server (10:127.0.0.1)
    [14.04.2018 - 14:05:41] [connection] incoming connection: 127.0.0.1:61302 id: 11
    [14.04.2018 - 14:05:41] [connection] 127.0.0.1:61304 requests connection cookie.
    [14.04.2018 - 14:05:41] [npc:join] verwahr has joined the server (11:127.0.0.1)
    [14.04.2018 - 14:05:42] [connection] incoming connection: 127.0.0.1:61303 id: 12
    [14.04.2018 - 14:05:42] [connection] 127.0.0.1:61305 requests connection cookie.
    [14.04.2018 - 14:05:42] [npc:join] 247bsn has joined the server (12:127.0.0.1)
    [14.04.2018 - 14:05:42] [connection] incoming connection: 127.0.0.1:61304 id: 13
    [14.04.2018 - 14:05:42] [connection] 127.0.0.1:61306 requests connection cookie.
    [14.04.2018 - 14:05:42] [npc:join] LSPDWaffe has joined the server (13:127.0.0.1)
    [14.04.2018 - 14:05:43] [connection] incoming connection: 127.0.0.1:61305 id: 14
    [14.04.2018 - 14:05:43] [connection] 127.0.0.1:61307 requests connection cookie.
    [14.04.2018 - 14:05:43] [npc:join] gstanke1 has joined the server (14:127.0.0.1)
    [14.04.2018 - 14:05:43] [connection] incoming connection: 127.0.0.1:61306 id: 15
    [14.04.2018 - 14:05:43] [connection] 127.0.0.1:61308 requests connection cookie.
    [14.04.2018 - 14:05:43] [npc:join] gstanke2 has joined the server (15:127.0.0.1)
    [14.04.2018 - 14:05:44] [connection] incoming connection: 127.0.0.1:61307 id: 16
    [14.04.2018 - 14:05:44] [connection] 127.0.0.1:61309 requests connection cookie.
    [14.04.2018 - 14:05:44] [npc:join] snmieten has joined the server (16:127.0.0.1)
    [14.04.2018 - 14:05:44] [connection] incoming connection: 127.0.0.1:61308 id: 17
    [14.04.2018 - 14:05:44] [connection] 127.0.0.1:61310 requests connection cookie.
    [14.04.2018 - 14:05:45] [npc:join] snwerbung has joined the server (17:127.0.0.1)
    [14.04.2018 - 14:05:45] [connection] incoming connection: 127.0.0.1:61309 id: 18
    [14.04.2018 - 14:05:45] [connection] 127.0.0.1:61311 requests connection cookie.
    [14.04.2018 - 14:05:45] [npc:join] tankelv1 has joined the server (18:127.0.0.1)
    [14.04.2018 - 14:05:45] [connection] incoming connection: 127.0.0.1:61310 id: 19
    [14.04.2018 - 14:05:45] [connection] 127.0.0.1:61312 requests connection cookie.
    [14.04.2018 - 14:05:46] [npc:join] tankelv2 has joined the server (19:127.0.0.1)
    [14.04.2018 - 14:05:46] [connection] incoming connection: 127.0.0.1:61311 id: 20
    [14.04.2018 - 14:05:46] [connection] 127.0.0.1:61313 requests connection cookie.
    [14.04.2018 - 14:05:46] [npc:join] tankelv3 has joined the server (20:127.0.0.1)
    [14.04.2018 - 14:05:46] [connection] incoming connection: 127.0.0.1:61312 id: 21
    [14.04.2018 - 14:05:47] [connection] 127.0.0.1:61314 requests connection cookie.
    [14.04.2018 - 14:05:47] [npc:join] tankelv4 has joined the server (21:127.0.0.1)
    [14.04.2018 - 14:05:47] [connection] incoming connection: 127.0.0.1:61313 id: 22
    [14.04.2018 - 14:05:47] [connection] 127.0.0.1:61315 requests connection cookie.
    [14.04.2018 - 14:05:47] [npc:join] tankesf1 has joined the server (22:127.0.0.1)
    [14.04.2018 - 14:05:48] [connection] incoming connection: 127.0.0.1:61314 id: 23
    [14.04.2018 - 14:05:48] [connection] 127.0.0.1:61316 requests connection cookie.
    [14.04.2018 - 14:05:48] [npc:join] tankesfpd1 has joined the server (23:127.0.0.1)
    [14.04.2018 - 14:05:48] [connection] incoming connection: 127.0.0.1:61315 id: 24
    [14.04.2018 - 14:05:48] [npc:join] tankesfpd2 has joined the server (24:127.0.0.1)
    [14.04.2018 - 14:05:49] [connection] incoming connection: 127.0.0.1:61316 id: 25
    [14.04.2018 - 14:05:49] [npc:join] tankeyaki1 has joined the server (25:127.0.0.1)


    Tut mir leid, habs falsch eingefügt, jetzt kommts. :D
    Test 174 ist es.



    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3.7-R2, (C)2005-2015 SA-MP Team


    [09.04.2018 - 00:28:56]
    [09.04.2018 - 00:28:56] Server Plugins
    [09.04.2018 - 00:28:56] --------------
    [09.04.2018 - 00:28:56] Loading plugin: crashdetect
    [09.04.2018 - 00:28:56] CrashDetect plugin 4.19
    [09.04.2018 - 00:28:56] Loaded.
    [09.04.2018 - 00:28:56] Loading plugin: MapAndreas
    [09.04.2018 - 00:28:56] Loaded.
    [09.04.2018 - 00:28:56] Loading plugin: mysql
    [09.04.2018 - 00:28:56] >> plugin.mysql: R38 successfully loaded.
    [09.04.2018 - 00:28:56] Loaded.
    [09.04.2018 - 00:28:56] Loading plugin: sscanf
    [09.04.2018 - 00:28:56]


    [09.04.2018 - 00:28:56] ===============================


    [09.04.2018 - 00:28:56] sscanf plugin loaded.


    [09.04.2018 - 00:28:56] Version: 2.8.1


    [09.04.2018 - 00:28:56] (c) 2012 Alex "Y_Less" Cole


    [09.04.2018 - 00:28:56] ===============================


    [09.04.2018 - 00:28:56] Loaded.
    [09.04.2018 - 00:28:56] Loading plugin: streamer
    [09.04.2018 - 00:28:56]


    *** Streamer Plugin v2.8.2 by Incognito loaded ***


    [09.04.2018 - 00:28:56] Loaded.
    [09.04.2018 - 00:28:56] Loaded 5 plugins.


    [09.04.2018 - 00:28:56]
    [09.04.2018 - 00:28:56] Ban list
    [09.04.2018 - 00:28:56] --------
    [09.04.2018 - 00:28:56] Loaded: samp.ban
    [09.04.2018 - 00:28:56]
    [09.04.2018 - 00:28:56]
    [09.04.2018 - 00:28:56] Filterscripts
    [09.04.2018 - 00:28:56] ---------------
    [09.04.2018 - 00:28:56] Loading filterscript 'blinker.amx'...
    [09.04.2018 - 00:28:56] Loaded 1 filterscripts.


    [09.04.2018 - 00:28:56] [MYSQL]: Verbindung zur Datenbank rl hergestellt!
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] Objekte werden geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] 5651 Objecte wurden erfolgreich in 42 Millisekunden geladen!
    [09.04.2018 - 00:28:58] ----------------------------------
    [09.04.2018 - 00:28:58] Second Life Akuma.Yakuma
    [09.04.2018 - 00:28:58] Scripting by Akuma.Yakuma
    [09.04.2018 - 00:28:58]
    Heapspace: 65900 | 16364
    [09.04.2018 - 00:28:58] ----------------------------------
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] Number of vehicle models: 0
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Fraktionen werden geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Fraktionen erfolgreich in 2 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Tankstellen werden geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Tankstellen erfolgreich in 3 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 1) wird geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 1) erfolgreich in 9 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 2) wird geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 3) wird geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 3) erfolgreich in 2 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 4) wird geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Autohaussystem (Teil 4) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) wird geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) wird geladen...
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:58]
    [09.04.2018 - 00:28:58] ====================================================
    [09.04.2018 - 00:28:58] [ - SCRIPT - ] | Fraktionscars werden geladen...
    [09.04.2018 - 00:28:58] 1
    [09.04.2018 - 00:28:58] 2
    [09.04.2018 - 00:28:58] 3: 69 rows
    [09.04.2018 - 00:28:58] 4: 0 lCount
    [09.04.2018 - 00:28:58] 4: 1 lCount
    [09.04.2018 - 00:28:58] 4: 2 lCount
    [09.04.2018 - 00:28:58] 4: 3 lCount
    [09.04.2018 - 00:28:58] 4: 4 lCount
    [09.04.2018 - 00:28:58] 4: 5 lCount
    [09.04.2018 - 00:28:58] 4: 6 lCount
    [09.04.2018 - 00:28:58] 4: 7 lCount
    [09.04.2018 - 00:28:58] 4: 8 lCount
    [09.04.2018 - 00:28:58] 4: 9 lCount
    [09.04.2018 - 00:28:58] 4: 10 lCount
    [09.04.2018 - 00:28:58] 4: 11 lCount
    [09.04.2018 - 00:28:58] 4: 12 lCount
    [09.04.2018 - 00:28:58] 4: 13 lCount
    [09.04.2018 - 00:28:58] 4: 14 lCount
    [09.04.2018 - 00:28:59] 4: 15 lCount
    [09.04.2018 - 00:28:59] 4: 16 lCount
    [09.04.2018 - 00:28:59] 4: 17 lCount
    [09.04.2018 - 00:28:59] 4: 18 lCount
    [09.04.2018 - 00:28:59] 4: 19 lCount
    [09.04.2018 - 00:28:59] 4: 20 lCount
    [09.04.2018 - 00:28:59] 4: 21 lCount
    [09.04.2018 - 00:28:59] 4: 22 lCount
    [09.04.2018 - 00:28:59] 4: 23 lCount
    [09.04.2018 - 00:28:59] 4: 24 lCount
    [09.04.2018 - 00:28:59] 4: 25 lCount
    [09.04.2018 - 00:28:59] 4: 26 lCount
    [09.04.2018 - 00:28:59] 4: 27 lCount
    [09.04.2018 - 00:28:59] 4: 28 lCount
    [09.04.2018 - 00:28:59] 4: 29 lCount
    [09.04.2018 - 00:28:59] 4: 30 lCount
    [09.04.2018 - 00:28:59] 4: 31 lCount
    [09.04.2018 - 00:28:59] 4: 32 lCount
    [09.04.2018 - 00:28:59] 4: 33 lCount
    [09.04.2018 - 00:28:59] 4: 34 lCount
    [09.04.2018 - 00:28:59] 4: 35 lCount
    [09.04.2018 - 00:28:59] 4: 36 lCount
    [09.04.2018 - 00:28:59] 4: 37 lCount
    [09.04.2018 - 00:28:59] 4: 38 lCount
    [09.04.2018 - 00:28:59] 4: 39 lCount
    [09.04.2018 - 00:28:59] 4: 40 lCount
    [09.04.2018 - 00:28:59] 4: 41 lCount
    [09.04.2018 - 00:28:59] 4: 42 lCount
    [09.04.2018 - 00:28:59] 4: 43 lCount
    [09.04.2018 - 00:28:59] 4: 44 lCount
    [09.04.2018 - 00:28:59] 4: 45 lCount
    [09.04.2018 - 00:28:59] 4: 46 lCount
    [09.04.2018 - 00:28:59] 4: 47 lCount
    [09.04.2018 - 00:28:59] 4: 48 lCount
    [09.04.2018 - 00:28:59] 4: 49 lCount
    [09.04.2018 - 00:28:59] 4: 50 lCount
    [09.04.2018 - 00:28:59] 4: 51 lCount
    [09.04.2018 - 00:28:59] 4: 52 lCount
    [09.04.2018 - 00:28:59] 4: 53 lCount
    [09.04.2018 - 00:28:59] 4: 54 lCount
    [09.04.2018 - 00:28:59] 4: 55 lCount
    [09.04.2018 - 00:28:59] 4: 56 lCount
    [09.04.2018 - 00:28:59] 4: 57 lCount
    [09.04.2018 - 00:28:59] 4: 58 lCount
    [09.04.2018 - 00:28:59] 4: 59 lCount
    [09.04.2018 - 00:28:59] 4: 60 lCount
    [09.04.2018 - 00:28:59] 4: 61 lCount
    [09.04.2018 - 00:28:59] 4: 62 lCount
    [09.04.2018 - 00:28:59] 4: 63 lCount
    [09.04.2018 - 00:28:59] 4: 64 lCount
    [09.04.2018 - 00:28:59] 4: 65 lCount
    [09.04.2018 - 00:28:59] 4: 66 lCount
    [09.04.2018 - 00:28:59] 4: 67 lCount
    [09.04.2018 - 00:28:59] 4: 68 lCount
    [09.04.2018 - 00:28:59] test 174
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Fraktionscars erfolgreich in 70 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Häuser (Teil 1) werden geladen...
    [09.04.2018 - 00:28:59] Interior 1: 0
    [09.04.2018 - 00:28:59] Interior 3: 0
    [09.04.2018 - 00:28:59] Interior 5: 0
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Häuser (Teil 1) erfolgreich in 6 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Häuser (Teil 2) werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Häuser (Teil 2) erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Häuser (Teil 3) werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Häuser (Teil 3) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Gangwarsystem wird geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Gangwarsystem erfolgreich in 3 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Angelgebiete werden geladen...
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Organisationen werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Organisationen erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Pfandflaschen werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Pfandflaschen erfolgreich in 10 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Werbetafeln werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Werbetafeln erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Blitzer werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Blitzer erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Elektrik wird geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Elektrik erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Drogensysten wird geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Drogensystem erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Heal / Armour Pickups werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Heal / Armor Pickups erfolgreich in 3 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Enter / Exit Pickups werden geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Enter / Exit Pickups erfolgreich in 2 Millisekunden geladen!
    [09.04.2018 - 00:28:59]
    [09.04.2018 - 00:28:59] ====================================================
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Allgemeines wird geladen...
    [09.04.2018 - 00:28:59] [ - SCRIPT - ] | Allgemeines erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:28:59] onGameModeInitEx Erreicht!
    [09.04.2018 - 00:28:59] Aktuelle Uhrzeit: 09.4.2018 00:28
    [09.04.2018 - 00:28:59] [connection] 127.0.0.1:64807 requests connection cookie.
    [09.04.2018 - 00:29:00] [connection] 127.0.0.1:64808 requests connection cookie.
    [09.04.2018 - 00:29:00] [connection] incoming connection: 127.0.0.1:64807 id: 0
    [09.04.2018 - 00:29:00] [connection] 127.0.0.1:64809 requests connection cookie.
    [09.04.2018 - 00:29:00] [npc:join] BankAngestellte1 has joined the server (0:127.0.0.1)
    [09.04.2018 - 00:29:01] [connection] incoming connection: 127.0.0.1:64808 id: 1
    [09.04.2018 - 00:29:01] [connection] 127.0.0.1:64810 requests connection cookie.
    [09.04.2018 - 00:29:01] [npc:join] BankAngestellte2 has joined the server (1:127.0.0.1)
    [09.04.2018 - 00:29:01] [connection] incoming connection: 127.0.0.1:64809 id: 2
    [09.04.2018 - 00:29:01] [connection] 127.0.0.1:64811 requests connection cookie.
    [09.04.2018 - 00:29:01] [npc:join] BankAngestellte3 has joined the server (2:127.0.0.1)
    [09.04.2018 - 00:29:02] [connection] incoming connection: 127.0.0.1:64810 id: 3
    [09.04.2018 - 00:29:02] [connection] 127.0.0.1:64812 requests connection cookie.
    [09.04.2018 - 00:29:02] [npc:join] BankAngestellte4 has joined the server (3:127.0.0.1)
    [09.04.2018 - 00:29:02] [connection] incoming connection: 127.0.0.1:64811 id: 4
    [09.04.2018 - 00:29:02] [connection] 127.0.0.1:64813 requests connection cookie.
    [09.04.2018 - 00:29:03] [npc:join] BankSecurity1 has joined the server (4:127.0.0.1)
    [09.04.2018 - 00:29:03] [connection] incoming connection: 127.0.0.1:64812 id: 5
    [09.04.2018 - 00:29:03] [npc:join] BankSecurity2 has joined the server (5:127.0.0.1)
    [09.04.2018 - 00:29:03] [connection] incoming connection: 127.0.0.1:64813 id: 6
    [09.04.2018 - 00:29:04] [npc:join] AAmtAng1 has joined the server (6:127.0.0.1)
    [09.04.2018 - 00:29:05] [connection] 127.0.0.1:64814 requests connection cookie.
    [09.04.2018 - 00:29:05] [connection] 127.0.0.1:64815 requests connection cookie.
    [09.04.2018 - 00:29:06] [connection] incoming connection: 127.0.0.1:64814 id: 7
    [09.04.2018 - 00:29:06] [connection] 127.0.0.1:64816 requests connection cookie.
    [09.04.2018 - 00:29:06] [npc:join] UHLadenVerkaufer has joined the server (7:127.0.0.1)
    [09.04.2018 - 00:29:06] [connection] incoming connection: 127.0.0.1:64815 id: 8
    [09.04.2018 - 00:29:06] [connection] 127.0.0.1:64817 requests connection cookie.
    [09.04.2018 - 00:29:06] [npc:join] JagerExperteHans has joined the server (8:127.0.0.1)
    [09.04.2018 - 00:29:07] [connection] incoming connection: 127.0.0.1:64816 id: 9
    [09.04.2018 - 00:29:07] [connection] 127.0.0.1:64818 requests connection cookie.
    [09.04.2018 - 00:29:07] [npc:join] Hausshop has joined the server (9:127.0.0.1)
    [09.04.2018 - 00:29:07] [connection] incoming connection: 127.0.0.1:64817 id: 10
    [09.04.2018 - 00:29:07] [connection] 127.0.0.1:64819 requests connection cookie.
    [09.04.2018 - 00:29:07] [npc:join] ammuls has joined the server (10:127.0.0.1)
    [09.04.2018 - 00:29:08] [connection] incoming connection: 127.0.0.1:64818 id: 11
    [09.04.2018 - 00:29:08] [connection] 127.0.0.1:64820 requests connection cookie.
    [09.04.2018 - 00:29:08] [npc:join] verwahr has joined the server (11:127.0.0.1)
    [09.04.2018 - 00:29:08] [connection] incoming connection: 127.0.0.1:64819 id: 12
    [09.04.2018 - 00:29:08] [connection] 127.0.0.1:64821 requests connection cookie.
    [09.04.2018 - 00:29:09] [npc:join] 247bsn has joined the server (12:127.0.0.1)
    [09.04.2018 - 00:29:09] [connection] incoming connection: 127.0.0.1:64820 id: 13
    [09.04.2018 - 00:29:09] [connection] 127.0.0.1:63610 requests connection cookie.
    [09.04.2018 - 00:29:09] [npc:join] LSPDWaffe has joined the server (13:127.0.0.1)
    [09.04.2018 - 00:29:09] [connection] incoming connection: 127.0.0.1:64821 id: 14
    [09.04.2018 - 00:29:10] [connection] 127.0.0.1:63611 requests connection cookie.
    [09.04.2018 - 00:29:10] [npc:join] gstanke1 has joined the server (14:127.0.0.1)
    [09.04.2018 - 00:29:10] [connection] incoming connection: 127.0.0.1:63610 id: 15
    [09.04.2018 - 00:29:10] [connection] 127.0.0.1:63612 requests connection cookie.
    [09.04.2018 - 00:29:10] [npc:join] gstanke2 has joined the server (15:127.0.0.1)
    [09.04.2018 - 00:29:11] [connection] incoming connection: 127.0.0.1:63611 id: 16
    [09.04.2018 - 00:29:11] [connection] 127.0.0.1:63613 requests connection cookie.
    [09.04.2018 - 00:29:11] [npc:join] snmieten has joined the server (16:127.0.0.1)
    [09.04.2018 - 00:29:11] [connection] incoming connection: 127.0.0.1:63612 id: 17
    [09.04.2018 - 00:29:11] [connection] 127.0.0.1:63614 requests connection cookie.
    [09.04.2018 - 00:29:11] [npc:join] snwerbung has joined the server (17:127.0.0.1)
    [09.04.2018 - 00:29:12] [connection] incoming connection: 127.0.0.1:63613 id: 18
    [09.04.2018 - 00:29:12] [connection] 127.0.0.1:63615 requests connection cookie.
    [09.04.2018 - 00:29:12] [npc:join] tankelv1 has joined the server (18:127.0.0.1)
    [09.04.2018 - 00:29:12] [connection] incoming connection: 127.0.0.1:63614 id: 19
    [09.04.2018 - 00:29:12] [connection] 127.0.0.1:63616 requests connection cookie.
    [09.04.2018 - 00:29:12] [npc:join] tankelv2 has joined the server (19:127.0.0.1)
    [09.04.2018 - 00:29:13] [connection] incoming connection: 127.0.0.1:63615 id: 20
    [09.04.2018 - 00:29:13] [connection] 127.0.0.1:63617 requests connection cookie.
    [09.04.2018 - 00:29:13] [npc:join] tankelv3 has joined the server (20:127.0.0.1)
    [09.04.2018 - 00:29:13] [connection] incoming connection: 127.0.0.1:63616 id: 21
    [09.04.2018 - 00:29:13] [connection] 127.0.0.1:63618 requests connection cookie.
    [09.04.2018 - 00:29:13] [npc:join] tankelv4 has joined the server (21:127.0.0.1)
    [09.04.2018 - 00:29:14] [connection] incoming connection: 127.0.0.1:63617 id: 22
    [09.04.2018 - 00:29:14] [connection] 127.0.0.1:63619 requests connection cookie.
    [09.04.2018 - 00:29:14] [npc:join] tankesf1 has joined the server (22:127.0.0.1)
    [09.04.2018 - 00:29:14] [connection] incoming connection: 127.0.0.1:63618 id: 23
    [09.04.2018 - 00:29:14] [connection] 127.0.0.1:63620 requests connection cookie.
    [09.04.2018 - 00:29:15] [npc:join] tankesfpd1 has joined the server (23:127.0.0.1)
    [09.04.2018 - 00:29:15] [connection] incoming connection: 127.0.0.1:63619 id: 24
    [09.04.2018 - 00:29:15] [npc:join] tankesfpd2 has joined the server (24:127.0.0.1)
    [09.04.2018 - 00:29:15] [connection] incoming connection: 127.0.0.1:63620 id: 25
    [09.04.2018 - 00:29:16] [npc:join] tankeyaki1 has joined the server (25:127.0.0.1)



    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3.7-R2, (C)2005-2015 SA-MP Team


    [09.04.2018 - 00:20:45]
    [09.04.2018 - 00:20:45] Server Plugins
    [09.04.2018 - 00:20:45] --------------
    [09.04.2018 - 00:20:45] Loading plugin: crashdetect
    [09.04.2018 - 00:20:45] CrashDetect plugin 4.19
    [09.04.2018 - 00:20:45] Loaded.
    [09.04.2018 - 00:20:45] Loading plugin: MapAndreas
    [09.04.2018 - 00:20:45] Loaded.
    [09.04.2018 - 00:20:45] Loading plugin: mysql
    [09.04.2018 - 00:20:45] >> plugin.mysql: R38 successfully loaded.
    [09.04.2018 - 00:20:45] Loaded.
    [09.04.2018 - 00:20:45] Loading plugin: sscanf
    [09.04.2018 - 00:20:45]


    [09.04.2018 - 00:20:45] ===============================


    [09.04.2018 - 00:20:45] sscanf plugin loaded.


    [09.04.2018 - 00:20:45] Version: 2.8.1


    [09.04.2018 - 00:20:45] (c) 2012 Alex "Y_Less" Cole


    [09.04.2018 - 00:20:45] ===============================


    [09.04.2018 - 00:20:45] Loaded.
    [09.04.2018 - 00:20:45] Loading plugin: streamer
    [09.04.2018 - 00:20:45]


    *** Streamer Plugin v2.8.2 by Incognito loaded ***


    [09.04.2018 - 00:20:45] Loaded.
    [09.04.2018 - 00:20:45] Loaded 5 plugins.


    [09.04.2018 - 00:20:45]
    [09.04.2018 - 00:20:45] Ban list
    [09.04.2018 - 00:20:45] --------
    [09.04.2018 - 00:20:45] Loaded: samp.ban
    [09.04.2018 - 00:20:45]
    [09.04.2018 - 00:20:45]
    [09.04.2018 - 00:20:45] Filterscripts
    [09.04.2018 - 00:20:45] ---------------
    [09.04.2018 - 00:20:45] Loading filterscript 'blinker.amx'...
    [09.04.2018 - 00:20:45] Loaded 1 filterscripts.


    [09.04.2018 - 00:20:45] [MYSQL]: Verbindung zur Datenbank rl hergestellt!
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] Objekte werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] 5651 Objecte wurden erfolgreich in 17 Millisekunden geladen!
    [09.04.2018 - 00:20:47] ----------------------------------
    [09.04.2018 - 00:20:47] Second Life Akuma.Yakuma
    [09.04.2018 - 00:20:47] Scripting by Akuma.Yakuma
    [09.04.2018 - 00:20:47]
    Heapspace: 65900 | 16364
    [09.04.2018 - 00:20:47] ----------------------------------
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] Number of vehicle models: 0
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Fraktionen werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Fraktionen erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Tankstellen werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Tankstellen erfolgreich in 2 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 1) wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 1) erfolgreich in 5 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 2) wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 2) erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 3) wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 3) erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 4) wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Autohaussystem (Teil 4) erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Fraktionscars werden geladen...
    [09.04.2018 - 00:20:47] 1
    [09.04.2018 - 00:20:47] 2
    [09.04.2018 - 00:20:47] 3: 69 rows
    [09.04.2018 - 00:20:47] 4: 0 lCount
    [09.04.2018 - 00:20:47] 4: 1 lCount
    [09.04.2018 - 00:20:47] 4: 2 lCount
    [09.04.2018 - 00:20:47] 4: 3 lCount
    [09.04.2018 - 00:20:47] 4: 4 lCount
    [09.04.2018 - 00:20:47] 4: 5 lCount
    [09.04.2018 - 00:20:47] 4: 6 lCount
    [09.04.2018 - 00:20:47] 4: 7 lCount
    [09.04.2018 - 00:20:47] 4: 8 lCount
    [09.04.2018 - 00:20:47] 4: 9 lCount
    [09.04.2018 - 00:20:47] 4: 10 lCount
    [09.04.2018 - 00:20:47] 4: 11 lCount
    [09.04.2018 - 00:20:47] 4: 12 lCount
    [09.04.2018 - 00:20:47] 4: 13 lCount
    [09.04.2018 - 00:20:47] 4: 14 lCount
    [09.04.2018 - 00:20:47] 4: 15 lCount
    [09.04.2018 - 00:20:47] 4: 16 lCount
    [09.04.2018 - 00:20:47] 4: 17 lCount
    [09.04.2018 - 00:20:47] 4: 18 lCount
    [09.04.2018 - 00:20:47] 4: 19 lCount
    [09.04.2018 - 00:20:47] 4: 20 lCount
    [09.04.2018 - 00:20:47] 4: 21 lCount
    [09.04.2018 - 00:20:47] 4: 22 lCount
    [09.04.2018 - 00:20:47] 4: 23 lCount
    [09.04.2018 - 00:20:47] 4: 24 lCount
    [09.04.2018 - 00:20:47] 4: 25 lCount
    [09.04.2018 - 00:20:47] 4: 26 lCount
    [09.04.2018 - 00:20:47] 4: 27 lCount
    [09.04.2018 - 00:20:47] 4: 28 lCount
    [09.04.2018 - 00:20:47] 4: 29 lCount
    [09.04.2018 - 00:20:47] 4: 30 lCount
    [09.04.2018 - 00:20:47] 4: 31 lCount
    [09.04.2018 - 00:20:47] 4: 32 lCount
    [09.04.2018 - 00:20:47] 4: 33 lCount
    [09.04.2018 - 00:20:47] 4: 34 lCount
    [09.04.2018 - 00:20:47] 4: 35 lCount
    [09.04.2018 - 00:20:47] 4: 36 lCount
    [09.04.2018 - 00:20:47] 4: 37 lCount
    [09.04.2018 - 00:20:47] 4: 38 lCount
    [09.04.2018 - 00:20:47] 4: 39 lCount
    [09.04.2018 - 00:20:47] 4: 40 lCount
    [09.04.2018 - 00:20:47] 4: 41 lCount
    [09.04.2018 - 00:20:47] 4: 42 lCount
    [09.04.2018 - 00:20:47] 4: 43 lCount
    [09.04.2018 - 00:20:47] 4: 44 lCount
    [09.04.2018 - 00:20:47] 4: 45 lCount
    [09.04.2018 - 00:20:47] 4: 46 lCount
    [09.04.2018 - 00:20:47] 4: 47 lCount
    [09.04.2018 - 00:20:47] 4: 48 lCount
    [09.04.2018 - 00:20:47] 4: 49 lCount
    [09.04.2018 - 00:20:47] 4: 50 lCount
    [09.04.2018 - 00:20:47] 4: 51 lCount
    [09.04.2018 - 00:20:47] 4: 52 lCount
    [09.04.2018 - 00:20:47] 4: 53 lCount
    [09.04.2018 - 00:20:47] 4: 54 lCount
    [09.04.2018 - 00:20:47] 4: 55 lCount
    [09.04.2018 - 00:20:47] 4: 56 lCount
    [09.04.2018 - 00:20:47] 4: 57 lCount
    [09.04.2018 - 00:20:47] 4: 58 lCount
    [09.04.2018 - 00:20:47] 4: 59 lCount
    [09.04.2018 - 00:20:47] 4: 60 lCount
    [09.04.2018 - 00:20:47] 4: 61 lCount
    [09.04.2018 - 00:20:47] 4: 62 lCount
    [09.04.2018 - 00:20:47] 4: 63 lCount
    [09.04.2018 - 00:20:47] 4: 64 lCount
    [09.04.2018 - 00:20:47] 4: 65 lCount
    [09.04.2018 - 00:20:47] 4: 66 lCount
    [09.04.2018 - 00:20:47] 4: 67 lCount
    [09.04.2018 - 00:20:47] 4: 68 lCount
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Fraktionscars erfolgreich in 27 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Häuser (Teil 1) werden geladen...
    [09.04.2018 - 00:20:47] Interior 1: 0
    [09.04.2018 - 00:20:47] Interior 3: 0
    [09.04.2018 - 00:20:47] Interior 5: 0
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Häuser (Teil 1) erfolgreich in 2 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Häuser (Teil 2) werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Häuser (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Häuser (Teil 3) werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Häuser (Teil 3) erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Gangwarsystem wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Gangwarsystem erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Angelgebiete werden geladen...
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Organisationen werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Organisationen erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Pfandflaschen werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Pfandflaschen erfolgreich in 4 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Werbetafeln werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Werbetafeln erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Blitzer werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Blitzer erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Elektrik wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Elektrik erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Drogensysten wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Drogensystem erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Heal / Armour Pickups werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Heal / Armor Pickups erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Enter / Exit Pickups werden geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Enter / Exit Pickups erfolgreich in 1 Millisekunden geladen!
    [09.04.2018 - 00:20:47]
    [09.04.2018 - 00:20:47] ====================================================
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Allgemeines wird geladen...
    [09.04.2018 - 00:20:47] [ - SCRIPT - ] | Allgemeines erfolgreich in 0 Millisekunden geladen!
    [09.04.2018 - 00:20:47] onGameModeInitEx Erreicht!
    [09.04.2018 - 00:20:47] Aktuelle Uhrzeit: 09.4.2018 00:20
    [09.04.2018 - 00:20:48] [connection] 127.0.0.1:58000 requests connection cookie.
    [09.04.2018 - 00:20:49] [connection] 127.0.0.1:58001 requests connection cookie.
    [09.04.2018 - 00:20:49] [connection] incoming connection: 127.0.0.1:58000 id: 0
    [09.04.2018 - 00:20:49] [connection] 127.0.0.1:58002 requests connection cookie.
    [09.04.2018 - 00:20:49] [npc:join] BankAngestellte1 has joined the server (0:127.0.0.1)
    [09.04.2018 - 00:20:50] [connection] incoming connection: 127.0.0.1:58001 id: 1
    [09.04.2018 - 00:20:50] [connection] 127.0.0.1:58003 requests connection cookie.
    [09.04.2018 - 00:20:50] [npc:join] BankAngestellte2 has joined the server (1:127.0.0.1)
    [09.04.2018 - 00:20:50] [connection] incoming connection: 127.0.0.1:58002 id: 2
    [09.04.2018 - 00:20:50] [connection] 127.0.0.1:58004 requests connection cookie.
    [09.04.2018 - 00:20:50] [npc:join] BankAngestellte3 has joined the server (2:127.0.0.1)
    [09.04.2018 - 00:20:51] [connection] incoming connection: 127.0.0.1:58003 id: 3
    [09.04.2018 - 00:20:51] [connection] 127.0.0.1:58005 requests connection cookie.
    [09.04.2018 - 00:20:51] [npc:join] BankAngestellte4 has joined the server (3:127.0.0.1)
    [09.04.2018 - 00:20:51] [connection] incoming connection: 127.0.0.1:58004 id: 4
    [09.04.2018 - 00:20:51] [connection] 127.0.0.1:58006 requests connection cookie.
    [09.04.2018 - 00:20:52] [npc:join] BankSecurity1 has joined the server (4:127.0.0.1)
    [09.04.2018 - 00:20:52] [connection] incoming connection: 127.0.0.1:58005 id: 5
    [09.04.2018 - 00:20:52] [npc:join] BankSecurity2 has joined the server (5:127.0.0.1)
    [09.04.2018 - 00:20:52] [connection] incoming connection: 127.0.0.1:58006 id: 6
    [09.04.2018 - 00:20:53] [npc:join] AAmtAng1 has joined the server (6:127.0.0.1)
    [09.04.2018 - 00:20:54] [connection] 127.0.0.1:58007 requests connection cookie.
    [09.04.2018 - 00:20:54] [connection] 127.0.0.1:58008 requests connection cookie.
    [09.04.2018 - 00:20:55] [connection] incoming connection: 127.0.0.1:58007 id: 7
    [09.04.2018 - 00:20:55] [connection] 127.0.0.1:58009 requests connection cookie.
    [09.04.2018 - 00:20:55] [npc:join] UHLadenVerkaufer has joined the server (7:127.0.0.1)
    [09.04.2018 - 00:20:55] [connection] incoming connection: 127.0.0.1:58008 id: 8
    [09.04.2018 - 00:20:55] [connection] 127.0.0.1:58010 requests connection cookie.
    [09.04.2018 - 00:20:55] [npc:join] JagerExperteHans has joined the server (8:127.0.0.1)
    [09.04.2018 - 00:20:56] [connection] incoming connection: 127.0.0.1:58009 id: 9
    [09.04.2018 - 00:20:56] [connection] 127.0.0.1:58011 requests connection cookie.
    [09.04.2018 - 00:20:56] [npc:join] Hausshop has joined the server (9:127.0.0.1)
    [09.04.2018 - 00:20:56] [connection] incoming connection: 127.0.0.1:58010 id: 10
    [09.04.2018 - 00:20:56] [connection] 127.0.0.1:58012 requests connection cookie.
    [09.04.2018 - 00:20:56] [npc:join] ammuls has joined the server (10:127.0.0.1)
    [09.04.2018 - 00:20:57] [connection] incoming connection: 127.0.0.1:58011 id: 11
    [09.04.2018 - 00:20:57] [connection] 127.0.0.1:58013 requests connection cookie.
    [09.04.2018 - 00:20:57] [npc:join] verwahr has joined the server (11:127.0.0.1)
    [09.04.2018 - 00:20:57] [connection] incoming connection: 127.0.0.1:58012 id: 12
    [09.04.2018 - 00:20:57] [connection] 127.0.0.1:58014 requests connection cookie.
    [09.04.2018 - 00:20:58] [npc:join] 247bsn has joined the server (12:127.0.0.1)
    [09.04.2018 - 00:20:58] [connection] incoming connection: 127.0.0.1:58013 id: 13
    [09.04.2018 - 00:20:58] [connection] 127.0.0.1:58015 requests connection cookie.
    [09.04.2018 - 00:20:58] [npc:join] LSPDWaffe has joined the server (13:127.0.0.1)
    [09.04.2018 - 00:20:58] [connection] incoming connection: 127.0.0.1:58014 id: 14
    [09.04.2018 - 00:20:58] [connection] 127.0.0.1:58016 requests connection cookie.
    [09.04.2018 - 00:20:59] [npc:join] gstanke1 has joined the server (14:127.0.0.1)
    [09.04.2018 - 00:20:59] [connection] incoming connection: 127.0.0.1:58015 id: 15
    [09.04.2018 - 00:20:59] [connection] 127.0.0.1:59476 requests connection cookie.
    [09.04.2018 - 00:20:59] [npc:join] gstanke2 has joined the server (15:127.0.0.1)
    [09.04.2018 - 00:20:59] [connection] incoming connection: 127.0.0.1:58016 id: 16
    [09.04.2018 - 00:21:00] [connection] 127.0.0.1:59477 requests connection cookie.
    [09.04.2018 - 00:21:00] [npc:join] snmieten has joined the server (16:127.0.0.1)
    [09.04.2018 - 00:21:00] [connection] incoming connection: 127.0.0.1:59476 id: 17
    [09.04.2018 - 00:21:00] [connection] 127.0.0.1:59478 requests connection cookie.
    [09.04.2018 - 00:21:00] [npc:join] snwerbung has joined the server (17:127.0.0.1)
    [09.04.2018 - 00:21:01] [connection] incoming connection: 127.0.0.1:59477 id: 18
    [09.04.2018 - 00:21:01] [connection] 127.0.0.1:59479 requests connection cookie.
    [09.04.2018 - 00:21:01] [npc:join] tankelv1 has joined the server (18:127.0.0.1)
    [09.04.2018 - 00:21:01] [connection] incoming connection: 127.0.0.1:59478 id: 19
    [09.04.2018 - 00:21:01] [connection] 127.0.0.1:59480 requests connection cookie.
    [09.04.2018 - 00:21:01] [npc:join] tankelv2 has joined the server (19:127.0.0.1)
    [09.04.2018 - 00:21:02] [connection] incoming connection: 127.0.0.1:59479 id: 20
    [09.04.2018 - 00:21:02] [connection] 127.0.0.1:59481 requests connection cookie.
    [09.04.2018 - 00:21:02] [npc:join] tankelv3 has joined the server (20:127.0.0.1)
    [09.04.2018 - 00:21:02] [connection] incoming connection: 127.0.0.1:59480 id: 21
    [09.04.2018 - 00:21:02] [connection] 127.0.0.1:59482 requests connection cookie.
    [09.04.2018 - 00:21:02] [npc:join] tankelv4 has joined the server (21:127.0.0.1)
    [09.04.2018 - 00:21:03] [connection] incoming connection: 127.0.0.1:59481 id: 22
    [09.04.2018 - 00:21:03] [connection] 127.0.0.1:59483 requests connection cookie.
    [09.04.2018 - 00:21:03] [npc:join] tankesf1 has joined the server (22:127.0.0.1)
    [09.04.2018 - 00:21:03] [connection] incoming connection: 127.0.0.1:59482 id: 23
    [09.04.2018 - 00:21:03] [connection] 127.0.0.1:59484 requests connection cookie.
    [09.04.2018 - 00:21:04] [npc:join] tankesfpd1 has joined the server (23:127.0.0.1)
    [09.04.2018 - 00:21:04] [connection] incoming connection: 127.0.0.1:59483 id: 24
    [09.04.2018 - 00:21:04] [npc:join] tankesfpd2 has joined the server (24:127.0.0.1)
    [09.04.2018 - 00:21:04] [connection] incoming connection: 127.0.0.1:59484 id: 25
    [09.04.2018 - 00:21:05] [npc:join] tankeyaki1 has joined the server (25:127.0.0.1)



    Printf kommt nicht vor, was nun ? :D

    @Jeffry



    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3.7-R2, (C)2005-2015 SA-MP Team


    [08.04.2018 - 22:36:25]
    [08.04.2018 - 22:36:25] Server Plugins
    [08.04.2018 - 22:36:25] --------------
    [08.04.2018 - 22:36:25] Loading plugin: crashdetect
    [08.04.2018 - 22:36:25] CrashDetect plugin 4.19
    [08.04.2018 - 22:36:25] Loaded.
    [08.04.2018 - 22:36:25] Loading plugin: MapAndreas
    [08.04.2018 - 22:36:25] Loaded.
    [08.04.2018 - 22:36:25] Loading plugin: mysql
    [08.04.2018 - 22:36:25] >> plugin.mysql: R38 successfully loaded.
    [08.04.2018 - 22:36:25] Loaded.
    [08.04.2018 - 22:36:25] Loading plugin: sscanf
    [08.04.2018 - 22:36:25]


    [08.04.2018 - 22:36:25] ===============================


    [08.04.2018 - 22:36:25] sscanf plugin loaded.


    [08.04.2018 - 22:36:25] Version: 2.8.1


    [08.04.2018 - 22:36:25] (c) 2012 Alex "Y_Less" Cole


    [08.04.2018 - 22:36:25] ===============================


    [08.04.2018 - 22:36:25] Loaded.
    [08.04.2018 - 22:36:25] Loading plugin: streamer
    [08.04.2018 - 22:36:25]


    *** Streamer Plugin v2.8.2 by Incognito loaded ***


    [08.04.2018 - 22:36:25] Loaded.
    [08.04.2018 - 22:36:25] Loaded 5 plugins.


    [08.04.2018 - 22:36:25]
    [08.04.2018 - 22:36:25] Ban list
    [08.04.2018 - 22:36:25] --------
    [08.04.2018 - 22:36:25] Loaded: samp.ban
    [08.04.2018 - 22:36:25]
    [08.04.2018 - 22:36:25]
    [08.04.2018 - 22:36:25] Filterscripts
    [08.04.2018 - 22:36:25] ---------------
    [08.04.2018 - 22:36:25] Loading filterscript 'blinker.amx'...
    [08.04.2018 - 22:36:25] Loaded 1 filterscripts.


    [08.04.2018 - 22:36:25] [MYSQL]: Verbindung zur Datenbank rl hergestellt!
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] Objekte werden geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] 5651 Objecte wurden erfolgreich in 18 Millisekunden geladen!
    [08.04.2018 - 22:36:28] ----------------------------------
    [08.04.2018 - 22:36:28] Second Life Akuma.Yakuma
    [08.04.2018 - 22:36:28] Scripting by Akuma.Yakuma
    [08.04.2018 - 22:36:28]
    Heapspace: 65900 | 16364
    [08.04.2018 - 22:36:28] ----------------------------------
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] Number of vehicle models: 0
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Fraktionen werden geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Fraktionen erfolgreich in 2 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Tankstellen werden geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Tankstellen erfolgreich in 4 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 1) wird geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 1) erfolgreich in 5 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 2) wird geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 3) wird geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 3) erfolgreich in 4 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 4) wird geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Autohaussystem (Teil 4) erfolgreich in 1 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) wird geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) erfolgreich in 0 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) wird geladen...
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [08.04.2018 - 22:36:28]
    [08.04.2018 - 22:36:28] ====================================================
    [08.04.2018 - 22:36:28] [ - SCRIPT - ] | Fraktionscars werden geladen...
    [08.04.2018 - 22:36:28] 1
    [08.04.2018 - 22:36:28] 2
    [08.04.2018 - 22:36:28] 3: 67 rows
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount
    [08.04.2018 - 22:36:28] 4: 0 lCount


    Es geht noch weitere mit den 0|Count nur passt nicht hier rein, das wird heftig schnell gespammt.

    @Jeffry



    ----------
    Loaded log file: "server_log.txt".
    ----------


    SA-MP Dedicated Server
    ----------------------
    v0.3.7-R2, (C)2005-2015 SA-MP Team


    [08.04.2018 - 20:42:53]
    [08.04.2018 - 20:42:53] Server Plugins
    [08.04.2018 - 20:42:53] --------------
    [08.04.2018 - 20:42:53] Loading plugin: crashdetect
    [08.04.2018 - 20:42:53] CrashDetect plugin 4.19
    [08.04.2018 - 20:42:53] Loaded.
    [08.04.2018 - 20:42:53] Loading plugin: MapAndreas
    [08.04.2018 - 20:42:53] Loaded.
    [08.04.2018 - 20:42:53] Loading plugin: mysql
    [08.04.2018 - 20:42:53] >> plugin.mysql: R38 successfully loaded.
    [08.04.2018 - 20:42:53] Loaded.
    [08.04.2018 - 20:42:53] Loading plugin: sscanf
    [08.04.2018 - 20:42:53]


    [08.04.2018 - 20:42:53] ===============================


    [08.04.2018 - 20:42:53] sscanf plugin loaded.


    [08.04.2018 - 20:42:53] Version: 2.8.1


    [08.04.2018 - 20:42:53] (c) 2012 Alex "Y_Less" Cole


    [08.04.2018 - 20:42:53] ===============================


    [08.04.2018 - 20:42:53] Loaded.
    [08.04.2018 - 20:42:53] Loading plugin: streamer
    [08.04.2018 - 20:42:53]


    *** Streamer Plugin v2.8.2 by Incognito loaded ***


    [08.04.2018 - 20:42:53] Loaded.
    [08.04.2018 - 20:42:53] Loaded 5 plugins.


    [08.04.2018 - 20:42:53]
    [08.04.2018 - 20:42:53] Ban list
    [08.04.2018 - 20:42:53] --------
    [08.04.2018 - 20:42:53] Loaded: samp.ban
    [08.04.2018 - 20:42:53]
    [08.04.2018 - 20:42:53]
    [08.04.2018 - 20:42:53] Filterscripts
    [08.04.2018 - 20:42:53] ---------------
    [08.04.2018 - 20:42:53] Loading filterscript 'blinker.amx'...
    [08.04.2018 - 20:42:53] Loaded 1 filterscripts.


    [08.04.2018 - 20:42:53] [MYSQL]: Verbindung zur Datenbank rl hergestellt!
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] Objekte werden geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] 5651 Objecte wurden erfolgreich in 18 Millisekunden geladen!
    [08.04.2018 - 20:42:56] ----------------------------------
    [08.04.2018 - 20:42:56] Second Life Akuma.Yakuma
    [08.04.2018 - 20:42:56] Scripting by Akuma.Yakuma
    [08.04.2018 - 20:42:56]
    Heapspace: 65900 | 16364
    [08.04.2018 - 20:42:56] ----------------------------------
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] Number of vehicle models: 0
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Fraktionen werden geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Fraktionen erfolgreich in 2 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Tankstellen werden geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Tankstellen erfolgreich in 2 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 1) wird geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 1) erfolgreich in 4 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 2) wird geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 2) erfolgreich in 1 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 3) wird geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 3) erfolgreich in 1 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 4) wird geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Autohaussystem (Teil 4) erfolgreich in 1 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) wird geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Feuerwehrsystem (Teil 1) erfolgreich in 0 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) wird geladen...
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Feuerwehrsystem (Teil 2) erfolgreich in 0 Millisekunden geladen!
    [08.04.2018 - 20:42:56]
    [08.04.2018 - 20:42:56] ====================================================
    [08.04.2018 - 20:42:56] [ - SCRIPT - ] | Fraktionscars werden geladen...


    Heyho, ich hab ein kleines Problemchen..
    Meine Frakcars werden nicht geladen und somit startet der Server nicht.


    case _SQL_FRAKTIONSCARS_LOAD: {
    print(" "), print(TRENNLINIE), printf("[ - SCRIPT - ] | Fraktionscars werden geladen...");
    cache_get_data(rows, fields);
    new lCount, lID, lStart = GetTickCount(), ModelID, Color[2], Float:Pos[4], tmp_databaseid;


    if(rows) {
    while(lCount < rows) {
    cache_get_field_content(lCount, "ID", lResult), tmp_databaseid = strval(lResult);
    cache_get_field_content(lCount, "ModelID", lResult); ModelID = strval(lResult);
    if(ModelID < 400 || ModelID > 611) continue;
    cache_get_field_content(lCount, "Farbe1", lResult); Color[0] = strval(lResult);
    cache_get_field_content(lCount, "Farbe2", lResult); Color[1] = strval(lResult);
    cache_get_field_content(lCount, "PosX", lResult); Pos[0] = floatstr(lResult);
    cache_get_field_content(lCount, "PosY", lResult); Pos[1] = floatstr(lResult);
    cache_get_field_content(lCount, "PosZ", lResult); Pos[2] = floatstr(lResult);
    cache_get_field_content(lCount, "PosA", lResult); Pos[3] = floatstr(lResult);


    new vid = CreateVehicleEx(ModelID, Pos[0], Pos[1], Pos[2], Pos[3], Color[0], Color[1]);
    cache_get_field_content(lCount, "AnmeldungsOrt", lResult); FFahrzeugInfo[vid][fAnmeldungsOrt] = strval(lResult);
    cache_get_field_content(lCount, "KFZNummer", lResult); FFahrzeugInfo[vid][fKFZNummer] = strval(lResult);
    IsFraktionsCar[vid] = true;
    SetVehicleRightNumberPlate(vid);


    FFahrzeugInfo[vid][fDatabaseID] = tmp_databaseid;


    FFahrzeugInfo[vid][fFarbe1] = Color[0];
    FFahrzeugInfo[vid][fFarbe2] = Color[1];
    FFahrzeugInfo[vid][fModelID] = ModelID;
    FFahrzeugInfo[vid][fPosX] = Pos[0];
    FFahrzeugInfo[vid][fPosY] = Pos[1];
    FFahrzeugInfo[vid][fPosZ] = Pos[2];
    FFahrzeugInfo[vid][fPosA] = Pos[3];


    cache_get_field_content(lCount, "FrakID", lResult), FFahrzeugInfo[vid][fFrakID] = strval(lResult);
    cache_get_field_content(lCount, "ParkPosX", lResult), FFahrzeugInfo[vid][fParkPosX] = floatstr(lResult);
    cache_get_field_content(lCount, "ParkPosY", lResult), FFahrzeugInfo[vid][fParkPosY] = floatstr(lResult);
    cache_get_field_content(lCount, "ParkPosZ", lResult), FFahrzeugInfo[vid][fParkPosZ] = floatstr(lResult);
    cache_get_field_content(lCount, "ParkPosA", lResult), FFahrzeugInfo[vid][fParkPosA] = floatstr(lResult);
    cache_get_field_content(lCount, "Paintjob", lResult), FFahrzeugInfo[vid][fPaintjob] = strval(lResult);
    cache_get_field_content(lCount, "Abgeschlossen", lResult), FFahrzeugInfo[vid][fAbgeschlossen] = strval(lResult);
    cache_get_field_content(lCount, "Versichert", lResult), FFahrzeugInfo[vid][fVersichert] = strval(lResult);
    cache_get_field_content(lCount, "Abgeschleppt", lResult), FFahrzeugInfo[vid][fAbgeschleppt] = strval(lResult);
    cache_get_field_content(lCount, "TankInhalt", lResult), FFahrzeugInfo[vid][fTankInhalt] = strval(lResult);
    cache_get_field_content(lCount, "TankArt", lResult), FFahrzeugInfo[vid][fTankArt] = strval(lResult);
    cache_get_field_content(lCount, "Batterie", lResult), FFahrzeugInfo[vid][fBatterie] = strval(lResult);
    cache_get_field_content(lCount, "MeterStand", lResult), FFahrzeugInfo[vid][fMeterStand] = strval(lResult);
    cache_get_field_content(lCount, "TagesMeterStand", lResult), FFahrzeugInfo[vid][fTagesMeterStand] = strval(lResult);
    cache_get_field_content(lCount, "FRadio", lResult), FFahrzeugInfo[vid][fFRadio] = strval(lResult);
    cache_get_field_content(lCount, "Zustand", lResult), FFahrzeugInfo[vid][fZustand] = floatstr(lResult);
    cache_get_field_content(lCount, "Mod1", lResult), FFahrzeugInfo[vid][fMod1] = strval(lResult);
    cache_get_field_content(lCount, "Mod2", lResult), FFahrzeugInfo[vid][fMod2] = strval(lResult);
    cache_get_field_content(lCount, "Mod3", lResult), FFahrzeugInfo[vid][fMod3] = strval(lResult);
    cache_get_field_content(lCount, "Mod4", lResult), FFahrzeugInfo[vid][fMod4] = strval(lResult);
    cache_get_field_content(lCount, "Mod5", lResult), FFahrzeugInfo[vid][fMod5] = strval(lResult);
    cache_get_field_content(lCount, "Mod6", lResult), FFahrzeugInfo[vid][fMod6] = strval(lResult);
    cache_get_field_content(lCount, "Mod7", lResult), FFahrzeugInfo[vid][fMod7] = strval(lResult);
    cache_get_field_content(lCount, "Mod8", lResult), FFahrzeugInfo[vid][fMod8] = strval(lResult);
    cache_get_field_content(lCount, "Mod9", lResult), FFahrzeugInfo[vid][fMod9] = strval(lResult);
    cache_get_field_content(lCount, "Mod10", lResult), FFahrzeugInfo[vid][fMod10] = strval(lResult);
    cache_get_field_content(lCount, "Mod11", lResult), FFahrzeugInfo[vid][fMod11] = strval(lResult);
    cache_get_field_content(lCount, "Mod12", lResult), FFahrzeugInfo[vid][fMod12] = strval(lResult);
    cache_get_field_content(lCount, "Mod13", lResult), FFahrzeugInfo[vid][fMod13] = strval(lResult);
    cache_get_field_content(lCount, "Mod14", lResult), FFahrzeugInfo[vid][fMod14] = strval(lResult);
    cache_get_field_content(lCount, "Panels", lResult), FFahrzeugInfo[vid][fPanels] = strval(lResult);
    cache_get_field_content(lCount, "Doors", lResult), FFahrzeugInfo[vid][fDoors] = strval(lResult);
    cache_get_field_content(lCount, "Lights", lResult), FFahrzeugInfo[vid][fLights] = strval(lResult);
    cache_get_field_content(lCount, "Tires", lResult), FFahrzeugInfo[vid][fTires] = strval(lResult);
    cache_get_field_content(lCount, "Panzerung", lResult), FFahrzeugInfo[vid][fPanzerung] = strval(lResult);
    cache_get_field_content(lCount, "KennzeichenFarbe", lResult), FFahrzeugInfo[vid][fKennzeichenFarbe] = strval(lResult);
    cache_get_field_content(lCount, "Autogas", lResult), FFahrzeugInfo[vid][fAutogas] = strval(lResult);


    if(FFahrzeugInfo[vid][fZustand] > 300) SetVehicleHealth(vid, FFahrzeugInfo[vid][fZustand]);
    else SetVehicleHealth(vid, 300);
    TankInhalt[vid] = FFahrzeugInfo[vid][fTankInhalt];
    Batterie[vid] = FFahrzeugInfo[vid][fBatterie];
    MeterStand[vid] = FFahrzeugInfo[vid][fMeterStand];
    TagesMeterStand[vid] = FFahrzeugInfo[vid][fTagesMeterStand];
    FRadio[vid] = FFahrzeugInfo[vid][fFRadio];
    TankInhaltArt[vid] = FFahrzeugInfo[vid][fTankArt];
    AddSpielerCarComponents(vid);
    UpdateVehicleDamageStatus(vid, FFahrzeugInfo[vid][fPanels], FFahrzeugInfo[vid][fDoors], FFahrzeugInfo[vid][fLights], FFahrzeugInfo[vid][fTires]);
    new engine, light, alarm, door, bonnet, boot, objective;
    GetVehicleParamsEx(vid, engine, light, alarm, door, bonnet, boot, objective);
    if(FFahrzeugInfo[vid][fAbgeschlossen] == 1) SetVehicleParamsEx(vid, engine, light, alarm, VEHICLE_PARAMS_ON, bonnet, boot, objective);
    else SetVehicleParamsEx(vid, engine, light, alarm, VEHICLE_PARAMS_OFF, bonnet, boot, objective);
    lID++; lCount++;
    }
    }
    printf("[ - SCRIPT - ] | Fraktionscars erfolgreich in %d Millisekunden geladen!", GetTickCount()-lStart);
    }



    Nach Fraktionscars werden geladen... geht es nicht mehr weiter.

    C:\Users\betue\Desktop\Batus\Scripts SAMP\Voltage\gamemodes\voltage.pwn(27311) : error 017: undefined symbol "CarInfo"
    C:\Users\betue\Desktop\Batus\Scripts SAMP\Voltage\gamemodes\voltage.pwn(27311) : error 017: undefined symbol "GetCarID"
    C:\Users\betue\Desktop\Batus\Scripts SAMP\Voltage\gamemodes\voltage.pwn(27311) : error 029: invalid expression, assumed zero
    C:\Users\betue\Desktop\Batus\Scripts SAMP\Voltage\gamemodes\voltage.pwn(27311) : fatal error 107: too many error messages on one line


    Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase




    4 Errors.


    //Push Problem besteht weiterhin!

    Hallöchen liebe Brotfische,


    ich habe ein kleines Problemchen im Bereich Fraktion Autos parken.
    Wenn ich die Autos ordentlich hin parke und alle Fraktion Autos Respawne ist es nicht mehr ordentlich eingeparkt.
    Wenn man den Server aber mehrmals restartet stehen einige Fraktion Autos ordentlich.
    Ich bitte um Hilfe, am besten im Teamspeak vielleicht, da kann man es besser erklären.
    Es handelt sich hierbei ums Voltage Reallife Script.


    if(!strcmp(cmd, "/fpark", true)){new vehicle = GetPlayerVehicleID(playerid);if(FFahrzeugInfo[vehicle][fAbgeschleppt] != 0) return SendClientMessage(playerid, COLOR_GRAU, "Dieses Fahrzeug wurde abgeschleppt!");new veh = GetPlayerVehicleID(playerid);if(!IsFraktionsCar[veh]) return SendClientMessage(playerid, COLOR_GRAU, "Dies ist kein Fraktionsfahrzeug!");if(FFahrzeugInfo[veh][fFrakID] != PlayerInfo[playerid][pLeader]) return SendClientMessage(playerid, COLOR_GRAU, "Du kannst dieses Fahrzeug nicht parken!");GameTextForPlayer(playerid, "~n~~n~~n~~n~~n~~n~~W~Fraktionsfahrzeug ~g~~n~Geparkt!", 2000, 5);GetVehiclePos(veh, FFahrzeugInfo[veh][fParkPosX], FFahrzeugInfo[veh][fParkPosY], FFahrzeugInfo[veh][fParkPosZ]);GetVehicleZAngle(veh, FFahrzeugInfo[veh][fParkPosA]);SaveFraktionsCar(veh);return 1;}


    Externer Inhalt youtu.be
    Inhalte von externen Seiten werden ohne Ihre Zustimmung nicht automatisch geladen und angezeigt.
    Durch die Aktivierung der externen Inhalte erklären Sie sich damit einverstanden, dass personenbezogene Daten an Drittplattformen übermittelt werden. Mehr Informationen dazu haben wir in unserer Datenschutzerklärung zur Verfügung gestellt.


    //edit Video hinzugefügt