Kinda offtopic:
You could get down to one array by using the bits of the array entries for the properties.
PHP Code:
#define IS_GLOWING (1<<0)
//...
if(properties[deagle1] & IS_GLOWING)
{
// ...
}
if( /*...*/ )
{
//...
}
limited to 32 properties.
__________________