Cleric and Shaman Bot

Ragemage

Well-Known Member
Hey I was wondering if I could add something to their scripts to automatically cast the Rezzy item as soon as the bot starts? The Druid one does it on start up and couldn't figure out how to add it to the Shaman/Cleric one. Seeing as I'm normally playing a mage I forget to pass out rezzy items to my bruiser. Then I FD and can't rez the healers.
Also is there an option to turn on the ability to auto follow? What I mean is when I have the 2 healer bots follow me and the MT pulls something they stop and cannot me moved until the encounter is over and they resume auto follow. Is there a way to keep it on all the time? The only fight I see this being a problem is the Bithi fight in MC. Other than that When I MT i know i have to keep in healing range of the healers cause they've stopped. I think its put in the code to make sure that they're not moving and casting interrupting themselves.
Thanks in advanced.
 

bob_the_builder

Well-Known Member
Also is there an option to turn on the ability to auto follow? What I mean is when I have the 2 healer bots follow me and the MT pulls something they stop and cannot me moved until the encounter is over and they resume auto follow. Is there a way to keep it on all the time? The only fight I see this being a problem is the Bithi fight in MC. Other than that When I MT i know i have to keep in healing range of the healers cause they've stopped. I think its put in the code to make sure that they're not moving and casting interrupting themselves.
Thanks in advanced.
Check out this thread:

http://www.isxgames.com/forums/showthread.php?t=2507&page=3

Specifically 2nd to last post from Pygar:

run shadow mytank 10

This will move them to that distance in combat.

Just endscript shadow after the fight.
Bob
 

bob_the_builder

Well-Known Member
Hey I was wondering if I could add something to their scripts to automatically cast the Rezzy item as soon as the bot starts? The Druid one does it on start up and couldn't figure out how to add it to the Shaman/Cleric one. Seeing as I'm normally playing a mage I forget to pass out rezzy items to my bruiser. Then I FD and can't rez the healers.
Just change the CastSpell to the name of whatever your class casts. This will only cast at script start and it will cast once when the script starts adn never again unless you restart the script. So basically if you are grouped with 3 people and then start the script those 3 people when have a feather, if anyone uses the feather or you add more people in the group they will not get the feather. So re start the script every now and then to make sure everyone always has a feather... or whatever yours is called.


Code:
	; Pass out feathers on initial script startup
	if !${InitialBuffsDone}
	{
		if (${Me.GroupCount} > 1)
			call CastSpell "Favor of the Phoenix"
		InitialBuffsDone:Set[TRUE]
	}
Bob
 
Last edited:
Top Bottom