Das mit den Waffen habe ich eh wieder raus genommen.
Wollte eigentlich umgehen alles zu posten aber es ist doch besser. Musste etwas bei PlayerUpdate weglassen nach hinten hin weil der Beitrag zu lang wäre.
Das geht immer so weiter wie es da auch steht. Der DEBUG ist alles komplett gepostet.
PlayerUpdate(playerid)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][eingeloggt]==0)return 1;
//Speichern
new query[128];
PlayerInfo[playerid][pCash] = GetPlayerMoney(playerid);
format(query,sizeof(query),"UPDATE accounts SET level='%i',money='%i',alevel='%i',premiumlevel='%i',haus='%i',eingemietet='%i' WHERE id='%i'",
PlayerInfo[playerid][pLevel],PlayerInfo[playerid][pCash],PlayerInfo[playerid][pAdmin],PlayerInfo[playerid][pDonateRank],PlayerInfo[playerid][Haus],PlayerInfo[playerid][eingemietet],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET hausbesitz='%s',hausschluessel='%i',upgradepoints='%i',connectedtime='%i',registered='%i' WHERE id='%i'",
PlayerInfo[playerid][Hausbesitz],PlayerInfo[playerid][Hausschluessel],PlayerInfo[playerid][gPupgrade],PlayerInfo[playerid][pConnectTime],PlayerInfo[playerid][pReg],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET geschlecht='%i',age='%i',origin='%i',zivispawn='%i',ck='%i' WHERE id='%i'",
PlayerInfo[playerid][pSex],PlayerInfo[playerid][pAge],PlayerInfo[playerid][pOrigin],PlayerInfo[playerid][pZivispawn],PlayerInfo[playerid][pCK],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET muted='%i',respect='%i',bank='%i',kredit='%i',kreditdauer='%i' WHERE id='%i'",
PlayerInfo[playerid][pMuted],PlayerInfo[playerid][pExp],PlayerInfo[playerid][pAccount],PlayerInfo[playerid][pPlayerKredit],PlayerInfo[playerid][pPlayerKreditDauer],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET crimes='%i',kills='%i',deaths='%i',arrested='%i',wanteddeaths='%i' WHERE id='%i'",
PlayerInfo[playerid][pCrimes],PlayerInfo[playerid][pKills],PlayerInfo[playerid][pDeaths],PlayerInfo[playerid][pArrested],PlayerInfo[playerid][pWantedDeaths],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET phonebook='%i',lottonr='%i',fishes='%i',biggestfish='%i',job='%i' WHERE id='%i'",
PlayerInfo[playerid][pPhoneBook],PlayerInfo[playerid][pLottoNr],PlayerInfo[playerid][pFishes],PlayerInfo[playerid][pBiggestFish],PlayerInfo[playerid][pJob],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET jobzeit='%i',paycheck='%i',headvalue='%i',jailed='%i',gangjailed='%i' WHERE id='%i'",
PlayerInfo[playerid][pJobtime],PlayerInfo[playerid][pPayCheck],PlayerInfo[playerid][pHeadValue],PlayerInfo[playerid][pJailed],PlayerInfo[playerid][pGangJailed],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET mauled='%i',jailtime='%i',materials='%i',drugs='%i',verband='%i' WHERE id='%i'",
PlayerInfo[playerid][pMauled],PlayerInfo[playerid][pJailTime],PlayerInfo[playerid][pMats],PlayerInfo[playerid][pDrugs],PlayerInfo[playerid][pVerband],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET boxmaterials='%i',boxdrugs='%i',fightingstyle='%i',leader='%i',member='%i' WHERE id='%i'",
PlayerInfo[playerid][pBoxMats],PlayerInfo[playerid][pBoxDrugs],GetPlayerFightingStyle(playerid),PlayerInfo[playerid][pLeader],PlayerInfo[playerid][pMember],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET fmember='%i',rank='%i',pskin='%i',contracttime='%i',detskill='%i' WHERE id='%i'",
PlayerInfo[playerid][pFMember],PlayerInfo[playerid][pRank],PlayerInfo[playerid][pChar],PlayerInfo[playerid][pContractTime],PlayerInfo[playerid][pDetSkill],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET sexskill='%i',boxskill='%i',lawskill='%i',mechskill='%i',jackskill='%i' WHERE id='%i'",
PlayerInfo[playerid][pSexSkill],PlayerInfo[playerid][pBoxSkill],PlayerInfo[playerid][pLawSkill],PlayerInfo[playerid][pMechSkill],PlayerInfo[playerid][pJackSkill],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET carskill='%i',drugsskill='%i',cookskill='%i',fishskill='%i',pshealth='%i' WHERE id='%f'",
PlayerInfo[playerid][pCarSkill],PlayerInfo[playerid][pDrugsSkill],PlayerInfo[playerid][pCookSkill],PlayerInfo[playerid][pFishSkill],PlayerInfo[playerid][pSHealth],PlayerInfo[playerid][db_id]);
GetPlayerHealth(playerid,PlayerInfo[playerid][pHealth]);
format(query,sizeof(query),"UPDATE accounts SET phealth='%f',interior='%i',local='%i',team='%i',model='%i' WHERE id='%i'",
PlayerInfo[playerid][pHealth],PlayerInfo[playerid][pInt],PlayerInfo[playerid][pLocal],PlayerInfo[playerid][pTeam],PlayerInfo[playerid][pModel],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET gwd='%f',phonenr='%i',house='%i',bizz='%i',handygeld='%i' WHERE id='%i'",
PlayerInfo[playerid][pGWD],PlayerInfo[playerid][pPnumber],PlayerInfo[playerid][pPhousekey],PlayerInfo[playerid][pPbiskey],PlayerInfo[playerid][pHandyGeld],PlayerInfo[playerid][db_id]);
if ((PlayerInfo[playerid][pPos_x]==0.0 && PlayerInfo[playerid][pPos_y]==0.0 && PlayerInfo[playerid][pPos_z]==0.0))
{
PlayerInfo[playerid][pPos_x] = 1684.9;
PlayerInfo[playerid][pPos_y] = -2244.5;
PlayerInfo[playerid][pPos_z] = 13.5;
}
if(Spectate[playerid] != 255)
{
PlayerInfo[playerid][pPos_x] = Unspec[playerid][sPx];
PlayerInfo[playerid][pPos_y] = Unspec[playerid][sPy];
PlayerInfo[playerid][pPos_z] = Unspec[playerid][sPz];
PlayerInfo[playerid][pInt] = Unspec[playerid][sPint];
PlayerInfo[playerid][pLocal] = Unspec[playerid][sLocal];
}
format(query,sizeof(query),"UPDATE accounts SET handyver='%i',pos_x='%f',pos_y='%f',pos_z='%f',carlic='%i' WHERE id='%i'",
PlayerInfo[playerid][pHandyVer],PlayerInfo[playerid][pPos_x],PlayerInfo[playerid][pPos_y],PlayerInfo[playerid][pPos_z],PlayerInfo[playerid][pCarLic],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET newlic='%i',flylic='%i',boatlic='%i',fishlic='%i',zollpass='%i' WHERE id='%i'",
PlayerInfo[playerid][pNewLic],PlayerInfo[playerid][pFlyLic],PlayerInfo[playerid][pBoatLic],PlayerInfo[playerid][pFishLic],PlayerInfo[playerid][pZollPass],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET zollpasstime='%i',statsbox='%i',gunlic='%i',lkwlic='%i',rollerlic='%i' WHERE id='%i'",
PlayerInfo[playerid][pZollPassTime],PlayerInfo[playerid][pStatsBox],PlayerInfo[playerid][pGunLic],PlayerInfo[playerid][pLKWLic],PlayerInfo[playerid][pRollerLic],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET motolic='%i',navigations='%i',pin='%i',donatorpoints='%i',numberchange='%i' WHERE id='%i'",
PlayerInfo[playerid][pMotoLic],PlayerInfo[playerid][pNavigations],PlayerInfo[playerid][pPin],PlayerInfo[playerid][pDonatorPoints],PlayerInfo[playerid][pNumberchange],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET zig='%i',kekse='%i',zigsucht='%i',gun1='%i',gun2='%i' WHERE id='%i'",
PlayerInfo[playerid][pZig],PlayerInfo[playerid][pKekse],PlayerInfo[playerid][pZigSucht],PlayerInfo[playerid][pGun1],PlayerInfo[playerid][pGun2],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET gun3='%i',gun4='%i',ammo1='%i',ammo2='%i',ammo3='%i' WHERE id='%i'",
PlayerInfo[playerid][pGun3],PlayerInfo[playerid][pGun4],PlayerInfo[playerid][pAmmo1],PlayerInfo[playerid][pAmmo2],PlayerInfo[playerid][pAmmo3],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET ammo4='%i',cartime='%i',payday='%i',paydayhad='%i',cdplayer='%i' WHERE id='%i'",
PlayerInfo[playerid][pAmmo4],PlayerInfo[playerid][pCarTime],PlayerInfo[playerid][pPayDay],PlayerInfo[playerid][pPayDayHad],PlayerInfo[playerid][pCDPlayer],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET wins='%i',loses='%i',alcoholperk='%i',drugperk='%i',miserperk='%i' WHERE id='%i'",
PlayerInfo[playerid][pWins],PlayerInfo[playerid][pLoses],PlayerInfo[playerid][pAlcoholPerk],PlayerInfo[playerid][pDrugPerk],PlayerInfo[playerid][pMiserPerk],PlayerInfo[playerid][db_id]);
format(query,sizeof(query),"UPDATE accounts SET painperk='%i',traderperk='%i',tutorial='%i',warnings='%i',adjustable='%i' WHERE id='%i'",
PlayerInfo[playerid][pPainPerk],PlayerInfo[playerid][pTraderPerk],PlayerInfo[playerid][pTut],PlayerInfo[playerid][pWarns],PlayerInfo[playerid][pAdjustable],PlayerInfo[playerid][db_id]);
mysql_pquery(dbhandle,query);
print("PlayerUpdate wurde aufgerufen.");
}
return 1;
}
[02:49:50] [DEBUG] CMySQLConnection::Connect - establishing connection to database...
[02:49:50] [DEBUG] CMySQLConnection::Connect - establishing connection to database...
[02:49:50] [DEBUG] CMySQLConnection::Connect - establishing connection to database...
[02:49:51] [DEBUG] CMySQLConnection::Connect - connection was successful
[02:49:51] [DEBUG] CMySQLConnection::Connect - connection was successful
[02:49:51] [DEBUG] CMySQLConnection::Connect - connection was successful
[02:49:51] [DEBUG] CMySQLConnection::Connect - auto-reconnect has been enabled
[02:49:51] [DEBUG] CMySQLConnection::Connect - auto-reconnect has been enabled
[02:49:51] [DEBUG] CMySQLConnection::Connect - auto-reconnect has been enabled
[02:50:24] [DEBUG] mysql_tquery - connection: 1, query: "SELECT id FROM accounts WHERE username='StandbyGamerx3'", callback: "OnUserCheck", format: "i"
[02:50:24] [DEBUG] CMySQLQuery::Execute[OnUserCheck] - starting query execution
[02:50:25] [DEBUG] CMySQLQuery::Execute[OnUserCheck] - query was successfully executed within 249.225 milliseconds
[02:50:25] [DEBUG] CMySQLResult::CMySQLResult() - constructor called
[02:50:25] [DEBUG] Calling callback "OnUserCheck"..
[02:50:25] [DEBUG] cache_get_data - connection: 1
[02:50:25] [DEBUG] CMySQLResult::~CMySQLResult() - deconstructor called
[02:50:28] [DEBUG] mysql_escape_string - source: "159159", connection: 1, max_len: 35
[02:50:28] [DEBUG] mysql_tquery - connection: 1, query: "SELECT * FROM accounts WHERE username='StandbyGamerx3' AND passw", callback: "OnPasswordResponse", format: "i"
[02:50:28] [DEBUG] CMySQLQuery::Execute[OnPasswordResponse] - starting query execution
[02:50:28] [DEBUG] CMySQLQuery::Execute[OnPasswordResponse] - query was successfully executed within 425.765 milliseconds
[02:50:28] [DEBUG] CMySQLResult::CMySQLResult() - constructor called
[02:50:28] [DEBUG] Calling callback "OnPasswordResponse"..
[02:50:28] [DEBUG] cache_get_data - connection: 1
[02:50:28] [DEBUG] cache_get_field_content_int - row: 0, field_name: "id", connection: 1
[02:50:28] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "id", data: "3"
[02:50:28] [DEBUG] cache_get_field_content_int - row: 0, field_name: "level", connection: 1
[02:50:28] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "level", data: "6"
[02:50:28] [DEBUG] cache_get_field_content_int - row: 0, field_name: "money", connection: 1
[02:50:28] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "money", data: "3000000"
[02:50:28] [DEBUG] cache_get_field_content_int - row: 0, field_name: "alevel", connection: 1
[02:50:28] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "alevel", data: "7"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "premiumlevel", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "premiumlevel", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "haus", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "haus", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "hausbesitz", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "hausbesitz", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "hausschluessel", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "hausschluessel", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "upgradepoints", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "upgradepoints", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "connectedtime", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "connectedtime", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "registered", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "registered", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "geschlecht", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "geschlecht", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "age", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "age", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "origin", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "origin", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "zivispawn", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "zivispawn", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "ck", connection: 1
[02:50:29] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ck", data: "0"
[02:50:29] [DEBUG] cache_get_field_content_int - row: 0, field_name: "muted", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "muted", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "respect", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "respect", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "bank", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "bank", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "kredit", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "kredit", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "kreditdauer", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "kreditdauer", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "crimes", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "crimes", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "kills", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "kills", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "deaths", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "deaths", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "arrested", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "arrested", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "wanteddeaths", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "wanteddeaths", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "phonebook", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "phonebook", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "lottonr", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "lottonr", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fishes", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fishes", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "biggestfish", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "biggestfish", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "job", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "job", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "jobzeit", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "jobzeit", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "paycheck", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "paycheck", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "headvalue", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "headvalue", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "jailed", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "jailed", data: "0"
[02:50:30] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gangjailed", connection: 1
[02:50:30] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gangjailed", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "mauled", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "mauled", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "jailtime", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "jailtime", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "materials", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "materials", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "drugs", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "drugs", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "verband", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "verband", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "boxmaterials", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "boxmaterials", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "boxdrugs", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "boxdrugs", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fightingstyle", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fightingstyle", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "leader", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "leader", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "member", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "member", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fmember", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fmember", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "rank", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "rank", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "pskin", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "pskin", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "contracttime", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "contracttime", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "detskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "detskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "sexskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "sexskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "boxskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "boxskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "lawskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "lawskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "mechskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "mechskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "jackskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "jackskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "carskill", connection: 1
[02:50:31] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "carskill", data: "0"
[02:50:31] [DEBUG] cache_get_field_content_int - row: 0, field_name: "drugsskill", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "drugsskill", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "cookskill", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "cookskill", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fishskill", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fishskill", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_float - row: 0, field_name: "pshealth", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "pshealth", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_float - row: 0, field_name: "phealth", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "phealth", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "interior", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "interior", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "local", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "local", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "team", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "team", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "model", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "model", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_float - row: 0, field_name: "gwd", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gwd", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "phonenr", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "phonenr", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "house", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "house", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "bizz", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "bizz", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "handygeld", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "handygeld", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "handyver", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "handyver", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_float - row: 0, field_name: "pos_x", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "pos_x", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_float - row: 0, field_name: "pos_y", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "pos_y", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_float - row: 0, field_name: "pos_z", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "pos_z", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "carlic", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "carlic", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "newlic", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "newlic", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "flylic", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "flylic", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "boatlic", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "boatlic", data: "0"
[02:50:32] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fishlic", connection: 1
[02:50:32] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fishlic", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "zollpass", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "zollpass", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "zollpasstime", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "zollpasstime", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "statsbox", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "statsbox", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gunlic", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gunlic", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "lkwlic", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "lkwlic", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "rollerlic", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "rollerlic", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "motolic", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "motolic", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "navigations", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "navigations", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "pin", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "pin", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "donatorpoints", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "donatorpoints", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "numberchange", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "numberchange", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "zig", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "zig", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "kekse", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "kekse", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "zigsucht", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "zigsucht", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gun1", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gun1", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gun2", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gun2", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gun3", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gun3", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gun4", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gun4", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "ammo1", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ammo1", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "ammo2", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ammo2", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "ammo3", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ammo3", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "ammo4", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ammo4", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "cartime", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "cartime", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "payday", connection: 1
[02:50:33] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "payday", data: "0"
[02:50:33] [DEBUG] cache_get_field_content_int - row: 0, field_name: "paydayhad", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "paydayhad", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "cdplayer", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "cdplayer", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "wins", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "wins", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "loses", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "loses", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "alcoholperk", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "alcoholperk", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "drugperk", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "drugperk", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "miserperk", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "miserperk", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "painperk", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "painperk", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "traderperk", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "traderperk", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "tutorial", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "tutorial", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "warnings", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "warnings", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "adjustable", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "adjustable", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fuel", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fuel", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "married", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "married", data: "0"
[02:50:34] [DEBUG] cache_get_field_content - row: 0, field_name: "marriedto", connection: 1, max_len: 50
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "marriedto", data: ""
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "spawnchange", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "spawnchange", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "wantedlevel", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "wantedlevel", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "wantedpoints", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "wantedpoints", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "playminutes", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "playminutes", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gesamtminutes", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gesamtminutes", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "minutessincean", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "minutessincean", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "offflucht", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "offflucht", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "knast", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "knast", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "uhr", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "uhr", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "handy", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "handy", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "knasttime", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "knasttime", data: "0"
[02:50:34] [DEBUG] cache_get_field_content_int - row: 0, field_name: "perso", connection: 1
[02:50:34] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "perso", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "fraksperre", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "fraksperre", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gehalt", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gehalt", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "invweapon", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "invweapon", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "invammo", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "invammo", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "invweapon2", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "invweapon2", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "invammo2", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "invammo2", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "invmats", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "invmats", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "invdrugs", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "invdrugs", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "angelschnur", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "angelschnur", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "koeder", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "koeder", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "farmtime", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "farmtime", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gdeaths", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gdeaths", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "gkills", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "gkills", data: "0"
[02:50:35] [DEBUG] cache_get_field_content_int - row: 0, field_name: "meldung", connection: 1
[02:50:35] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "meldung", data: "0"
[02:50:35] [DEBUG] CMySQLResult::~CMySQLResult() - deconstructor called
[02:51:05] [DEBUG] mysql_pquery - connection: 1, query: "UPDATE accounts SET farmtime='0',gdeaths='0',gkills='0',meldung=", callback: "(null)", format: "(null)"
[02:51:05] [DEBUG] CMySQLQuery::Execute[] - starting query execution
[02:51:06] [DEBUG] CMySQLQuery::Execute[] - query was successfully executed within 174.478 milliseconds
[02:51:06] [DEBUG] CMySQLQuery::Execute[] - no callback specified, skipping result saving
[02:51:43] [DEBUG] mysql_pquery - connection: 1, query: "UPDATE accounts SET farmtime='0',gdeaths='0',gkills='0',meldung=", callback: "(null)", format: "(null)"
[02:51:43] [DEBUG] CMySQLQuery::Execute[] - starting query execution
[02:51:43] [DEBUG] CMySQLQuery::Execute[] - query was successfully executed within 130.305 milliseconds
[02:51:43] [DEBUG] CMySQLQuery::Execute[] - no callback specified, skipping result saving
[02:52:21] [DEBUG] mysql_pquery - connection: 1, query: "UPDATE accounts SET farmtime='0',gdeaths='0',gkills='0',meldung=", callback: "(null)", format: "(null)"
[02:52:21] [DEBUG] CMySQLQuery::Execute[] - starting query execution
[02:52:21] [DEBUG] CMySQLQuery::Execute[] - query was successfully executed within 119.353 milliseconds
[02:52:21] [DEBUG] CMySQLQuery::Execute[] - no callback specified, skipping result saving
[02:52:58] [DEBUG] mysql_pquery - connection: 1, query: "UPDATE accounts SET farmtime='0',gdeaths='0',gkills='0',meldung=", callback: "(null)", format: "(null)"
[02:52:58] [DEBUG] CMySQLQuery::Execute[] - starting query execution
[02:52:58] [DEBUG] CMySQLQuery::Execute[] - query was successfully executed within 111.545 milliseconds
[02:52:58] [DEBUG] CMySQLQuery::Execute[] - no callback specified, skipping result saving
[02:53:20] [DEBUG] mysql_pquery - connection: 1, query: "UPDATE accounts SET farmtime='0',gdeaths='0',gkills='0',meldung=", callback: "(null)", format: "(null)"
[02:53:20] [DEBUG] CMySQLQuery::Execute[] - starting query execution
[02:53:20] [DEBUG] CMySQLQuery::Execute[] - query was successfully executed within 118.376 milliseconds
[02:53:21] [DEBUG] CMySQLQuery::Execute[] - no callback specified, skipping result saving
Alles anzeigen