Mystic rez items

Status
Not open for further replies.

bob_the_builder

Well-Known Member
There is a post about this but anyways, add this to the Class Routine in buffs section. Change to your classes rez item



Code:
	; Pass out Divine Awakening on initial script startup
	if !${InitialBuffsDone}
	{
		if (${Me.GroupCount} > 1)
			call CastSpell "Divine Awakening"
		InitialBuffsDone:Set[TRUE]
	}
Bob
 

bob_the_builder

Well-Known Member
Can't seem to get this working, oh well some things I need to do manually I guess:)
The fury class routine has the spell stuff to cast already. Have you updated SVN?


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

kingmonkey

Active Member
bloody hell I may be a retard, but lookin at the fury class routine helped me get it!

maybe you can understand why I called myself retardo on the macroquest forums :)
 
Status
Not open for further replies.
Top Bottom