FD and pet. Annoing bug or turtle feature?

Post Reply
User avatar
Akarui
Posts: 105

FD and pet. Annoing bug or turtle feature?

Post by Akarui » Sat Nov 19, 2022 2:19 pm

It was hard to remember and find a video what i saw 12 years ago.
This is first video and example what i seen how to solo hunter pve. Kiting is everything satisfied_turtle_head . But at now i cant to reproduce that. Is it bug or recently update feature?
When i use FD and mob still wants to attack my pet (which standing around the corner) i still in combat and no way to use trap. 2 weeks ago all be fine but not now.

Dear hunters. what do u think about that? PVE solo rip?

Snigery
Posts: 58

Re: FD and pet. Annoing bug or turtle feature?

Post by Snigery » Sat Nov 19, 2022 2:52 pm

I have no problem using FD & Trap & pet. I wrote a macro that will cast FD and have my pet follow me as passive. This gives me the couple miliseconds to cast my trap and re-attack target with pet. The problem is this, if your pet has not attacked the target during fight, it's not engaged in combat, and so if you FD, target will return to spawn patrol. If your pet has attacked target and is in combat and you FD, target will attack your pet. The problem with FD is this then, if your pet attacks the target while you are in FD, you will be placed back in combat. You are still in FD state, but cannot use your traps.

So this is where the macro is handy. I have had like over 95% success with this macro. The only problem is when my timing is just unfortunate, and my pet is already attacking within a couple miliseconds of my triggering FD where pet attacks at the same time, putting me in combat. But nearly all the time it works, unless FD/trap is resisted.

Snigery
Posts: 58

Re: FD and pet. Annoing bug or turtle feature?

Post by Snigery » Sat Nov 19, 2022 3:02 pm

Actually, here is the macro. I had a previous one that was more complicated, but this works better.

Code: Select all

/run CastPetAction(2) CastPetAction(6) fActionPrepare(98)

Code: Select all

fActionPrepare
is a custom LUA function that the SuperMacro addon allows you to use. It uses a spell in an action bar slot and checks if that action is useable (ie not on CD, in range, etc) and not already active. This avoids error messages popping up.

Code: Select all

function fActionPrepare( vActionSlotId )
  if fIsActionUseable( vActionSlotId ) and not fIsActionActive( vActionSlotId ) then
    UseAction( vActionSlotId )
  end
end
You could just use

Code: Select all

CastSpellByName("Feign Death")
instead if you rather.

User avatar
Akarui
Posts: 105

Re: FD and pet. Annoing bug or turtle feature?

Post by Akarui » Mon Nov 21, 2022 12:11 am

Snigery wrote:
Sat Nov 19, 2022 3:02 pm
Actually, here is the macro. I had a previous one that was more complicated, but this works better.

Code: Select all

/run CastPetAction(2) CastPetAction(6) fActionPrepare(98)

Code: Select all

fActionPrepare
is a custom LUA function that the SuperMacro addon allows you to use. It uses a spell in an action bar slot and checks if that action is useable (ie not on CD, in range, etc) and not already active. This avoids error messages popping up.

Code: Select all

function fActionPrepare( vActionSlotId )
  if fIsActionUseable( vActionSlotId ) and not fIsActionActive( vActionSlotId ) then
    UseAction( vActionSlotId )
  end
end
You could just use

Code: Select all

CastSpellByName("Feign Death")
instead if you rather.
thx. cast pet action 2 then instantly 3 and all fine for my case

Sasser
Posts: 7

Re: FD and pet. Annoing bug or turtle feature?

Post by Sasser » Mon Nov 21, 2022 3:35 pm

it is still buggy..it works only with macro. Befor the patch comes out 1-2 weeks ago it works without macro. Feign death > and it was allowed to set traps. Now you do feign death and the buttons are grey and you are still in fight.

Snigery
Posts: 58

Re: FD and pet. Annoing bug or turtle feature?

Post by Snigery » Mon Nov 21, 2022 11:39 pm

Sasser wrote:
Mon Nov 21, 2022 3:35 pm
it is still buggy..it works only with macro. Befor the patch comes out 1-2 weeks ago it works without macro. Feign death > and it was allowed to set traps. Now you do feign death and the buttons are grey and you are still in fight.
Your FD is probably being resisted, which might show up in the combat log. Other conditions put you back into combat also, like if your pet attacks the target while your are in FD state, you will still be lying down undetected, but unable to use your traps from FD state.

Post Reply