Quote:
	
	
		| Make all mobs (not) immune to stun | 
	
 Again, an example. To remove UNSTUNABLE from all NPCs:
	Code:
	UPDATE npc_types SET npcspecialattks = REPLACE(npcspecialattks, 'N', '');
 Remember, this will also catch the pets. If you want pets to stay unstunable, you would add "WHERE id >= 1000"