[quote="mally42";p="57060"]Hey richy -
I was hoping you could take a look at a log file for me if you have time. In reading over the replies to this message. I took the example you said about auto-recasting spectral guard during battle but it does not seem to re-cast. I set it as the first thing I cast in the InitialCombatSequence1STR. And it will cast it on me but not when it wears off. I did set up the response correctly as far as I can tell in the .ini file under CombatResponseSequenceSTR. When was taking a look at the log file. I think it was picking up on the fact that it has worn off but was not recasting for some reason. There does not seem to be any obvious errors to me and I'm totally stumped.
Here is how I setup the combat response variable in the .ini file
Code: Select all
CombatResponseSequenceSTR=spectral guard disappears,qb1,Spectral Guard,1,2s,6s,MASTER
In the log when I see the buff wear off in combat what happens is it says
**response string Match on [spectral guard disappears]
Is cast on MASTER command, but no one said the request
It then goes on to list everything's health and power. I think what that means is a master didn't drop a tell saying, "spectral guard disappears". I have yet to test this theroy though I will in a minute. Just in case the health and power variables had anything to do with this I set them to 0 it was the same. Originally, I was trying TARGET instead of MASTER with the same problem.
Not too sure any help would be appreciated. Thx[/quote]
Mally - I thought about it again and know why it is not working for you.
When you are responding to text that wasn't sent with a tell - ie. from a master, the MASTER mode isn't going to work as it doesn't know who the "master" is that send the message since it was just a generic string match. If you either change it to NONE or TARGET, it would work fine and cast it on whoever is your main FIGHT partner since you already have them targetted during the fight. See if that works for you. If you need to cast it on yourself (ie. the bot), then set to YOURSELF, but right now, I don't think the logic is set to retarget the other person who is the tank, but easy to fix in the next version.
Send me some feedback on it when you test it.
Rich