Aura.Channel.World.Entities.NPC.SetFavor C# (CSharp) Метод

SetFavor() публичный Метод

Sets favor of the NPC towards the other creature.
public SetFavor ( Creature other, int value ) : int
other Creature
value int
Результат int
		public int SetFavor(Creature other, int value)
		{
			other.Vars.Perm["npc_favor_" + this.Name] = value;
			other.Vars.Perm["npc_favor_change_" + this.Name] = DateTime.Now;

			return value;
		}