Bots on T'Lon in Ravenscale

bob_the_builder

Well-Known Member
Just wondering if anyone has fought T'Lon the Powermonger in Ravenscale with a full bot team?

He has a nasty AOE kick back and wondering how anyone counteracts him.

I tried Shadow on MT and on T'Lon but neither seemed to work well.

What amount of heat resist resists his spells? (I know might be way wrong forum but yall are much kinder than the eq2flames people)


Well, just curious. Thanks in adv

Bob
 

Multicharacter

Senior Member
Just wondering if anyone has fought T'Lon the Powermonger in Ravenscale with a full bot team?

He has a nasty AOE kick back and wondering how anyone counteracts him.

I tried Shadow on MT and on T'Lon but neither seemed to work well.

What amount of heat resist resists his spells? (I know might be way wrong forum but yall are much kinder than the eq2flames people)


Well, just curious. Thanks in adv

Bob
Well, EQ2flames isn't a scripting community so I can completely understand why they might not be as 'kind' if you asked them about somebody having killed a named with a full bot team.

I haven't done that named yet (because I know I wouldn't have the DPS to kill him due to the trick at 20% where you have to kill him within 15 seconds - I assume he does have over 1 million HPs), but to handle the knockback you could just make a simple script that checks your current position, vs the position you were at when you started the script and if the distance is greater than X then "call moveto X Z range" back to where you were before.



Code:
#include "${LavishScript.HomeDirectory}/Scripts/moveto.iss"

function main()
{
declare startingpositionX int script ${Me.X}
declare startingpositionZ int script ${Me.Z}

do
{
if ${Math.Distance[${Me.X},${Me.Z},${startingpositionX},${startingpositionZ}]}>10
call moveto ${startingpositionX} ${startingpositionZ} ${Math.Rand[5]:Inc}

waitframe
}
while 1
}
 

bob_the_builder

Well-Known Member
Right I dont tell eq2flames I bot :)

The knock back is in the air ... will that script still move the bot to the position after being knocked up the Y axis?

And thnaks for the reply, all good stuff

Bob
 
Top Bottom