Jump to content

Macro

Members
  • Posts

    19
  • Joined

  • Last visited

About Macro

  • Birthday 12/14/1991

Profile Information

  • Gender
    Male
  • Interests
    Macro Photography, World of Warcraft, Fire poi

Recent Profile Visitors

1166 profile views

Macro's Achievements

Newbie

Newbie (1/14)

3

Reputation

  1. Thank you for the explanation, someone at work was challenging the idea that hiding your IP would be effective as he thought game companies could not see the full IP address... Which I definitely dismissed but then he made the point that IPs are dynamic and constantly being released and renewed... which if a company flagged an IP address as a potential botter or even banned it, it would result in many false positives as the IP addresses change pretty often.
  2. VPNs purpose is to hide your IP address right? Can anyone explain how they are able to see your IP address in the first place? I was under the impression that only the ISP can see your full address and without cooperation from the ISP, no one can see your IP address.
  3. wow they really didnt just put the reason as botting /automation? are they now detecting the bot by checking autorelease, auto orientation etc?
  4. I read that Hardware ID is impossible to get without external software. Not sure about mac address. In the northdale bans previously, people who ran more than 4 bots at a time were instantly banned. Every botter I see I add to my friends list to see which stops going online, how long they stay online farming, where they are farming. Some are very obviously botting, online 24 hours per day and are at level 40+, its crazy and they are still online today. I only use VPN and serparate wow clients and I haven't experienced any bans on any character. Could you provide more information on how many accounts were banned? how many were running at the same time? how long did they bot per day? what level did you reach before getting banned? I don't think blizzard would meet with someone illegally utilizing their intellectual property unless it was in a courtroom....
  5. Macro

    About Skinning

    The only way to skin unlooted mobs is to enable 'ninja' in advanced settings
  6. I tell the grinder profile to attack mobs of this type. I blacklist specific mobs that are in groups/in caves/ in buildings using blacklist editor. It was working fine before the update this morning. Now it will attack all mobs, even specific blacklisted mobs. it will skip looting on the specific blacklisted mobs. I am using the vanilla client with a fresh install of wrobot, no addons or plugins. I've created new blacklists and created new grinder profiles.
  7. The bot will run through aggressive mobs when it is in the looting phase. Is it possible to have the bot check for targets near your target before running to loot? If (Looting = true && additional Mob is found within 30 yards of your lootable target && same additional mob is also within 30 yards of ME && same additional mob = aggressive) { Target additional mob; begin combat; } I was also hoping that I could put a 1 second strafe while running toward the mob to loot. If (currently running toward dead target to loot) { Move.StrafeLeft(Move.MoveAction.DownKey); thread.sleep(1000) Move.StrafeLeft(Move.MoveAction.UpKey); do not perform this action more than once per looting; } I am not sure if this is possible as the loot function looks to be built in to wrobot and not in to the fightclass. Are either of these things possible?
  8. 10 sessions, so 10 wow characters running the bot... Regardless of IP or machine
  9. I want to randomize my spells / actions a bit by using variables so the bot will look human. This might be very very easy but I dont know how to do it, it may help other new people. This is what I am trying to do: Var Random = (1-3) if (Frostbolt.KnownSpell && ObjectManager.Target.GetDistance < 30 && Random = 1) { Frostbolt.Launch(); Random = (1-3); } if (ArcaneMissiles.KnownSpell && ObjectManager.Target.GetDistance < 30 && Random = 2) { ArcaneMissiles.Launch(); Random = (1-3); } if (Fireball.KnownSpell && ObjectManager.Target.GetDistance < 30 && Random = 3) { Fireball.Launch(); Random = (1-3); } Does anyone know the proper code to do this? Do I need to put public bool in the beginning of the script?
  10. Hi Droidz! I do not want to ignore fights while traveling. While traveling - I want the bot to attack before being attacked, but this feature is not working. (Je ne veux pas ignorer les bagarres en voyageant. Pendant le voyage, je veux que le bot attaque les cibles avant d’être attaqué, mais cette fonctionnalité ne fonctionne pas.)
  11. When using quester the bot only attacks mobs listed in the quest or mobs that aggro. When traveling to a quest location, it runs straight in to a mob and only attacks once the mob aggros. I want the bot to attack hostile targets before they aggro I see an advanced setting "attack before being attacked" but this feature does not do anything when I turn it on How do I make it so the bot will attack any mob that is hostile > within 3 levels > within 25 yards of the path? I see someone posted about this in February, but I dont see any update.
  12. What about a feature / plugin that sets an alarm if the bot is stuck accepting/ completing quests, stuck on terrain, gets teleported, gets a group invite etc etc. I like alarms to notify me rather than the game closing. I think it would be really cool as well to develop a feature/plugin that puts variation in to the path the bot takes to the target so that its not always just a 100% straight line. Maybe sway the character or have a calculation that allows you to strafe slightly before going directly toward your target (at random)... but maybe that can only be done inside of the fight class.
  13. I would like to do two actions at once - cast a spell while moving back or jump while moving forward. When I try this script { wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey, 1500); wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP); } It waits until the first action is done until doing the second action. How do I run two actions at once?
×
×
  • Create New...