Quote:
Originally Posted by Megatr0n
That bit of code I can't find in that functions_conquest.php.
|
I didn't post the codes you had to find, this are the ones you need:
PHP Code:
while ($weapon = $vbulletin->db->fetch_array($weapons))
{
for ($i = 0; $i < $weapon[stockCount]; $i++)
{
array_push($count, $weapon[wPower]);
}
}
and
PHP Code:
while ($armour = $vbulletin->db->fetch_array($armours))
{
for ($i = 0; $i < $armour[stockCount]; $i++)
{
array_push($count, $armour[aPower]);
}
}