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

Mr.GearBuyer - Mr.HonorCap2 - A Plugin that Buys Gear with Honor and Justice Points.

Status
Not open for further replies.
Please could someone sort out these pathing issues on alliance, seems hordes working fine but anyone who plays ally is screwed.
Im sure it wouldnt take too long i would do it myself if i knew how to.

thanks


Doesnt look like that's going to happen. This plugin seems pretty dead. For alliance at least.
 
after my bot bought 1 item from the list, he adds on the first spott "honor points" and dont buy any more, if i manual delete this, he conitnued to the next and adds honor points again at the top. whats wrong?
 
The pathing issue is a coreproblem which codename cant fix himself unfortunately.
 
Gestern ein Bug gehabt. Mein Mage hat keine Items gekauft, er stand noch an der selben stelle wie als ich wegging mit 4000 Punkten allerdings, hat bei den anderen Chars super geklappt, weis nicht woran es lag.

Horde 85 Mage, schade, werde noch mal dr?ber gucken und evtl den Fehler reporten wenn ich ihn finde.
 
there are 2 diffrent problems going on, heres whats up.
1. pathing issues. theres not much i can do to fix that on my own, since i relies on built in Honorbuddy functions.

and

2. issues where its failing to fetch the items from the vender with
Code:
[13:56:15:336] [Mr.GearBuyer-DEBUG]: Vender item not usable, Skipping. [Магический знак изощренного интеллекта]
in the debug log. to fix issue 2, i need information from people, Client Language, Class, ect, but so far there hasnt been a pattern, and without a pattern its hard to track down.
 
Gestern ein Bug gehabt. Mein Mage hat keine Items gekauft, er stand noch an der selben stelle wie als ich wegging mit 4000 Punkten allerdings, hat bei den anderen Chars super geklappt, weis nicht woran es lag.

Horde 85 Mage, schade, werde noch mal dr?ber gucken und evtl den Fehler reporten wenn ich ihn finde.

You tryed to buy a PVE Item? If so i got the same Issue ... If you put first the PVE Items, where the Toon has to exchange the BG points into PVE Points (dont know the Names at the moment) it doesnt work. Got this on two other Chars too, Toon hit 4000 BG Point but doesnt exchange into the other Currency to buy the PVE items. When you go to the Vendor to exchange and press one time the button to get the Pve point, the Tool works again perfect.
Its just the first time to go to exchange the point that doesnt work.
 
Gestern ein Bug gehabt. Mein Mage hat keine Items gekauft, er stand noch an der selben stelle wie als ich wegging mit 4000 Punkten allerdings, hat bei den anderen Chars super geklappt, weis nicht woran es lag.

Horde 85 Mage, schade, werde noch mal dr?ber gucken und evtl den Fehler reporten wenn ich ihn finde.

Wie Gamma schon sagte, je mehr Infos desto besser, Klasse, Rasse, Clientsprache, Logfile .
 
Englische Clientsprache, Logfile hab ich leider nicht mehr. Klasse ist Mage wie oben beschrieben, level 85, Troll.

Habe PVP EQ kaufen wollen um die Itemstufe zu pushen. Das einzige was unterschiedlich war zu sonst, ich habe erst den ruthless Gladiator Troll ge'fetched und die Item-Liste erstellt und im anschlu? den Cataclysmic Gladiator's Vendor ge'fetched um f?r das Conquest Cap von 1650 die 403 Handschuhe zu kaufen, ganz unten in der Liste.


Lag es eventuell daran, dass ich 2 verschiedene Vendoren hatte und als letztes den Cataclysmic Gladiator Vendor ge'fetched habe, obwohl die Liste mit dem Ruthless Vendor anfing. Stand btw auch nicht in der Halle selber, aber als ich heim kam stand er an der gleichen Position.
 
after my bot bought 1 item from the list, he adds on the first spott "honor points" and dont buy any more, if i manual delete this, he conitnued to the next and adds honor points again at the top. whats wrong?

Ah auf deutsch gehts also auch :)

Ich hab das Problem, dass mein Bot nur das 1 Item eigenst?ndig kauft. Nach dem ersten Kauf, f?gt er in die Shopping Liste automatisch "honor points" an die erste Position ein. Wenn ich das l?sche oder ganz runter setzte , geht wieder das n?chste Item, danach setzt er aber wieder Honor Points ein.
Hab nix ge?ndert von den Einstellungen.

Allianz, Mage , Sturmwind, Englischer Client Aewgwynn
 
Ich spreche Deutsch, aber der Pluginautor nicht, insofern solltet ihr m?glichst englisch nutzen, so ihr da halbwegs sicher seid.

Well i speak german, Codename doesn't so it is always better to write in english, if you are able too.
 
there are 2 diffrent problems going on, heres whats up.
1. pathing issues. theres not much i can do to fix that on my own, since i relies on built in Honorbuddy functions.

you don't need to path to the PVP NPC, just do this problem solved

if (intMe.Location.Distance(new WoWPoint(targetXLocation, targetYLocation, targetZLocation)) < 10)
{
Logging.Write("IM SORRY, YOUR NOT CLOSE ENOUGH TO THE TARGET NPC");
}
else
{
something.Interact() /// No moveTo etc so the player only has to be within 10 yards or so and doesn't need to path the NPC
}

the targetXLocation, targetYLocation, targetZLocation will be NPC based... so if you check the MapID i.e If (MapID = stormwind) { go to -alliance-guy-pvp-seller }
 
Last edited:
2. issues where its failing to fetch the items from the vender with
Code:
[13:56:15:336] [Mr.GearBuyer-DEBUG]: Vender item not usable, Skipping. [Магический знак изощренного интеллекта]
in the debug log. to fix issue 2, i need information from people, Client Language, Class, ect, but so far there hasnt been a pattern, and without a pattern its hard to track down.

This is the Error I get when I ask it to buy level 70 gear while I'm < 70, it's because the vendor lists it, but you can't buy it till your the required level to equip it.
 
i got a second problem. When the bot thinks it is time to repair, he "try" to reach a brian smith but he didnt do something. after i repair manuel it is fine. is there something that i need to configurat, for the auto repair function? My toon is a human in stormwind
 
you don't need to path to the PVP NPC, just do this problem solved

if (intMe.Location.Distance(new WoWPoint(targetXLocation, targetYLocation, targetZLocation)) < 10)
{
Logging.Write("IM SORRY, YOUR NOT CLOSE ENOUGH TO THE TARGET NPC");
}
else
{
something.Interact() /// No moveTo etc so the player only has to be within 10 yards or so and doesn't need to path the NPC
}

the targetXLocation, targetYLocation, targetZLocation will be NPC based... so if you check the MapID i.e If (MapID = stormwind) { go to -alliance-guy-pvp-seller }


hopefully this can get implemented.
 
hopefully this can get implemented.
you need to understand, unlike Mr.HonorCap, where i hooked all the buy functions manually, Mr.GearBuyer uses makes a POI, and then the Honorbuddy Deals with processing that POI, just like it would do for a repair, or anything else.
 
Well i was able to get around the Item not usable skipping bug on the US Alliance JP vendor by downgrading to version 1.3 .... hope this helps.
 
when i turn my bgbuddy on with mrgearbuyer on also it makes my character to go the top of the stairs in the gear room and says he's moving to talric forthright and there is nobody there.. i start the bot right in front of the honor gear vendor and he automatically moves to the top of the stairs every time.. and i re installed mrgearbuyer also
 
Since when does fetching of PvE items not work?
 
Status
Not open for further replies.
Back
Top