eq2stayfollow question

eddie43302

Senior Member
Anyone know of anyone to set this to autoload when starting innerspace/isxeq2 and have it auto fill the name of the person to follow. Cause i use 6 pc's to box and it gets kinda annoying doing it on each one.
 

bob_the_builder

Well-Known Member
Anyone know of anyone to set this to autoload when starting innerspace/isxeq2 and have it auto fill the name of the person to follow. Cause i use 6 pc's to box and it gets kinda annoying doing it on each one.
Put it in eq2botcommander as the target or use the autofollow in combat built into eq2bot

Search autofollow or stayfollow and you should be able to find all the threads discussing this.

This is what I put into eq2botcommander. Just put it in a tab and make sure the positioning is correct.

Code:
<Button Name='NoMove'>
	<X>5%</X>
	<Y>50</Y>
	<Width>90</Width>
	<Height>20</Height>
	<Text>NoMove</Text>
	<AutoTooltip>Tell all bots no movement what so ever!</AutoTooltip>
	<OnLeftClick>Script[EQ2BotCommander]:QueueCommand[call NoMove]</OnLeftClick>
	<Font><Color>FFFF0000</Color></Font>
</Button>							
<Button Name='EQFollow'>
	<X>5%</X>
	<Y>80</Y>
	<Width>90</Width>
	<Height>20</Height>
	<Text>EQFollow</Text>
	<AutoTooltip>Tell all bots to follow in combat using eq2bot</AutoTooltip>
	<OnLeftClick>Script[EQ2BotCommander]:QueueCommand[call EQFollow]</OnLeftClick>
	<Font><Color>FFFF0000</Color></Font>
</Button>
Or use the "stayfollow" that uses the target.

Code:
<Button Name='StayFollow'>
	<X>5%</X>
	<Y>200</Y>
	<Width>90</Width>
	<Height>20</Height>
	<Text>StayFollow</Text>
	<AutoTooltip>Always Follows Target</AutoTooltip>
	<OnLeftClick>Script[EQ2BotCommander]:QueueCommand[call StayFollow]</OnLeftClick>
	<Font><Color>FFFF0000</Color></Font>
</Button>
BTW I searched for you ... here is the thread discussing exactly what I posted above ...

http://www.isxgames.com/forums/showthread.php?t=3317&highlight=stayfollow&page=5
 

eddie43302

Senior Member
Yea the follow buillt into eq2bot sucks.. they dont follow half the time even though i have follow in combat checked. eq2stayfollow is the bomb though they never stop following.Ill take a look at your stuff.
 
Top Bottom