According to this :
http://forums.alliedmods.net/showthread.php?t=88792
This is the right mode to script , right : ?
Code:
new Bot[ 33 ];
new Connected[ 33 ];
new Alive[ 33 ];
public plugin_init( )
{
register_plugin( " " , " " , " " );
RegisterHam( Ham_Spawn , "player" , "fw_PlayerSpawn" , 1 );
}
public client_putinserver( iPlayer )
{
if( is_user_bot( iPlayer ) )
{
Bot[ iPlayer ] = true;
}
else if( is_user_connected( iPlayer ) )
{
Connected[ iPlayer ] = true;
}
}
public fw_PlayerSpawn( iPlayer )
{
if( is_user_alive( iPlayer ) )
{
Alive[ iPlayer ] = true;
}
}
I just want to know ...
__________________