static List<WoWPoint> EasternPlagueLands = new List<WoWPoint>
{
new WoWPoint(3034.367,-2772.907,100.4177),
new WoWPoint(2998.338,-2758.63,98.95406),
new WoWPoint(2981.208,-2730.825,99.7354),
new WoWPoint(2947.743,-2707.363,96.5449),
new WoWPoint(2932.005,-2667.439,95.67075),
new WoWPoint(2910.932,-2622.709,91.46061),
new WoWPoint(2855.809,-2593.433,88.04718),
new WoWPoint(2818.919,-2547.239,80.04765),
new WoWPoint(2807.87,-2493.658,84.01855),
new WoWPoint(2755.812,-2484.275,75.62215),
new WoWPoint(2734.178,-2461.294,70.99499)
};
public static List<WoWPoint> profile
{
get
{
CharacterSettings.Instance.FindVendorsAutomatically = true;
CharacterSettings.Instance.LearnFlightPaths = false;
switch (StyxWoW.Me.ZoneId)
{
case 33:
return Stranglethorn;
break;
case 139:
return EasternPlagueLands;
break;
case 3537:
return BoreanischeTundra;
break;
default:
return null;
break;
}
}
}
static public void Init(System.EventArgs args)
{
runTimer.Start();
if (mounts.Count == 0 && TreeRoot.IsRunning)
{
Logging.Write(System.Drawing.Color.Red, "{0} - Can not find any flying mount..", TimeNow);
TreeRoot.Stop();
}
//slog("ZONE: " + StyxWoW.Me.ZoneId + " / " + StyxWoW.Me.ZoneText);
switch (StyxWoW.Me.ZoneId)
{
case 33:
case 139:
case 3537:
break;
default:
Logging.Write(System.Drawing.Color.Red, "{0} - You are not in the Borean Tundra or Northern Stranglethorn!", TimeNow);
Logging.Write(System.Drawing.Color.Red, "{0} - {1}", StyxWoW.Me.ZoneId, StyxWoW.Me.ZoneText);
TreeRoot.Stop();
break;
}
}
static List<uint> critterID = new List<uint>
{
15476,15475,45439,14881,28440,2914,3300,4953
};