Na im Print, den du schon gemacht hast, sieht man test 174 und eig war der print ja dieser
printf("%d",ModelID);
heisst, ModelID = 174
bedeutet das es auch hier übersprungen wird beim erstellen
if(ModelID < 400 || ModelID > 611)
ausser du hast was beim aus printen geänder bzw. irgendwie den code c(:
evt. nochmal code schicken wie du ihn gerade hast 
Alles anzeigen
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)