Hi i wanted to know, how can i save an index for a client, with bitsums
PHP Code:
new __int_Entity[33];
public CreateEntity( Client )
{
__int_Entity[Client] = create_entity( "env_sprite" );
}
public RemoveEntity( Client )
{
if(is_valid_ent(__int_Entity[Client]))
{
entity_set_int( __int_Entity[Client], EV_INT_flags, entity_get_int( __int_Entity[Client], EV_INT_flags ) | FL_KILLME );
}
__int_Entity[Client] = 0;
}