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. =)
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: