Everything posted by Matenia
-
Target Buff Not Working in PVP (2.4.3)
Use a Lua script for the condition with UnitDebuff. The TBC ret paladin fightclass here on the forums does the same.
-
Lock Frame never unlocking on Win10
Hey, I use slightly different code (Hook.IsLockAllowed) now and UnlockFrame(true). It seems to work on Win10, I will get back to you, if it bugs again and send you my VS project
-
need help with overpower
Those are combatlog events, which currently aren't supported. I already filed a bug report with Droidz.
-
[TBC] SpellManager.GlobalCooldownTimeLeft
Always returns 0 right now
-
[VANILLA] Custom settings not saved properly
This works when making the Settings constructor public, for some reason.
-
[TBC] Wanding issues
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.
Same for Automaton. It worked on MoP, but doesn't work on TBC.
-
Lock Frame never unlocking on Win10
Tested for TBC.
-
Lock Frame never unlocking on Win10
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.
-
[TBC] LuaEventsWIthArgs is missing
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
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
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
Like it was being said in all the other 10-15 threads with this problem, turn off the "only queue if party leader" option.
-
Lua / Macros
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.
-
Priest - Won't cast Shadow Word: Pain - Log and Fight Class attached
@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.
-
Bot goes off created path on its own (screenshot inside)
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
Disable only queue if party leader or whatever the option is.
-
Druid Guardian Code Question
If you have a fightclass, you can add a condition of type Lua script.
- City of Light (Aldor/Scryer quest)
-
In BG avoid targeting opposing faction and chasing them
@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?
-
How to find what hostile player is casting
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.
- Register Combat_Log with args
-
Bleesin of sanctuary ( Ret pal buff )
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!!!
- How to feed pet with fight class?