What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

max session??

romangoddess

New Member
Joined
Feb 2, 2016
Messages
4
Reaction score
0
Is there a way to fix the max session message from honorbuddy? It's not letting me log on and use it either cause of this error.
 
Log in BuddyAuth and kill the sessions manually.
Link to BuddyAuth in the top of this page.
 
Help

[Alisha Engine 14.097]: Settings File <JSettingsCommon> v.0.0 -> Creating Settings Directory
[Alisha Engine 14.132]: Settings File <JSettingsCommon> v.0.0 -> Created
[Alisha Engine 14.162]: Settings File <JSettingsCommon> v.0.0 -> Initialized
[Alisha Engine 14.194]: Settings File <JSettingsCommon> v.0.0 -> Version Migrate 0.0->2.5786.1.195
[Alisha Engine 14.242]: Settings File <JSettingsCommon> v.2.5786.1.195 -> Saved
Streamed store routines:
* get_prefix [ Premium ] 4.0.0.0
[Alisha Engine 14.562]: Settings File <JSettingsCommon> v.2.5786.1.195 -> Loaded
[Alisha Engine 14.593]: Settings File <JSettingsCommon> v.2.5786.1.195 -> Initialized
[@ProfitMaster 14.660]: Settings File <SettingsCommonProfiler> v.0.0 -> Creating Settings Directory
[@ProfitMaster 14.694]: Settings File <SettingsCommonProfiler> v.0.0 -> Created
[@ProfitMaster 14.732]: Settings File <SettingsCommonProfiler> v.0.0 -> Initialized
[@ProfitMaster 14.761]: Settings File <SettingsCommonProfiler> v.0.0 -> Version Migrate 0.0->3.5.1.314
[@ProfitMaster 14.797]: Settings File <SettingsCommonProfiler> v.3.5.1.314 -> Saved
Streamed store plugins
* @ProfitMaster
New bot added!: ArchaeologyBuddy
New bot added!: BGBuddy
New bot added!: Dungeonbuddy
New bot added!: Gatherbuddy2
New bot added!: ProfessionBuddy
New bot added!: Grind Bot
New bot added!: Questing
New bot added!: Mixed Mode
New bot added!: Party Bot
New bot added!: [BETA] GrindBuddy
New bot added!: Garrisonbuddy
New bot added!: Combat Bot
New bot added!: FishingBuddy
New bot added!: Raid Bot
ItemForAura - Questhelper - Version 2.0 Loaded.
[Singular] Settings: default Allow Kiting to true since Mage
[Singular] Context: using Normal (SOLO) behaviors since not in group
[Singular] Starting Singular v4.0.0.4791
[Singular] Installation: integrity verified for 4.0.0.4791
[Singular] Determining talent spec.
[Singular] Current spec is Frost
[Singular] Context: using Normal (SOLO) behaviors since not in group
[Singular] Your Level 14 Human Frost Mage Build is
[Singular] ... running the Questing bot in Stormwind City
[Singular] ... Zone: Eastern Kingdoms using my SOLO Behaviors alone
[Singular] Pull More: enabled up to 3 mobs of type=[Quest]
[Singular] Initialization complete!
Installed plugins
@ProfitMaster - Disabled
Anti Drown - Disabled
BuddyControlPanel - Disabled
DrinkPotions - Disabled
Questhelper - ItemForAura - Disabled
Refreshment Detection - Enabled
Honorbuddy Startup Complete
Changing current profile to [A - Quest] EK 12-58 [Kick] ($Rev: 4661 $)
[KillUntilComplete-v2150(warning)] Attribute 'Name' is not a recognized attribute--ignoring it.
[Ref: "[A - Quest] EK 12-58 [Kick] ($Rev: 4661 $)" @line 6483]
[BasicVehicleBehaviour-v2022(warning)] *****
* THIS BEHAVIOR IS DEPRECATED, and will be retired on July 31th 2012.
* BasicVehicleBehavior adds _no_ _additonal_ _value_ over the VehicleMover behavior.
* Please update the profile to use the VehicleMover behavior.*****
[KillUntilComplete-v2150(warning)] Attribute 'Name' is not a recognized attribute--ignoring it.
[Ref: "[A - Quest] EK 12-58 [Kick] ($Rev: 4661 $)" @line 9113]
[KillUntilComplete-v2150(warning)] Attribute 'Name' is not a recognized attribute--ignoring it.
[Ref: "[A - Quest] EK 12-58 [Kick] ($Rev: 4661 $)" @line 9114]
26 compiler errors encountered in profile '[A - Quest] EK 12-58 [Kick] ($Rev: 4661 $)'
'CustomBehavior' xml element on line number 3844 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
async Task SellExtraConsumables()
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 4234 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 4796 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 5477 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337)
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 6155 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList()
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;

async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 6833 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);

extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 7407 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);

extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 8274 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 8966 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 9461 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 10214 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 10598 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
'CustomBehavior' xml element on line number 11098 has following errors with code:
IEnumerable<WoWItem> GetExtraConsumables()
{
uint foodCount = 0;
uint drinkCount = 0;
// Skip conjured and buff comsumables.
var extraConsumables = (from item in Me.BagItems
where item != null && item.ItemInfo != null
let isFood = Consumable.IsFood(item.ItemInfo)
let isDrink = Consumable.IsDrink(item.ItemInfo)
where (isFood || isDrink) && item.ItemInfo.SellPrice > 0 && item.Effects.Count == 1 && item.ItemInfo.RequiredLevel < Me.Level - 10
select item).ToList();
var extraPotions = Me.BagItems
.Where(c => c != null && c.IsValid && c.ItemInfo != null && c.ItemInfo.SellPrice > 0 && c.Effects.Count == 1
&& (c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Potion
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Elixir
|| c.ItemInfo.ConsumableClass == WoWItemConsumableClass.Flask)
&& c.ItemInfo.RequiredLevel < Me.Level - 20);
extraConsumables.AddRange(extraPotions);
return extraConsumables;
}
async Task SellExtraConsumables()
{
Logging.Write("Selling items in GetExtraConsumables()");
foreach (var item in GetExtraConsumables())
{
Logging.Write("Selling {0}.", item.Name);
item.UseContainerItem();
await Coroutine.Sleep(1337);
1) Type '__CompiledBatchClass__' already defines a member called 'GetExtraConsumables' with the same parameter types at offset 1
2) Type '__CompiledBatchClass__' already defines a member called 'SellExtraConsumables' with the same parameter types at offset 26
 
Back
Top