Page 1 of 1

2bd Boss GC

Posted: Thu Apr 26, 2012 2:38 am
by runnpray
Would like to Kill Issac first because if you kill Ardmond first Issac goes berserk and stacks too many bleeds to survive. Have tried a number of things to kill Issac first and none of them are working consistently. IF I am running the instance manually I can go over to the right side of the room and pull Issac, but just trying that method with waypoints works about 50/50 and when you pull Ardmond he runs way faster than Issac and takes aggro.

I tried this

<!-- # 17 --><waypoint x="-1198" z="-1253" y="1133" type="TRAVEL" >
player:target( player:findNearestNameOrId("Issac") )
player:cast("ROGUE_VAMPIRE_ARROWS")
</waypoint>
And it works in targeting Issac and getting a skill off on him for damage but then the bot starts attacking Ardmond.

So how to keep Issac as target and kill him first? Tried the below and it didn't work but I think there has to be something? I'm just not experienced enough to figure it out... If I can solve this then first two bosses GC ez farm will be done.

<!-- # 17 --><waypoint x="-1198" z="-1253" y="1133" type="TRAVEL" >
player:target( player:findNearestNameOrId("Issac") )
player:cast("ROGUE_VAMPIRE_ARROWS")
if( target.HP > 1 ) then
player:cast("ROGUE_LOW_BLOW");

end
</waypoint>


Ideas and thoughts appreciated.

Re: 2bd Boss GC

Posted: Thu Apr 26, 2012 3:22 am
by lisa

Code: Select all

player:target( player:findNearestNameOrId("Issac") )
player:fight()

Re: 2bd Boss GC

Posted: Thu Apr 26, 2012 3:39 pm
by runnpray
you're the best. works perfectly. The level of complexity from DoD first to GC second boss is quite a bit. But I think the effort was worth it, learned a lot about waypoints, functions, profile options, skills, etc. Appreciate the help.