Code:
Par // Add some default activities
{
$MinLevel = $MyLevel-20;
$MaxLevel = $MyLevel+1;
Rest
{
$Prio = 0;
}
Defend // Attack back attackers
{
$Prio = 0;
}
Danger
{
$Prio = 1;
$Distance = 10;
}
Harvest
{
$Prio = 2;
$Types = ["Herb"]; // Only harvest herbs/mines
$Distance = 35; // Only run 35 yards from hotspot to harvest
$HostileDistance = 20;
$UseMount = true;
}
Loot // Loot corpses
{
$Prio = 2;
}
If
{
$Prio = 3;
$cond = $MyLevel >= 58 && $MyLevel <= 70;
rep
{
Seq
{
QuestPickup
{
$Name = "Frostsaber Provisions";
$ID = "4970";
$UseMount = true;
$NPC = "Rivern Frostwind";
$Location = [8066.94,-3865, 763.055];
}
QuestGoal
{
$Name = "Frostsaber Provisions";
$ID = "4970";
Seq
{
Until
{
$cond = $ItemCount{"Shardtooth Meat"} >= 5;
Par
{
Pull
{
$Prio = 4;
$Names = ["Elder Shardtooth","Rabid Shardtooth","Shardtooth Bear","Shardtooth Mauler"];
}
Hotspots
{
$Prio = 5;
$UseMount = true;
$Locations = [[7014.5, -4897.9, 695.8],
[7139.9, -4867.7, 697.6],
[7252.4, -4798.2, 685.7],
[7415.4, -4599.5, 603.1],
[7294.3, -4536.6, 586.8],
[7409.8, -4351.9, 673.9],
[7507.1, -4275.4, 649.2]];
}
}
}
Until
{
$cond = $ItemCount{"Chillwind Meat"} >= 5;
Par
{
Pull
{
$Prio = 4;
$Names = ["Chillwind Chimaera","Chillwind Ravager","Fledgling Chillwind"];
}
Hotspots
{
$Prio = 5;
$UseMount = true;
$Locations = [[7014.5, -4897.9, 695.8],
[7139.9, -4867.7, 697.6],
[7252.4, -4798.2, 685.7],
[7415.4, -4599.5, 603.1],
[7294.3, -4536.6, 586.8],
[7409.8, -4351.9, 673.9],
[7507.1, -4275.4, 649.2]];
}
}
}
}
}
QuestHandin
{
$Name = "Frostsaber Provisions";
$ID = "4970";
$NPC = "Rivern Frostwind";
$Location = [8067.48,-3862.44,763.086];
$Repeatable = true;
$UseMount = true;
}
}
}
}
}