コード例 #1
0
ファイル: HuntHelper.cs プロジェクト: nt153133/LlamaLibrary
 public DailyHuntOrder(MobHuntOrder huntOrder, MobHuntTarget huntTarget, int orderTypeIndex, byte mobIndex, StoredHuntLocation location) : base(huntOrder, huntTarget, orderTypeIndex, mobIndex, location, MobHuntType.Daily)
 {
 }
コード例 #2
0
ファイル: HuntHelper.cs プロジェクト: nt153133/LlamaLibrary
 public HuntOrder(MobHuntOrder huntOrder, MobHuntTarget huntTarget, int orderTypeIndex, byte mobIndex, StoredHuntLocation location, MobHuntType type)
 {
     MobIndex       = mobIndex;
     OrderTypeIndex = orderTypeIndex;
     HuntTarget     = huntOrder.MobHuntTarget;
     NpcID          = (uint)huntTarget.BNpcName;
     KillsNeeded    = huntOrder.NeededKills;
     Location       = location.Location;
     MapId          = location.Map;
     Fate           = huntTarget.Fate;
     Type           = type;
 }