18.11.2014, 06:27
Hi.
Link: mp.com/wiki/Query_Mechanism#SA-MP_Packets_in_the_real_world
Link 2:https://sampforum.blast.hk/showthread.php?tid=104299
How to get players with more than 100 online?
Code class "PHP"
Receives only 100 players....
Link: mp.com/wiki/Query_Mechanism#SA-MP_Packets_in_the_real_world
Link 2:https://sampforum.blast.hk/showthread.php?tid=104299
How to get players with more than 100 online?
Code class "PHP"
PHP код:
public function getBasicPlayers() {
@fwrite($this->sock, $this->assemblePacket("c"));
fread($this->sock, 11);
$playerCount = ord(fread($this->sock, 2));
$players = array();
if($playerCount > 0) {
for($i = 0; $i < $playerCount; ++$i) {
$strLen = ord(fread($this->sock, 1));
$players[$i] = array
(
"name" => (string) fread($this->sock, $strLen),
"score" => (integer) $this->toInt(fread($this->sock, 4)),
);
}
}
return $players;
}