Jump to content

Matenia

Elite user
  • Posts

    2226
  • Joined

  • Last visited

Everything posted by Matenia

  1. This works when making the Settings constructor public, for some reason.
  2. Matenia

    [TBC] Wanding issues

    For the time being (I just use C# and it works fine, btw), you can use Lua RunMacroText("/cast !Shoot")
  3. Same for Automaton. It worked on MoP, but doesn't work on TBC.
  4. Hi Droidz, I use Windows 8.1 when I use Memory.WowMemory.LockFrame(); Memory.WowMemory.UnlockFrame(); in my fightclass it works just fine. When I send the fightclass to my friends with Win10, it never unfreezes. In one log, it showed one freeze taking 45 seconds. Can't reproduce it on my own machine, unfortunately.
  5. Hey Droidz, for TBC, this is missing. It's a very useful API and in 2.4.3 you already had the combatlog. I would really appreciate, if you implemented this class for TBC. I couldn't find it in wManager.dll
  6. Botting anything but AV and EotS is suicide. I wouldn't recommend botting any BG with small maps where people rely on individual players a lot.
  7. Like the log says... you'll need a fightclass. Did you actually think you can just afk BGs and do nothing? Enjoy getting banned.
  8. Like it was being said in all the other 10-15 threads with this problem, turn off the "only queue if party leader" option.
  9. https://github.com/haimanman/SciTE-ru-jx3/blob/master/api/LuaWoW.api this is for patch 3.0, but vanilla has most these functions You cannot choose to run to a target with Lua alone (unless you build a framework around movement functions). You'll need to use the C# functions the bot provides. You can join Discord and ask questions there.
  10. @Droidz this is a problem with TBC 2.4.3, where on players HaveBuff doesn't work (I tried C# API too). It works on NPCs. Or at least, in Battlegrounder mode this is bugged, but doing it normally while leveling works fine.
  11. If you keep your Search Distance low and turn off pathfinding altogether in your general settings, it will ONLY follow the path you create, given you do create a path and not several hotspots. The bot mainly functions through hotspots, at which it tries to find enemies in WoW's objectmanager (basically any unit your client knows). If it finds a unit, walks to it, then finds another, it will keep chasing them far away from your path.
  12. Disable only queue if party leader or whatever the option is.
  13. If you have a fightclass, you can add a condition of type Lua script.
  14. Version 1.0.0

    143 downloads

    This is a simple, single quest profile that only does the City of Light quest for you, so that you can safely afk instead of following an NPC around for 5+ minutes.
  15. @Droidz Is there any way I can prevent the bot (in my fightclass) to chase enemies in BGs? I'm a healer and want to do some healing. Target selection and all works in my fightclass, but the bot keeps targeting opposing faction players, chasing them and then not targeting/healing any of my teammates. It barely does what it should, unfortunately. How can I fix this?
  16. The 2.4.3 version of wManager.dll doesn't seem to have a class EventsLuaWithArgs. Any current workaround for that? I'd love to read combatlog events to automate stuff for a PvP fightclass.
  17. The TBC version of wManager.dll seems to be missing this feature (Lua events with args) entirely. @Droidz
  18. Disclaimer: OP messaged me in private, and I didn't test this: local spellTable = {8122,5782,5246,5211,22570,19577,119381,853,408,1833,89766,107570,15487,2139}; hasDebuff = false; for i=1,40 do local name, rank, icon, count, dispelType, duration, expires, caster, isStealable, nameplateShowPersonal, spellID = UnitDebuff("party1", i); for k,v in pairs(spellTable) do if spellID == v then hasDebuff = true end end end return var is hasDebuff, search value is true (could also make this 0 and 1). Then the code is RunMacroText("/cast [@party1] spellName") Both the check above and this spell need to be Lua code.
  19. You can just execute the Lua code RunMacroText("/use 13"), that way no macro setups are required and your users don't need to create macros.
  20. You could multiline by using \n for linebreaks. Or you could create a small addon with a public function that executes all these things, then use the Bot's Lua API to call that function.
  21. Just add a Lua condition spell, rank, displayName, icon, startTime, endTime, isTradeSkill, castID, nonInterrupt = UnitCastingInfo("target") Use nonInterrupt as return var and look for value 1 (interruptable).
  22. For TBC, you could use an FeedMachine, which as far as I know picks food automatically. It also (afaik) uses some sort of button you just click for one-click feeding. In your fight class, you could just call the Lua code: RunMacroText("/click <buttonname>") Where <buttonname> would be the name of the button FeedMachine uses. No clue what it's called.
  23. I've been using this on Warmane's TBC for days now. If you tried it on Wrath or Vanilla, maybe that's what's crashing it. Or another conflicting plugin, possibly.
×
×
  • Create New...