Thread: Running mobs??
View Single Post
  #7  
Old 02-13-2008, 01:29 PM
Congdar
Developer
 
Join Date: Jul 2007
Location: my own little world
Posts: 751
Default

Try this, I've used 999 but don't use that number, use one that seems right for your npc.

update npc_types set npc_spells_id=999 where name='My_Running_Mob';
insert into npc_spells (id, name, parent_list) values (999, 'Cast_SoW', 0);
insert into npc_spells_entries (npc_spells_id, spellid, type, minlevel, maxlevel, manacost, recast_delay, priority) values (999, 278, 8, 50, -1, -1, 0);

Your npc should spawn, cast Spirit of Wolf on itself, and Run along the patrolling grid.
Reply With Quote