Hi ty for your help now i see new problem Gets the stored informations about a player the getDatabaseInformation don't save to database the ip of players
.. daemon\core\player.php
after few test as all we know without pbguid you can not catch multiple acc and edited again the getDatabaseInformation 'playerPBGUID' => $this->getPBGuid(), and `playerPBGUID` varchar(36) COLLATE utf8_bin NOT NULL, to add pb guid to db but no results the same as ip NULL
Code
$insert_array = array(
'playerGUID' => $this->getGuid(),
'firstActivityDate' => time(),
'lastActivityDate' => time(),
'firstActivityIP' => $this->getIP(),
'playerIP' => $this->getIP(),
'connections' => 1,
'onlineTime' => 0,
'online' => 1,
'punishmentScore' => 0
);
for both no result
'firstActivityIP' => $this->getIP(),
'playerIP' => $this->getIP(),
$insert_array = array(
'playerGUID' => $this->getGuid(),
'playerPBGUID' => $this->getPBGuid(),
'firstActivityDate' => time(),
'lastActivityDate' => time(),
'firstActivityIP' => $this->getIP(),
'playerIP' => $this->getIP(),
'connections' => 1,
'onlineTime' => 0,
'online' => 1,
'punishmentScore' => 0
);
Alles anzeigen
any help plz