View Single Post
  #58  
Old 05-11-2010, 07:53 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,490
Default

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"
Reply With Quote