Inquisitor not rezzing - in out out of combat HELP.

sumoslim

Well-Known Member
The inquisitor script is not rezzing ever.

Can we steal a script from say the templar or defiler to run rezzes correctly?
I can do this myself - but would need to be pointed to the sections of the templar script that have to be replaced into the inquis one.

Thanks in advance for the help.
 

bob_the_builder

Well-Known Member
Make sure CombatRez is set on for in combat. For out of combat make sure the distance is not too far away and the Inq can move, the bot will run to rez after combat.

The script looks like ever "CastSpellRange 300" has to have CombatRez enabled for in combat.

Try setting it in the UI or in the Class file.

As for out of combat that should be identical to the Templar. Check the Post_Combat_Routine from both those scripts to be certain they should be the same but you can always check it yourself. Find the spell number that the Templar uses for single or group rez (possibly 300 or 301) and search the Class Routine script file and check the Routine.
 

bob_the_builder

Well-Known Member
Might also make sure you have the AA "Supplication of the Fallen"

If not then change the 506 spell to another group rez or the single target rez.

Code:
function PostCombat_Init()
{
	PostAction[1]:Set[Resurrection]
	PostSpellRange[1,1]:Set[506]
	PostSpellRange[1,2]:Set[301]
}
At one point I was making the resses smarter to check how many people died and then use the group or the single depending on number dead. I never completed it but if you are going to change the Post_Combat_Routine you might want to think about changing the group / single resses to kick off depending on number of group members that are dead. *shrug*
 

sumoslim

Well-Known Member
There is no combat rez ui in the inquis UI - is there a way to add that?

I did not have supplication - so changing my AAs to get that.

Where can i find is the combat rez bool is true or false for the inquis in the setup files?
 

bob_the_builder

Well-Known Member
There is no combat rez ui in the inquis UI - is there a way to add that?
In the UI I have in mine:

Code:
	<Commandcheckbox Name='CombatRez'>
		<Visible>1</Visible>
		<X>200</X>
		<Y>130</Y>
		<Width>30%</Width>
		<Height>20</Height>
		<Text>Rez in Combat</Text>
		<OnLeftClick>
			if ${This.Checked}
			{
				Script[EQ2Bot].Variable[CombatRez]:Set[TRUE]
				LavishSettings[EQ2Bot].FindSet[Character].FindSet[${Me.SubClass}]:AddSetting["Combat Rez",TRUE]
Script[EQ2Bot].VariableScope.EQ2Bot:Save_Settings
			}
			else
			{
				Script[EQ2Bot].Variable[CombatRez]:Set[FALSE]
				LavishSettings[EQ2Bot].FindSet[Character].FindSet[${Me.SubClass}]:AddSetting["Combat Rez",FALSE]
Script[EQ2Bot].VariableScope.EQ2Bot:Save_Settings
			}
		</OnLeftClick>
		<Data>${LavishSettings[EQ2Bot].FindSet[Character].FindSet[${Me.SubClass}].FindSetting[Combat Rez]}</Data>
	</Commandcheckbox>
Well check in the Class Routine for this

declare CombatRez bool script 1

Change it to

declare CombatRez bool script 0

or set 0 = false so you can remeber what you did later.

Might search for my user name and make sure you have the latest Class Routine, UI, and Spell list ... pretty sure the Inq on SVN is mine (which I don't like because I don't like 'supporting' it like I am here...)
 

sumoslim

Well-Known Member
No sure I understand what you mean by searching your name.

I have the most current script from the SVN. Is that the right one?

I setup the ui from the templar - but didnt do the 2nd change will try that tonight.
 

bob_the_builder

Well-Known Member
I setup the ui from the templar - but didnt do the 2nd change will try that tonight.
Hu? thought you said Inquisitor .. I'm sure the UI files are different.

No sure I understand what you mean by searching your name.
Use the advanced search and on the left type my user name and search for my posts. I don't handle the SVN and someone put a script of the Inq in SVN and I don't know if it is the latest, use the one I posted last, that will work.
 

bob_the_builder

Well-Known Member
Try the new scripts if you have some time, I havent been in a group playing in a bit but I think I found/fixed the rezzing..

;Added rez checker and CombatRez bool for single death in combat vs multiple deaths (chooses the correct rez to use) Line 855-875
;Added the checks for Divine Guidance
;Change emergency heals to fire off Divine Guidance, and Chilling Invigoration if needed
; -- Add these spells ...... <Setting name="10,509">Chilling Invigoration</Setting>
; -- To the Spell List XML <Setting name="10,395">Divine Guidance</Setting>
;Changed the pulse to do the primary functions Line 100-120
;Added BattleCleric to move the bot into range to melee (I never use CA's so I've never tested OffenseMode)
 

Attachments

sumoslim

Well-Known Member
Thanks Bob - you rock.

I'll try them out tonight - still trying to get the queen fight - this will help a lot.
 

bjcasey

ISX Specialist
I always sing "Burn, baby, burn! Disco inferno!" while doing that fight. Makes it much more enjoyable.
 
Top Bottom