Aura.Channel.World.Entities.Creatures.CreatureQuests.SetPtjTrackRecord C# (CSharp) Method

SetPtjTrackRecord() public method

Sets track record, changing success, done, and last change.
public SetPtjTrackRecord ( PtjType type, int done, int success ) : void
type PtjType
done int
success int
return void
		public void SetPtjTrackRecord(PtjType type, int done, int success)
		{
			var record = this.GetPtjTrackRecord(type);

			record.Done = done;
			record.Success = success;
			record.LastChange = DateTime.Now;

			this.PtjTrackRecordChanged.Raise(_creature, record);
		}