Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
public client_putinserver(id)
{
SetFlag( isUserConnect, id );
}
#if AMXX_VERSION_NUM < 183
public client_disconnect(id)
#else
public client_disconnected(id)
#endif
{
ClearFlag( isUserConnect, id );
g_pingoverride[id] = -1
}
public fix_fake_pings()
{
static player
for (player = 1; player <= g_maxplayers; player++)
{
// Player not in game?
if (!CheckFlag( isUserConnect, player ))
continue;
WriteBytes(&bits, &bits_added, write_remaining)
{
// Keep looping if there are more bytes to write
while (bits_added >= 8)
{
// Write group of 8 bits
write_byte(bits & ((1 << 8) - 1))
// Remove bits we just sent by moving all bits to the right 8 times
bits = bits >> 8
bits_added -= 8
}