View Single Post
  #5  
Old 11-20-2004, 04:33 PM
Dvinn
Fire Beetle
 
Join Date: Nov 2004
Location: The Emerald City, Oz
Posts: 20
Default

Glad people don't hate it .

Here's a little something else, though not something EQLive-like. This'll make your PoDs able to walk from his spawn spot should the need arise (i.e. to chase pesky players :P).

Code:
UPDATE npc_types SET walkspeed=0.67 WHERE name="Priest_of_Discord";
UPDATE npc_types SET runspeed=1.25 WHERE name="Priest_of_Discord";
If you decide you don't like that, this'll undo it:

Code:
UPDATE npc_types SET walkspeed=0 WHERE name="Priest_of_Discord";
UPDATE npc_types SET runspeed=0 WHERE name="Priest_of_Discord";
Reply With Quote