Aura.Channel.World.Entities.NPC.ModifyFavor C# (CSharp) Method

ModifyFavor() public method

Modifies favor of the NPC towards the other creature.
public ModifyFavor ( Creature other, int value ) : int
other Creature
value int
return int
		public int ModifyFavor(Creature other, int value)
		{
			return this.SetFavor(other, this.GetFavor(other) + value);
		}