created = time(); if (!$rpcInfos) { return; } $this->login = $rpcInfos['Login']; $this->isFakePlayer = (stripos($this->login, '*') !== false); $this->nickname = $rpcInfos['NickName']; $this->pid = $rpcInfos['PlayerId']; $this->teamId = $rpcInfos['TeamId']; $this->ipFull = $rpcInfos['IPAddress']; $this->ip = preg_replace('/:\d+/', '', $this->ipFull); $this->isSpectator = $rpcInfos['IsSpectator']; $this->isOfficial = $rpcInfos['IsInOfficialMode']; $this->teamName = $rpcInfos['LadderStats']['TeamName']; $this->zone = substr($rpcInfos['Path'], 6); $zones = explode('|', $rpcInfos['Path']); if (isset($zones[1])) { if (isset($zones[2])) { $this->continent = $zones[1]; $this->nation = $zones[2]; } else { $this->nation = $zones[1]; } } $this->ladderRank = $rpcInfos['LadderStats']['PlayerRankings'][0]['Ranking']; $this->ladderScore = round($rpcInfos['LadderStats']['PlayerRankings'][0]['Score'], 2); $this->clientVersion = $rpcInfos['ClientVersion']; $this->language = $rpcInfos['Language']; $this->avatar = $rpcInfos['Avatar']['FileName']; } } ?>