Hey guys, just recently started Gliding and have been working on a BM hunter. Started messing with making my own task file today, and have been using it to level all day getting about 18k XP/hour. So I thought I'd share my first attempt with everyone.
It only kills the ogres, so no skinning. It does mine the 3 nodes that are constantly respawning in the cave nearby. It will also buy food and water, sell whites and grays from your bag, repair, and buy arrows (you can comment that part out if it doesnt apply).
Code:
// Zone: Badlands
// Levels: 43-46
// Author: likwid818
// Tested on: 45-46 BM hunter with Glider Elite 1.6.2, Ppather 1.0.3d, and OoberXHunter R3.
// Date: 7-11-08
Par
{
// ******** Tweak these to your preference ********
$VarFood = "Roasted Quail"; // change to "Cured Ham Steak" if lower than 45
$VarWater = "Morning Glory Dew"; // change to "Moonberry Juice" if lower than 45
$VarMinDur = 0.2; // repair at 20%
$VarMinFreeBagSlots = 3; // 3 min bag slots
$VarIsSkinner = false; // false since we're only killing humanoids
$VarIsMiner = true; // mineral nodes in the cave are nice for miners
$VarRanged = "Jagged Arrow";
Defend
{
$Prio = 0;
}
Rest
{
$Prio = 0;
}
Danger
{
$Prio = 1;
$DangerDistance = 30;
}
Loot
{
$Prio = 2;
$Skin = $VarIsSkinner;
}
Harvest
{
$Prio = 2;
$Types = ["Mine", "Chest"]; // there's often Solid Chests's around the area
$Distance = 50;
$Times = 10;
}
Buy
{
$Prio = 2;
$Items = [[$VarFood, 15, 100], [$VarWater, 15, 100]];
$NPC = "Innkeeper Shul'kar";
$Location = [-6651.42, -2151.24, 245.35];
}
// should probably take this part out if you aren't a hunter
Buy
{
$Prio = 2;
$Items = [[$VarRanged, 200, 3200]];
$NPC = "Grawl";
$Location = [-6651.7, -2156.13, 245.35];
}
Vendor
{
$Prio = 2;
$NPC = "Sranda";
$Location = [-6673.18, -2151.32, 244.14];
$Protected = ["Jagged Arrow", "hearthstone", "bandage", "ore", "cloth", "potion", "skinning", "mining", "leather", "salt", "stone", $VarFood, $VarWater];
$SellGray = True;
$SellWhite = True;
$SellGreen = False;
$MinDurability = $VarMinDur;
$MinFreeBagSlots = $VarMinFreeBagSlots;
}
Pull
{
$Prio = 3;
$MinLevel = 39;
$MaxLevel = 45;
//$Factions = [45]; // for some reason, $Names works better than $Factions here?
$Names = ["Dustbelcher Mauler", "Dustbelcher Wyrmhunter", "Dustbelcher Shaman", "Dustbelcher Ogre Mage", "Dustbelcher Lord"];
}
Hotspots
{
$Prio = 4;
$Order = "Random";
$Locations = [
[-7123.37, -2349.15, 241.12],
[-7193.67, -2371.3, 241.66],
[-7280.1, -2281.25, 244.6],
[-7365.89, -2321.22, 238.94],
[-7474.98, -2264.33, 232.29]
];
}
} If you try this out, please be sure to leave feedback. Whether you liked it or not, what worked for you and what didn't.
Thanks!