Matenia
Elite user-
Posts
2230 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Matenia
-
need help with overpower
Matenia replied to nate11's topic in WRobot for Wow The Burning Crusade - Help and support
Those are combatlog events, which currently aren't supported. I already filed a bug report with Droidz. -
Always returns 0 right now
-
[VANILLA] Custom settings not saved properly
Matenia commented on DonaldMacRonald's bug report in Bug Tracker
This works when making the Settings constructor public, for some reason. -
For the time being (I just use C# and it works fine, btw), you can use Lua RunMacroText("/cast !Shoot")
-
"Wait out res sickness" feature doesn't work.
Matenia commented on maylu's bug report in Bug Tracker
Same for Automaton. It worked on MoP, but doesn't work on TBC. -
Tested for TBC.
-
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.
-
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
-
Battlegrounder performance
Matenia replied to iloniegodx's topic in WRobot for Wow The Burning Crusade - Help and support
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. -
Battlegrounder performance
Matenia replied to iloniegodx's topic in WRobot for Wow The Burning Crusade - Help and support
Like the log says... you'll need a fightclass. Did you actually think you can just afk BGs and do nothing? Enjoy getting banned. -
Battlegrounder performance
Matenia replied to iloniegodx's topic in WRobot for Wow The Burning Crusade - Help and support
Like it was being said in all the other 10-15 threads with this problem, turn off the "only queue if party leader" option. -
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.
-
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.
-
Battlegrounder not queuing
Matenia replied to Mucka's topic in WRobot for Wow The Burning Crusade - Help and support
Disable only queue if party leader or whatever the option is. -
If you have a fightclass, you can add a condition of type Lua script.
-
-
@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?
-
The TBC version of wManager.dll seems to be missing this feature (Lua events with args) entirely. @Droidz
-
Bleesin of sanctuary ( Ret pal buff )
Matenia replied to Wrobotwow's topic in Fight Classes assistance
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. -
How to ADD Trinkets to a FIght Profile the EASY WAY!!!
Matenia replied to Bear T.O.E.'s topic in Tutorials - WRobot
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.- 13 replies
-
- Fight Profile
- Trinket
-
(and 1 more)
Tagged with:
-
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.
- 8 replies
-
- feed pet
- fight class
-
(and 2 more)
Tagged with:
-
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).
-
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.
- 8 replies
-
- feed pet
- fight class
-
(and 2 more)
Tagged with: