mredge73
Member
Ok
I am sure it is in here somewhere but I give up searching.
Is there a command or an easy way to see if an item is capable of being pulverized?
for example:
	
	
	
		
				
			I am sure it is in here somewhere but I give up searching.
Is there a command or an easy way to see if an item is capable of being pulverized?
for example:
		Code:
	
	int [item] Smash;
//fill smash with random items
foreach i in Smash
{
if ( !(i can be smashed)) //this is where I need something
remove i;
}
//pulverize everything in smash 
	 
 
		