EQ2Bot Extras / Class

Syliac

Active Member
I have been trying to add the Extra's Tab to my scripts and cannot get it to pop up. I have included it just as in other scripts
Code:
#include "${LavishScript.HomeDirectory}/Scripts/EQ2Bot/Class Routines/EQ2BotLib.iss"
Is there something else i need to dd to bring up the extra's Tab?
 

Karye

Active Member
place

Code:
#include "${LavishScript.HomeDirectory}/Scripts/EQ2Bot/Class Routines/EQ2BotLib.iss"
at the top of your class script.

place

Code:
call EQ2BotLib_Init
in your class_declaration function

if implementing eq2botlib's autofollow for example...

place

Code:
	if ${AutoFollowMode}
	{
		ExecuteAtom AutoFollowTank
	}
in your buff_routine

and place

Code:
	AutoFollowingMA:Set[FALSE]
	
	if ${Me.ToActor.WhoFollowing(exists)}
	{
		EQ2Execute /stopfollow
	}
in your combat_routine
 
Top Bottom