Quote:
Originally Posted by KuvZz
Hello guys. Is it possible select all booleans?
For example
PHP Code:
new bool: b_1[33] new bool: b_2[33] new bool: b_3[33] //Anywhere... b_(all_of_them)[id] = true
|
To set 3 arrays like you have above using a bit-field:
PHP Code:
new b_all[ 3 ];
arrayset( b_all , -1 , sizeof( b_all ) );
__________________