Forums
BF2Statistics.com :: Forums :: General :: Bugs
 
<< Previous thread | Next thread >>
BF2statistics 1.4.x Bug List
Go to page   <<        >>  
Moderators: MrNiceGuy, Twhyman, Chump, hurr1k4ne, The Shadow, Wilson212
Author Post
hawk
Sun Dec 13 2009, 05:00PM
Registered Member #210
Joined: Mon Feb 06 2006, 01:09AM

Location: Lampasas, Texas USA
Posts: 38
Thinner wrote ...

Hi Hawk,

please have a look at this post, it should help.


bye
Thinner


I changed the lines in the other post now When I open the Ststs page the list of players is blank when I enter my Player name I get.
Warning: array_combine() [function.array-combine]: Both parameters should have an equal number of elements in C:\xampp\htdocs\bf2statistics\BF2Stats.php on line 247
Back to top
Thinner
Sun Dec 13 2009, 05:53PM
Registered Member #2900
Joined: Fri Feb 23 2007, 08:46AM

Location: Germany
Posts: 291
If the player list is blank maybe the output of h**p://your_IP/ASP/getleaderboard.aspx is broken. Open h**p://your_IP/ASP/getleaderboard.aspx?type=score&id=overall&after=10 in your browser and send me the output per PM. Please also tell me which files do you have edited so far.

Please open a new thread for special problems like this and don't rape the buglist thread anymore. Thanks.

[EDIT]
Problem solved: "password to the db got messed up"
[/EDIT]

[ Edited Mon Dec 14 2009, 02:05PM ]
Back to top
Ullen
Tue Mar 02 2010, 11:24AM
Registered Member #7235
Joined: Mon Mar 01 2010, 01:03PM

Posts: 1
Draketornado wrote ...

Same problem for me but...

Try to connect the ASP over:

127.0.0.1/ASP/

Works for me...

Greets

Draketornado


This happpened to me too. My programming skills are not very good, but if you want to be able to use the "localhost/ASP" path, you need to grant "localhost" permission. It's only a minor nuisance, but you can fix it.

1. Go to .. htdocs\ASP
2. Open _config.php (with Notepad, or whatever)
3. Go to line 16, where you'll find $admin_hosts
4. Simply add localhost to the array
Ex.
  1. $admin_hosts = array('127.0.0.1','192.168.1.101/110','localhost');


I know its nothing, but hope it helps someone

Peace
Back to top
unknown
Sun May 02 2010, 08:04AM
unknown
Registered Member #7419
Joined: Wed Apr 28 2010, 07:37AM

Location: Baltic
Posts: 43
Bug: one missed player in BFHQ leaderboard (only shows 19 players per leaderboard page)
Fix: getleaderboard.aspx

change:
at line 61
$max = $after;

to:
$max = $after + 1;

Back to top
unknown
Sun May 02 2010, 09:16AM
unknown
Registered Member #7419
Joined: Wed Apr 28 2010, 07:37AM

Location: Baltic
Posts: 43
Bug: BFHQ missed vehicle leaderboard data Timeplayed and Deaths.
Fix: getleaderboard.aspx

change:
at line 353
  1. $out .= "H\tn\tpid\tnick\tkillswith\tdeathsby\ttimeplayed\tplayerrank\tcountrycode\n";

to:
  1. $out .= "H\tn\tpid\tnick\tkillswith\tdetahsby\ttimeused\tplayerrank\tcountrycode\n";


[ Edited Sat May 08 2010, 12:39PM ]
Back to top
unknown
Thu May 06 2010, 08:16PM
unknown
Registered Member #7419
Joined: Wed Apr 28 2010, 07:37AM

Location: Baltic
Posts: 43
BUG: When a new player has no opponent or victim Data are shown incorrectly in all BFHQ, so after this change data will be displayed correctly and blank victim/ oponent bars until you kill someone.
Fix: getplayerinfo.aspx


First remove these two lines in the code:

at line 306
$favor = $row2['rank'];

at line 326
$favvr = $row2['rank'];


opponent change:
at line 288
// Favorite opponent
$query = "SELECT attacker, count FROM kills WHERE victim = {$pid} GROUP BY count DESC LIMIT 1";
$result = mysql_query($query) or die(mysql_error());
if (mysql_num_rows($result)) {
$row2 = mysql_fetch_array($result);
$favoi = $row2['attacker'];
$favok = $row2['count'];
$query = "SELECT name, rank FROM player WHERE id = {$favoi}";
$result = mysql_query($query) or die(mysql_error());
$row2 = mysql_fetch_array($result);
$favon = $row2['name'];
} else {
$favoi = $favok = $favon = 'n/a';
}


to:
// Favorite opponent
$query = "SELECT attacker, count FROM kills WHERE victim = {$pid} GROUP BY count DESC LIMIT 1";
$result = mysql_query($query) or die(mysql_error());
if (mysql_num_rows($result)) {
$row2 = mysql_fetch_array($result);
$favoi = $row2['attacker'];
$favok = $row2['count'];
$query = "SELECT name, rank FROM player WHERE id = {$favoi}";
$result = mysql_query($query) or die(mysql_error());
$row2 = mysql_fetch_array($result);
$favon = $row2['name'];
$favor = $row2['rank'];
} else {
$favoi = $favon = $favor = ' ';
$favok = '0';
}







victim change:
at line 308
// Favorite victim
$query = "SELECT victim, count FROM kills WHERE attacker = {$pid} GROUP BY count DESC LIMIT 1";
$result = mysql_query($query) or die(mysql_error());
if (mysql_num_rows($result)) {
$row2 = mysql_fetch_array($result);
$favvi = $row2['victim'];
$favvk = $row2['count'];
$query = "SELECT name, rank FROM player WHERE id = {$favvi}";
$result = mysql_query($query) or die(mysql_error());
$row2 = mysql_fetch_array($result);
$favvn = $row2['name'];
} else {
$favvi = $favvk = $favvn = 'n/a';
}


to:
// Favorite victim
$query = "SELECT victim, count FROM kills WHERE attacker = {$pid} GROUP BY count DESC LIMIT 1";
$result = mysql_query($query) or die(mysql_error());
if (mysql_num_rows($result)) {
$row2 = mysql_fetch_array($result);
$favvi = $row2['victim'];
$favvk = $row2['count'];
$query = "SELECT name, rank FROM player WHERE id = {$favvi}";
$result = mysql_query($query) or die(mysql_error());
$row2 = mysql_fetch_array($result);
$favvn = $row2['name'];
$favvr = $row2['rank'];
} else {
$favvi = $favvn = $favvr= ' ';
$favvk = '0';
}




[ Edited Sat May 22 2010, 03:52AM ]
Back to top
unknown
Sat May 22 2010, 03:45AM
unknown
Registered Member #7419
Joined: Wed Apr 28 2010, 07:37AM

Location: Baltic
Posts: 43
BUG: Some stats checkers like Brainpecker show incorrectly Army Best Round (abr-), since this bug is from first release.
Fix: getplayerinfo.aspx



change:
at line 702

  1. #wkd-13
  2.                                 "0:0\t" .
  3.                                 $rowv['time0'] . "\t" .
  4.                                 $rowv['time1'] . "\t" .
  5.                                 $rowv['time2'] . "\t" .
  6.                                 $rowv['time3'] . "\t" .
  7.                                 $rowv['time4'] . "\t" .
  8.                                 $rowv['time5'] . "\t" .
  9.                                 $rowv['time6'] . "\t" .
  10.                                 $rowv['kills0'] . "\t" .
  11.                                 $rowv['kills1'] . "\t" .
  12.                                 $rowv['kills2'] . "\t" .
  13.                                 $rowv['kills3'] . "\t" .
  14.                                 $rowv['kills4'] . "\t" .
  15.                                 $rowv['kills5'] . "\t" .
  16.                                 $rowv['kills6'] . "\t" .
  17.                                 $rowv['deaths0'] . "\t" .
  18.                                 $rowv['deaths1'] . "\t" .
  19.                                 $rowv['deaths2'] . "\t" .
  20.                                 $rowv['deaths3'] . "\t" .
  21.                                 $rowv['deaths4'] . "\t" .
  22.                                 $rowv['deaths5'] . "\t" .
  23.                                 $rowv['deaths6'] . "\t" .
  24.                                 $v0 . "\t" .
  25.                                 $v1 . "\t" .
  26.                                 $v2 . "\t" .
  27.                                 $v3 . "\t" .
  28.                                 $v4 . "\t" .
  29.                                 $v5 . "\t" .
  30.                                 $v6 . "\t" .
  31.                                 $rowv['rk0'] . "\t" .
  32.                                 $rowv['rk1'] . "\t" .
  33.                                 $rowv['rk2'] . "\t" .
  34.                                 $rowv['rk3'] . "\t" .
  35.                                 $rowv['rk4'] . "\t" .
  36.                                 $rowv['rk5'] . "\t" .
  37.                                 $rowv['rk6'] . "\t" .
  38.                                 $rowa['time0'] . "\t" .
  39.                                 $rowa['time1'] . "\t" .
  40.                                 $rowa['time2'] . "\t" .
  41.                                 $rowa['time3'] . "\t" .
  42.                                 $rowa['time4'] . "\t" .
  43.                                 $rowa['time5'] . "\t" .
  44.                                 $rowa['time6'] . "\t" .
  45.                                 $rowa['time7'] . "\t" .
  46.                                 $rowa['time8'] . "\t" .
  47.                                 $rowa['time9'] . "\t" .
  48.                                 $rowa['win0'] . "\t" .
  49.                                 $rowa['win1'] . "\t" .
  50.                                 $rowa['win2'] . "\t" .
  51.                                 $rowa['win3'] . "\t" .
  52.                                 $rowa['win4'] . "\t" .
  53.                                 $rowa['win5'] . "\t" .
  54.                                 $rowa['win6'] . "\t" .
  55.                                 $rowa['win7'] . "\t" .
  56.                                 $rowa['win8'] . "\t" .
  57.                                 $rowa['win9'] . "\t" .
  58.                                 $rowa['loss0'] . "\t" .
  59.                                 $rowa['loss1'] . "\t" .
  60.                                 $rowa['loss2'] . "\t" .
  61.                                 $rowa['loss3'] . "\t" .
  62.                                 $rowa['loss4'] . "\t" .
  63.                                 $rowa['loss5'] . "\t" .
  64.                                 $rowa['loss6'] . "\t" .
  65.                                 $rowa['loss7'] . "\t" .
  66.                                 $rowa['loss8'] . "\t" .
  67.                                 $rowa['loss9'] . "\t" .
  68.                                 $rowa['brnd0'] . "\t" .
  69.                                 $rowa['brnd1'] . "\t" .
  70.                                 $rowa['brnd2'] . "\t" .
  71.                                 $rowa['brnd3'] . "\t" .
  72.                                 $rowa['brnd4'] . "\t" .
  73.                                 $rowa['brnd5'] . "\t" .
  74.                                 $rowa['brnd6'] . "\t" .
  75.                                 $rowa['brnd7'] . "\t" .
  76.                                 $rowa['brnd8'] . "\t" .
  77.                                 $rowa['brnd9'] . "\t" .
  78.                                 $rowk['time0'] . "\t" .
  79.                                 $rowk['time1'] . "\t" .
  80.                                 $rowk['time2'] . "\t" .
  81.                                 $rowk['time3'] . "\t" .
  82.                                 $rowk['time4'] . "\t" .
  83.                                 $rowk['time5'] . "\t" .
  84.                                 $rowk['time6'] . "\t" .
  85.                                 $rowk['kills0'] . "\t" .
  86.                                 $rowk['kills1'] . "\t" .
  87.                                 $rowk['kills2'] . "\t" .
  88.                                 $rowk['kills3'] . "\t" .
  89.                                 $rowk['kills4'] . "\t" .
  90.                                 $rowk['kills5'] . "\t" .
  91.                                 $rowk['kills6'] . "\t" .
  92.                                 $rowk['deaths0'] . "\t" .
  93.                                 $rowk['deaths1'] . "\t" .
  94.                                 $rowk['deaths2'] . "\t" .
  95.                                 $rowk['deaths3'] . "\t" .
  96.                                 $rowk['deaths4'] . "\t" .
  97.                                 $rowk['deaths5'] . "\t" .
  98.                                 $rowk['deaths6'] . "\t" .
  99.                                 $k0 . "\t" .
  100.                                 $k1 . "\t" .
  101.                                 $k2 . "\t" .
  102.                                 $k3 . "\t" .
  103.                                 $k4 . "\t" .
  104.                                 $k5 . "\t" .
  105.                                 $k6 . "\t" .


to:

  1. #wkd-13
  2.                                 "0:0\t" .
  3.                                 $rowv['time0'] . "\t" .
  4.                                 $rowv['time1'] . "\t" .
  5.                                 $rowv['time2'] . "\t" .
  6.                                 $rowv['time3'] . "\t" .
  7.                                 $rowv['time4'] . "\t" .
  8.                                 $rowv['time5'] . "\t" .
  9.                                 $rowv['time6'] . "\t" .
  10.                                 $rowv['kills0'] . "\t" .
  11.                                 $rowv['kills1'] . "\t" .
  12.                                 $rowv['kills2'] . "\t" .
  13.                                 $rowv['kills3'] . "\t" .
  14.                                 $rowv['kills4'] . "\t" .
  15.                                 $rowv['kills5'] . "\t" .
  16.                                 $rowv['kills6'] . "\t" .
  17.                                 $rowv['deaths0'] . "\t" .
  18.                                 $rowv['deaths1'] . "\t" .
  19.                                 $rowv['deaths2'] . "\t" .
  20.                                 $rowv['deaths3'] . "\t" .
  21.                                 $rowv['deaths4'] . "\t" .
  22.                                 $rowv['deaths5'] . "\t" .
  23.                                 $rowv['deaths6'] . "\t" .
  24.                                 $v0 . "\t" .
  25.                                 $v1 . "\t" .
  26.                                 $v2 . "\t" .
  27.                                 $v3 . "\t" .
  28.                                 $v4 . "\t" .
  29.                                 $v5 . "\t" .
  30.                                 $v6 . "\t" .
  31.                                 $rowv['rk0'] . "\t" .
  32.                                 $rowv['rk1'] . "\t" .
  33.                                 $rowv['rk2'] . "\t" .
  34.                                 $rowv['rk3'] . "\t" .
  35.                                 $rowv['rk4'] . "\t" .
  36.                                 $rowv['rk5'] . "\t" .
  37.                                 $rowv['rk6'] . "\t" .
  38.                                 $rowa['time0'] . "\t" .
  39.                                 $rowa['time1'] . "\t" .
  40.                                 $rowa['time2'] . "\t" .
  41.                                 $rowa['time3'] . "\t" .
  42.                                 $rowa['time4'] . "\t" .
  43.                                 $rowa['time5'] . "\t" .
  44.                                 $rowa['time6'] . "\t" .
  45.                                 $rowa['time7'] . "\t" .
  46.                                 $rowa['time8'] . "\t" .
  47.                                 $rowa['time9'] . "\t" .
  48.                                 $rowa['win0'] . "\t" .
  49.                                 $rowa['win1'] . "\t" .
  50.                                 $rowa['win2'] . "\t" .
  51.                                 $rowa['win3'] . "\t" .
  52.                                 $rowa['win4'] . "\t" .
  53.                                 $rowa['win5'] . "\t" .
  54.                                 $rowa['win6'] . "\t" .
  55.                                 $rowa['win7'] . "\t" .
  56.                                 $rowa['win8'] . "\t" .
  57.                                 $rowa['win9'] . "\t" .
  58.                                 $rowa['loss0'] . "\t" .
  59.                                 $rowa['loss1'] . "\t" .
  60.                                 $rowa['loss2'] . "\t" .
  61.                                 $rowa['loss3'] . "\t" .
  62.                                 $rowa['loss4'] . "\t" .
  63.                                 $rowa['loss5'] . "\t" .
  64.                                 $rowa['loss6'] . "\t" .
  65.                                 $rowa['loss7'] . "\t" .
  66.                                 $rowa['loss8'] . "\t" .
  67.                                 $rowa['loss9'] . "\t" .
  68.                                 $rowa['best0'] . "\t" .
  69.                                 $rowa['best1'] . "\t" .
  70.                                 $rowa['best2'] . "\t" .
  71.                                 $rowa['best3'] . "\t" .       // fixed abr-
  72.                                 $rowa['best4'] . "\t" .
  73.                                 $rowa['best5'] . "\t" .
  74.                                 $rowa['best6'] . "\t" .
  75.                                 $rowa['best7'] . "\t" .
  76.                                 $rowa['best8'] . "\t" .
  77.                                 $rowa['best9'] . "\t" .
  78.                                 $rowk['time0'] . "\t" .
  79.                                 $rowk['time1'] . "\t" .
  80.                                 $rowk['time2'] . "\t" .
  81.                                 $rowk['time3'] . "\t" .
  82.                                 $rowk['time4'] . "\t" .
  83.                                 $rowk['time5'] . "\t" .
  84.                                 $rowk['time6'] . "\t" .
  85.                                 $rowk['kills0'] . "\t" .
  86.                                 $rowk['kills1'] . "\t" .
  87.                                 $rowk['kills2'] . "\t" .
  88.                                 $rowk['kills3'] . "\t" .
  89.                                 $rowk['kills4'] . "\t" .
  90.                                 $rowk['kills5'] . "\t" .
  91.                                 $rowk['kills6'] . "\t" .
  92.                                 $rowk['deaths0'] . "\t" .
  93.                                 $rowk['deaths1'] . "\t" .
  94.                                 $rowk['deaths2'] . "\t" .
  95.                                 $rowk['deaths3'] . "\t" .
  96.                                 $rowk['deaths4'] . "\t" .
  97.                                 $rowk['deaths5'] . "\t" .
  98.                                 $rowk['deaths6'] . "\t" .
  99.                                 $k0 . "\t" .
  100.                                 $k1 . "\t" .
  101.                                 $k2 . "\t" .
  102.                                 $k3 . "\t" .
  103.                                 $k4 . "\t" .
  104.                                 $k5 . "\t" .
  105.                                 $k6 . "\t" .

Back to top
unknown
Sun May 23 2010, 06:24AM
unknown
Registered Member #7419
Joined: Wed Apr 28 2010, 07:37AM

Location: Baltic
Posts: 43
BUG: wrong award key and also criteria for "European Union Special Service Medal"
Fix: /includes/data.awards.php

50h time playing European Union
100 Best round score
50 wins European union


change:
at line 186
  1. #European Union Special Service Medal
  2.         $awardsdata[] = array(2270521, "Esr", 2,
  3.                                                 array(
  4.                                                         array('army', 'count(*)', 1, 'time9 >= 180000*### AND best9 >= 100*### AND win9 >= 100*###')
  5.                                                 )
  6.                                         );


to:


  1. #European Union Special Service Medal
  2.         $awardsdata[] = array(2270521, "Eum", 2,
  3.                                                 array(
  4.                                                         array('army', 'count(*)', 1, 'time9 >= 180000*### AND best9 >= 100*### AND win9 >= 50*###')
  5.                                                 )
  6.                                         );
Back to top
neeraj66
Wed Jun 02 2010, 02:46AM
Registered Member #7506
Joined: Wed Jun 02 2010, 02:44AM

Posts: 5

207 0.54% lesbian fisting squirt lesbians fisting lesbian fisting
129 0.34% online drugs with no prescription
83 0.22% online drug store without prescription
78 0.20% buy cheap viagra online order cheap viagra online
50 0.13% cheap cialis order cialis online
50 0.13% erection disfunction online pharmacy without prescription
50 0.13% pussy fisting fisting videos self fisting fisting pussy
27 0.07% unitedcheats mu online stats adder
26 0.07% adameteve 2 easyrencontre source left bottom
25 0.07% buy viagra order viagra buy cheap viagra order cheap viagra
25 0.07% lesbian squirting pussy squirt stretch pussy pussy stretching
23 0.06% juegosdemortalcomba
21 0.05% real football 2009 testado no v3i
20 0.05% swat4 zlib.dll with 0gzifstream@@qae@pbdh@z
14 0.04% cunnilinigus
14 0.04% pier999 пошук фото
13 0.03% gamerztools trainer gbs public v8.0 gamerz aimpro
12 0.03% download pkm light platinum beta 2 ficheiro gba
12 0.03% mak cdn games sh3bwah g files dress game
12 0.03% quot;http mirrors eliott ness files bfbc2 beta quot;
11 0.03% jogagratis br jogos eroticos hentai porno
10 0.03% -
10 0.03%
10 0.03% lion dt-03 bluetooth driver indir programi gezgİnler
9 0.02% download pi2 gamespot disk 03 gsc sports pes 2009 multi demo
9 0.02% fricons nilesat
9 0.02% mirror01 serv fr gaara tome naruto colo [gfc]
9 0.02% imajes
9 0.02% wwwbarjojo.com
9 0.02% wwwfunformovil
8 0.02% baixar adripsx2
8 0.02% bleu شرح paltalk niknam
8 0.02% jogosde2jogadores
8 0.02% lostpt net 8090 painel novo index
8 0.02% wwwxxxlcom
7 0.02% chipauto f2 4.0.4
7 0.02% coud fricons nilsat
7 0.02% ero2 etco2
7 0.02% estrite faite the king jogos delete.1997 time 26
7 0.02% felem sekse ful
7 0.02% flyff down gpotato clients flyffusasetup 11th xfire
7 0.02% fricons orbit nilesat
7 0.02% helicoptero apache 3d3 canais
7 0.02%
7 0.02%
7 0.02%
7 0.02% jouxdemoto
7 0.02% na onde eu posso baixarcharles web debugging proxy
7 0.02% scolastance.com/entauvergne/lycjeanmonnet
7 0.02% static commentcamarche net download fichiers xp3264 1273 111 2007
7 0.02% تحميل فيلم jessica drake anal compilation fallen
6 0.02% 01telecharger.com jvc g 726 e exe
6 0.02% bfbc2beta.zip
6 0.02% command
6 0.02% dicas tony rauque de ps2 de esqueite
6 0.02% download jupiter come2store first love warcraft reign chaos ver no cd patch
6 0.02% download pi2 gamespot disk 03 jsc sports pes 2009 multi demo
6 0.02% file zzz download 150 968 2009 myegy com rmvb
6 0.02%
6 0.02%
6 0.02%
6 0.02%
6 0.02%
6 0.02% huong dan cai dat mtv mobi cho n95 8g
6 0.02% imi apare d3derr_notavailable ce sa fac
6 0.02% mega trainer 1.05/reborn dlc
6 0.02% real camgiris 18
6 0.02% stahni vga cart radeon x300se guru 128mb
6 0.02% taringa descargar gun survivor dino crisis 1 ps2 formato iso
6 0.02% tilicharge skype gratoui
6 0.02% videos y majenes demotos nigja vuscar www.com
6 0.02%
6 0.02% игры фермдва
6 0.02% منتدى yhoo! games ‎.pool2.room.sad.com
5 0.01% accounts.hellgatelondon.com/pingaccount/create/locale=es_es
5 0.01% adriana transxeuelle
5 0.01% armurerie paris et banlieu gamo extreme co2
5 0.01% bombapete 3.1
5 0.01% d3dx9_26.dll cr.te.pc تحميل
5 0.01% difference between 20007 and 2009 g6 gt
5 0.01% download map creation call of juarez ver.1.0.0.0
5 0.01% en sim city 3000 me aparece cuando abro el juego unknown exception que hago
5 0.01% fry softver za tv carta usb
5 0.01% http/1.1 404 not found granado espada solucion
5 0.01%
5 0.01%
5 0.01% meloft.com/orage pl
5 0.01%
5 0.01% http;//bbs.x383.com/775/
5 0.01%
5 0.01% logitiel mothercard albatron startimes2
5 0.01% operamini 4.2 handler ul 1.3.2 black edition-lu
5 0.01% otserv svn linux fedora tutorial
5 0.01% parachute colli strategique cod6
5 0.01% pornopgraphie gay
5 0.01% raccourci vers diablo 2 للتحميل مجاني
5 0.01% ramzi gta 2 baraye psp
5 0.01% redtube iframe bottom blackace 001 index
5 0.01% seafight-poseidon.skyrock.com
5 0.01% seculaucher:failed to start application(9000) jeu pc batman windows 7
5 0.01% sid ahmed gougoule
5 0.01% sixfamme
5 0.01% voyager skysat download upgrade refresh
5 0.01%
5 0.01% تحميل لعبة ghost recon1 pc برابط واحد
5 0.01% تعريف كاميرا premium atw-091a
5 0.01% دانلود video master درایور pwn 100
4 0.01% )perles.bigpoint.ifrance.com/
4 0.01% //images.google.com/imagesum=1
4 0.01% @mix-cor.com.mx
4 0.01% a fucked up wedding - slutload.com_2
4 0.01% acelerador de reating de gamezer
4 0.01% agfa ephoto 1280 digital camera # 2 definition تحميل\
4 0.01% art in greece gr poll php lang porno23
4 0.01% baixa aki drives de som optiplex gx270 de computador dell pentium4
4 0.01% baixaki baixar o'jogo para pc mid naid club 3 completo
4 0.01% baixaki driver de som digitron dg-760gx
4 0.01% baixar programas = sound audio forgeots cd scratch 1200 freeatomixmp3 2.3traktor dj studio 2.6.1
4 0.01% board gulli thread 507 419 pcsx2 bios files download
4 0.01% bot za igru deathmatch classic
4 0.01% butyfulgirls
4 0.01% chaoxian pmp platform driver
4 0.01% code satilit thore
4 0.01% comment passer dans les slifer jaune dans yu gi oh
4 0.01% comment s'inscrir au marathon de new york 2011
4 0.01% como le pongo esto que me descargue daedalus 64 rev 306 a mi psp
4 0.01% como solucionar el error al iniciar aplicacion no se encontro fmodex.dll en el juego hannah montana
4 0.01% d3d.dll f2h
4 0.01% dawlond jocul counter strike extreme 1.1 multiplayer
4 0.01% dead eye fred player creator-botage poker bot
4 0.01% descargar ebuddy 1.5.0 para nokia 5200
4 0.01% descargar libvorbisfile.dll de cz cabal
4 0.01% descargar pcsx 0.9.6 con parche de star wars :revenge of the sith
4 0.01% descargararchivo msncore.dll -
4 0.01% do you qant latest garenahack and map hack 1.24
4 0.01% download aion arquivo data2.hdr
4 0.01% download do nid naid clube 3 de ps2
4 0.01% download file (loadlibrary(~df394b.tmp))
4 0.01% download logiciale converter de jeux pour mp4 mp5
4 0.01% drivers compaq presario sg2000 -
4 0.01% définition cunnilinigus
4 0.01% définition de cunnilinigus
4 0.01% ebuddy 1.4.1 free download - alcatel ot v770
4 0.01% erro no messenger do yahoo 0xc150002
4 0.01% error: could not find zone 'c:\archivos de programa\kapitalsin\call of duty 4\zone\spanish\code_post_gfx.ff'
4 0.01% fiche technique demo starsat 7100 usb
4 0.01% formfacil com master x aqw free
4 0.01% free callofdutymodernwarfare 2an dps3*pro*tm
4 0.01% fricons thor
4 0.01% g3 lanuch realfligt ingyen letőlthető
4 0.01% g6 team forum ultima actualizacion de receptor viewsat platinum ultra lite
4 0.01% gamerztools trainer gbs v8.0.0
4 0.01% gamezer.com hac rayting yukselt
4 0.01% hacker para jugar gamezer billiards desde taringa
4 0.01% helios-framework-v3.0 level 3 left4dead download free
4 0.01% hl=es
4 0.01% hp g60 darivers تحميل
4 0.01%
4 0.01%
4 0.01%
4 0.01%
4 0.01%
4 0.01%
4 0.01%
4 0.01% ne/
4 0.01% huongdanchoipokemon
4 0.01% ingyenes zen%c3%a9k
4 0.01% je cherche code parental universel de dreambox dm500
4 0.01% je telecharje winap gratuit
4 0.01% je veux le code de weather docklet du maroc
4 0.01% jenna haze 720p rar crc failed in the encrepted file wrong password
4 0.01% juegos de dragon ball z gt finiworld
4 0.01% juegosdelombrearaña
4 0.01% kocsis orsi pack pxe
4 0.01% l2walker gracia ct 2.2 pobierz
4 0.01% la chanson de abdl malak slam
4 0.01% lancer google earth pro pc evo n610c
4 0.01% las doctoras de brazzers.com atacan de nuevo
4 0.01% lifeframe windows 7 64 bit f3j camera driver
4 0.01% location de degisement geneve
4 0.01% macetes como clonar boneca de outro pix cosmopax
4 0.01% marok4com
4 0.01% marsiglia francia iotub
4 0.01% meu celular w500i da sony ericsson não quer mais ligar q eu fazo
4 0.01% mode tricher guerre des étoile galactic battlegrounds
4 0.01% msi n1996 eredeti tűzfal ingyen letölthető
4 0.01% nao foi encontrado msncore.ddl
4 0.01% naruto shippuuden ultimate ninja 4 pcsx2 config saver sorunu veriyo ne yapmalıyım
4 0.01% nexuizfredox
4 0.01% nofrag.com
4 0.01% passwords for yo-gi-oh 5ds stardust accelerator
4 0.01% real cut 2d 6.5 ingyen letoltese
4 0.01% realet revolution 5.0.5
4 0.01% regarder aflems jetli gratuit
4 0.01% scaricare satellite receiver s3.1 common interface computer gratis tunisiasat.com
4 0.01% set realmlist wow-mundial.serveblog.net
4 0.01% seveur de donnée non disponible à orangemali et ip gratuit
4 0.01% site:stats.nofrag.com .
4 0.01% smart drawt 20008 crack
4 0.01% sofware para mp4 philips gratis sa60-2-gb-fl
4 0.01% sondageclient.toyota.ca
4 0.01% star.trek.ts.xvid.dublado.by.ikki fenix.up.darky.www.therebels.biz.av
4 0.01% stats.nofrag.com/nonerd/ref_200909.html
4 0.01% store2 arenabg open xxx full movies euro anal teens cd1
4 0.01% taxa de atq ad/1/2/3 priston e boa ou ruim
4 0.01% telecharger artlantisstudio 1.2.0.0 gratuite
4 0.01% telecharger drôles de dames pour s60v2
4 0.01% torrentbits filmek magyar ingyenes letoltes luis de funes
4 0.01% total recall s60 call recorder 3.1.0 torrents
4 0.01% trapasas etruques 7sins ps2
4 0.01% trident cep telefonu mb 880t nasıl flas pleyır indirilir
4 0.01% ver d0 desenho patati gratis o filme
4 0.01% video de cléopâtre de eurotic tv astra
4 0.01% warlord public hook the application failed to initialize properly (0xc0000135). repair
4 0.01% worfeistein: enemy territory
4 0.01% www klipove na teletoon2
4 0.01%
4 0.01%
4 0.01% www.nazi sexperimente fre clip porn
4 0.01% vd
4 0.01% xnxx sida1
4 0.01% youtipe pipe sexe
4 0.01% zuma tuble bugs besplatno skidanje
4 0.01% Драйвер для winpal combo pad v.1.00
4 0.01% коди до counter-streik.1.6.v35.2008.pc
4 0.01% ошибка плагина nvidia dds 0x80040706
4 0.01% скачат бесплатно pc3 gta4 kodlari
4 0.01% скачать безплатно теми на телефон sony ericsson k530i need for speed undegraund - get low
4 0.01% برامج جديدة للعبة conquer2.0 riding clan
4 0.01% برنامج تعريف الصوت dell soundmax cadenza
4 0.01% برنامج سبوت كاست myegy 3.2.4
4 0.01% تحميل creador de duelpass
4 0.01% تحميل برنامج addictive drums 1.1.1 برابط واحد
4 0.01% تحميل كتب remplacement de piece electronique
4 0.01% تحميل لعبة medal of honor débarquement allié cd1 cd2
4 0.01% تعريف 64 بت usb20 pc camera 268 من شركة sonix
4 0.01% تعريف فيجا optiplex gx520
4 0.01% เกมhoewheels
3 0.01% 0gzifstream@@qae@pbdh@z download
3 0.01% 0xc0150002 solucion dark void
3 0.01% 18 wos pttm buses chile v játék letöltése
3 0.01% 18/1 priston imposible conectar al servidor
3 0.01% 1804 patch 0xc000012d hatası
3 0.01% 3d lilium analyzer para el bully
3 0.01% @wmc.co.kr
3 0.01% a6000 instala camera bison gratis
3 0.01% activacion de sonda de temperatura c4 picasso myway
3 0.01% adibou je lis je calcule 6 - 7 ans مفتاح
3 0.01% adibou msinfo32.exe
3 0.01% aflam4ever.blogspot.com
3 0.01% ail maniax non censuré
3 0.01% akon dangerous dilando
3 0.01% akon freedom mp3 mp4 hudba skačaty zdarma
3 0.01% algerie mozik balo
3 0.01% anmilxxx
3 0.01% anti démarrage clio 1.9 24c04
3 0.01% appname: r6vegas_game.exe appver: 0.0.0.0 modname: r6vegas_game.exe
3 0.01% ati driver n1996 ingyenes letoltes
3 0.01% au démarrage sur asus p4p800-e no drive attached to fasttrak the bios is not installed
3 0.01% autorun typhoon 4 trail prise en charge langue arabe
3 0.01% ayuda con halo ce no puedo jugar problemas con la targeta de video s3 prosavageddr
3 0.01% baixaki audio excel cmi8338 4ch so
3 0.01% baixaki gfx/palette.imp counter strike
3 0.01% baixaki
3 0.01% baixaqui charles 3.3.1 session 1
3 0.01% baixar pacote de driver gratis km400 graphics adapter baixaki
3 0.01% baixar save game yugioh forbbiden memories no formato mcr para epsxe 1.6.0
3 0.01% baixarcapa mortal kombat 2 com download
3 0.01% batch jazira spore hd de nilesat 201 net 01
3 0.01% bazi paintball baraye p990
3 0.01% bedava feuille caillou oyunu indir
3 0.01% belgique zawage hotmail.fr
3 0.01% bitefight h4ck.110mb
3 0.01% blad instalacji bf 2142 bf2cdkeycheck.exe
3 0.01% blog houda pipe chatte cue
3 0.01% bluesky v0.3.15 anleitung
3 0.01% boyssxs
3 0.01% budoc 2009 para pc taringa
3 0.01% burnout configtool генератор ключей
3 0.01% c
3 0.01% cabalrider thai 1.1.2
3 0.01% call of juarez bound in blood على الميديا فير
3 0.01% call off duty modern warfware 2 gecrackt spielen
3 0.01% camera exploratrice au cours d/un examen medical sous forme de gellule a avaler
Back to top
unknown
Fri Jul 02 2010, 11:01AM
unknown
Registered Member #7419
Joined: Wed Apr 28 2010, 07:37AM

Location: Baltic
Posts: 43
TWEAK: BFHQ tweak - If player has never played with vehicle it will show blank image as him favorite vehicle in BFHQ (like in EA rankings).
FIX: getplayerinfo.aspx

change:
at line 347
// Favorite vehicle
$query = "SELECT time0, time1, time2, time3, time4, time5, time6 FROM vehicles WHERE id = {$pid}";
$result = mysql_query($query) or die(mysql_error());
$row2 = mysql_fetch_array($result);
arsort($row2);
if (is_numeric(key($row2))) {$favv = key($row2);}
else {next($row2); $favv = key($row2);}





to:
// Favorite vehicle
$query = "SELECT time0, time1, time2, time3, time4, time5, time6 FROM vehicles WHERE id = {$pid}";
$result = mysql_query($query) or die(mysql_error());
$row2 = mysql_fetch_array($result);
if(empty($row2['time0']) && empty($row2['time1']) && empty($row2['time2']) && empty($row2['time3']) && empty($row2['time4']) && empty($row2['time5']) && empty($row2['time6'])){
$favv = '-1';
} else {
arsort($row2);
if (is_numeric(key($row2))) {$favv = key($row2);}
else {next($row2); $favv = key($row2);}
}


[ Edited Fri Jul 02 2010, 09:05PM ]
Back to top
Go to page   <<        >>   

Jump:     Back to top


Syndicate this thread: rss 0.92 Syndicate this thread: rss 2.0 Syndicate this thread: RDF
Powered by e107 Forum System
Render time: 1.7909 sec, 0.0227 of that for queries.