Jump to content

eeny

Elite user
  • Posts

    987
  • Joined

  • Last visited

Bug Report Comments posted by eeny

  1. Not a fix to your problem exactly- more a way around it i found. 

     

    Soutridge Beach Azshara.xml

     

    That's a quest file I use a lot with a run code to automatically open and loot clams while fighting.  All you would have to do is change the location vectors and target NPC's and you should be good to go.  If you link your grinder file i should be able to merge the two.

     

    The runcode looks like this:

    Thread t = new Thread(() =>
    {
        while (robotManager.Products.Products.IsStarted)
        {
            if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause)
            {
                if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive)
                {
    robotManager.Helpful.Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey);
          Thread.Sleep(robotManager.Helpful.Others.Random(50, 150));
          ItemsManager.UseItem(5524);
          Thread.Sleep(robotManager.Helpful.Others.Random(50, 150));
          robotManager.Helpful.Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, System.Windows.Forms.Keys.ShiftKey);
          Thread.Sleep(robotManager.Helpful.Others.Random(50, 150));
                }
            }
            Thread.Sleep(10000);
        }
    });
    t.Start();

     

     

     

  2. [F] 03:29:09.115 - [Spell] Cast Heroic Strike (Heroic Strike)
    [F] 03:29:12.316 - [Spell] Cast Heroic Strike (Heroic Strike)
    03:29:12.524 - Trial finish, close bot.
    [E] 03:29:12.524 - System.Char[]
    [F] 03:29:12.622 - [Spell] Cast Heroic Strike (Heroic Strike)

  3. 1 minute ago, Stauffenberg said:

     

    hmmm.....

    are you sure?
    Because the files are placed on drive c: and only syncronized with the cloud but not accessed from different computers i think...???!?

    The 1drive service will constantly be scanning the directory for updates to upload which can result in access issues...  i tried to same with dropbox to back  up my profiles-  i now script a copy to back them up prior to opening the bot when developing. 

  4. This is 100% profile side. 

    The profile writer scripts the bot on what quests to pick up  complete and turn in. 

     

    Any change in behaviour would be on the profile side. I have done this in the past when there are few quests and I want to bot to grind it out by returning to town between quests hoping they aggrieved mobs for extra exp while 'questing'. 

  5. /run local c=CastSpellByName if UnitExists("pet") then if UnitHealth("pet")==0 then c("Revive Pet") elseif GetPetHappiness()~=nil and GetPetHappiness()~=3 then c("Feed Pet") PickupContainerItem(0, 13) else c("Dismiss Pet") end else c("Call Pet") end



    If your pet is dismissed, this macro will call it. If your pet is called and happy, this macro will dismiss it. If your pet is called and unhappy, this macro will feed it the item in the bottom left corner of your backpack. If your pet's dead, it'll be revived.

    You can change the bagslot this macro checks for food in by changing the "PickupContainerItem(0, 13)" part. The bags count from 0-4, starting from the Backpack, so 0, 13 there means the 13th slot in the backpack.

    You can change the happiness values (GetPetHappiness()~=3  to GetPetHappiness()~=4) so it will never dismiss pet when its happy and the macro is touched.

    Tinker with this macro as you see fit

  6. @Droidz - this looks horrific in-game and is going to get people reported / banned.  Its got to the point where i changed the fight class range so im sending my hunter in to melee to avoid the constant weapon swaps when attacking at range.

    Can we please have a method to stop the bot auto attacking while at range.  i know you updated mid February saying the bot wont auto atack unless within 15 yards, however this is still occurring in vanilla.  can we please have a way to disable auto attack getting sent to the bot at all.

  7. I have been looking into this, however im taking the "carpet bomb" approach... in legion when you go to a world quest zone you automatically have the quest ID in your list (without picking it up) and you can get WROBOT to pulse on that quest ID.

    Currently working on profiles that go along the lines of

    • Go to location1 XYZ (hopefully there is a daily quest there today)
    • IF has quest
      • Quest pulse
    • Go to location2 XYZ (repeat) 

    All i need to do is find all the available dailies, which by the looks of things may take some time... started with Aszuna of course.

  8. odds are you were running wow in 64 bit mode and Wrobot needs it to be 32 bit mode to insert its hooks.  so when you load Wrobot it closed the 64 bit wow and relaunched 32 bit.  

    As Driodz said... share the log file or he has no idea whas going on in your system.

  9. Observing Similar things here-  The change character is not pulling all the bot config in (e.g fight class / grind profile).  I swapped to my druid out to my mage and had my mage trying to cast cat form for 30 mins as the flight class was not changed over.

     

    It may be easier / safer to not switch characters in one single reloggger profile- rather define all our characters into the relogger application in separate profiles and if we do switch characters, have the application point to a whole different relogger profile and start it.

     

×
×
  • Create New...