View Single Post
  #14  
Old 05-11-2004, 06:28 PM
gandar
Sarnak
 
Join Date: Apr 2004
Location: West Sacramento, CA
Posts: 84
Default

Hello!

Try this:

On (or about) line 2417 in zone::mob.cpp ->

Change:
Code:
else if(_NPC(mob2))				// client to npc
	{
		return false;
	}
To:
Code:
else if(_NPC(mob2))				// client to npc
	{
		return true;
	}
That's where I changed it on my server - worked perfectly. My Soulbinder now binds your soul or heals on command...

Good Luck!

~Gandar
Reply With Quote