Latest Matches1

modify('+1 hours'); $formattedDate = $date->format('m-d H:i:s'); echo ""; } ?>
Player Name Match Date Mode Type Map Kills Damage Place
" . $match['playername'] . " " . $formattedDate . " " . $match['gameMode'] . " " . $match['matchType'] . " " . (isset($mapNames[$match['mapName']]) ? $mapNames[$match['mapName']] : $match['mapName']) . " " . $match['stats']['kills'] . " " . number_format($match['stats']['damageDealt'], 0, '.', '') . " " . $match['stats']['winPlace'] . "

Clan Info

"; echo "AttributeValueRank(FPP SQUAD)Points"; foreach ($playerRanks as $rank) { $playername = $rank['name']; if (isset($rank['stat']['data']['attributes']['rankedGameModeStats']['squad-fpp'])) { $tier = $rank['stat']['data']['attributes']['rankedGameModeStats']['squad-fpp']['currentTier']['tier']; $subTier = $rank['stat']['data']['attributes']['rankedGameModeStats']['squad-fpp']['currentTier']['subTier']; $image = "./images/ranks/" . $tier . "-" . $subTier . ".webp"; $rankPoint = htmlspecialchars($rank['stat']['data']['attributes']['rankedGameModeStats']['squad-fpp']['currentRankPoint']); echo "name" . htmlspecialchars($playername) . "$tier" . $rankPoint . ""; } else { echo "name" . htmlspecialchars($playername) . "$tier"; } } foreach ($clan as $key => $value) { if ($key == 'updated') { continue; } echo "" . htmlspecialchars($key) . "" . htmlspecialchars($value) . ""; } echo ""; } else { echo "

No clan attributes available

"; } } else { echo "

Clan info file missing

"; } ?>