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

Dynamically modify profile in a Custom Class??

lofi

New Member
Joined
Jul 12, 2010
Messages
203
Reaction score
15
I am trying to force a vendor run after finding a certain unique item. The idea was to modify the MinFreeBagSlots variable in the current profile. I added the following to my Custom Class:

WoWItem uniqueItems = HaveItemCheck(_uniqueItemIds);
if (Equals(null, uniqueItems))
{
// Set the MinFreeBagSlots to 99 to force a Mailbox run
ProfileManager.CurrentProfile.MinFreeBagSlots = 99;
}

Unfortunately this did not work since the MinFreeBagSlots variable is read-only. I am wondering if anyone has discovered a way to dynamically trigger a Vendor/Mail run from a Custom Class.

If it is possible to modify the current profile from a custom class I think I could add vendoring with Traveler's Tundra Mammoth. Any help is appreciated. =)
 
Last edited:
I am trying to force a vendor run after finding a certain unique item. The idea was to modify the MinFreeBagSlots variable in the current profile. I added the following to my Custom Class:

WoWItem uniqueItems = HaveItemCheck(_uniqueItemIds);
if (Equals(null, uniqueItems))
{
// Set the MinFreeBagSlots to 99 to force a Mailbox run
ProfileManager.CurrentProfile.MinFreeBagSlots = 99;
}

Unfortunately this did not work since the MinFreeBagSlots variable is read-only. I am wondering if anyone has discovered a way to dynamically trigger a Vendor/Mail run from a Custom Class.

If it is possible to modify the current profile from a custom class I think I could add vendoring with Traveler's Tundra Mammoth. Any help is appreciated. =)
i think ive said before if i had a travelers tundra mammoth i would of made a plugin for it, but i dont and i dont think very many other people do ether.
 
Well thanks for the hint. I will look into plug-in development. I'm just getting started with HB but have c# experience. Back in Glider days I had written PPather task that used the mammoth to vendor. It was great for profiles in remote areas.

I just reactivated WoW in the past week after not playing for over a year. I must say that I am extremely pleased with Honor Buddy and the support by the community. Keep up the great work everyone!
 
Well thanks for the hint. I will look into plug-in development. I'm just getting started with HB but have c# experience. Back in Glider days I had written PPather task that used the mammoth to vendor. It was great for profiles in remote areas.

I just reactivated WoW in the past week after not playing for over a year. I must say that I am extremely pleased with Honor Buddy and the support by the community. Keep up the great work everyone!
the way that the api is, the world is pretty much your play ground, as long as you can code it.
 
Back
Top