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";