Ah, I see, now. Thank you for explaining it. I'm not sure why it wouldn't work before, but I thought that I needed to negate that second check during the first one for it to work. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/wacko.gif" style="vertical-align:middle" emoid=":wacko:" border="0" alt="wacko.gif" />
So I deleted the second part of the check, and it all still seems to work. <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/unsure.gif" style="vertical-align:middle" emoid=":?" border="0" alt="unsure.gif" /> Not sure what I did before (it's been a scramble trying to keep all this stuff straight). Thank you VERY much for your explanations, you've been very patient with hardheaded <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/icon_wink.gif" style="vertical-align:middle" emoid="

" border="0" alt="icon_wink.gif" /> old me! <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/modding.gif" style="vertical-align:middle" emoid="

" border="0" alt="modding.gif" />
<img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/par-ty.gif" style="vertical-align:middle" emoid="

" border="0" alt="par-ty.gif" /> A shipload of nice fresh lemonade is headed in your direction... <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/me.gif" style="vertical-align:middle" emoid="

" border="0" alt="me.gif" /> <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/biggrin.gif" style="vertical-align:middle" emoid="

" border="0" alt="biggrin.gif" />
Got another question for ya now, tho... (uh oh! <img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/piratesing.gif" style="vertical-align:middle" emoid="

" border="0" alt="piratesing.gif" /> )
When you're talking to Father Bernard on Redmond about the Animists, and his assistant Father Gareth and the three Animists attack you, Gareth saunters slowly down the steps of the altar to confront you with,
<b>"Die! ..(whatever he screams at you).."</b> (and then he draws his sword)
It seems such a lazy saunter when he walks to you. I'd like to see him run towards you to accuse you. The code in q_r.c is thus:
<!--c1--><div class='codetop'>CODE</div><div class='codemain'><!--ec1--> case "father_Gareth_stopping_us":
Locations[FindLocation("Muelle_church")].reload.l1.go = "Muelle_town_04";
Locations[FindLocation("Muelle_church")].reload.l1.emerge = "reload4";
pchar.quest.animists = "before_knight";
TakeItemFromCharacter(pchar, LETTER_TO_BERNARD);
GiveItem2Character(characterFromID("father Gareth"), "blade5");
EquipCharacterByItem(characterFromID("father Gareth"), "blade5");
LAi_SetImmortal(characterFromID("father Gareth"), false);
LAi_SetImmortal(characterFromID("father Bernard"), true);
LAi_SetActorType(characterFromID("father Gareth"));
if (characters[GetCharacterIndex("father Gareth")].location == "Redmond_church")
{
LAi_ActorDialog(characterFromID("father Gareth"), pchar, "", 2.0, 1.0);
}
else
{
ChangeCharacterAddressGroup(characterfromid("Father Gareth"), "Redmond_church", "reload", "reload1");
LAi_ActorDialog(characterFromID("father Gareth"), pchar, "", 2.0, 1.0);
}
break;
case "fight_with_animists_in_church":
AddQuestRecord("animists", "22");
LAi_LocationFightDisable(&locations[FindLocation("redmond_church")], false);
LAi_SetHP(characterFromID("Mystery_Man_01"), 80.0, 80.0);
LAi_SetHP(characterFromID("Mystery_Man_02"), 80.0, 80.0);
LAi_SetHP(characterFromID("Mystery_Man_03"), 80.0, 80.0);
ChangeCharacterAddressGroup(characterFromID("Mystery_Man_01"), "Redmond_Church", "reload", "reload1");
ChangeCharacterAddressGroup(characterFromID("Mystery_Man_02"), "Redmond_Church", "reload", "reload1");
ChangeCharacterAddressGroup(characterFromID("Mystery_Man_03"), "Redmond_Church", "reload", "reload1");
LAi_group_MoveCharacter(characterFromID("Mystery_Man_01"), "ANIMISTS_IN_CHURCH");
LAi_group_MoveCharacter(characterFromID("Mystery_Man_02"), "ANIMISTS_IN_CHURCH");
LAi_group_MoveCharacter(characterFromID("Mystery_Man_03"), "ANIMISTS_IN_CHURCH");
LAi_group_MoveCharacter(characterFromID("father Gareth"), "ANIMISTS_IN_CHURCH");
LAi_group_FightGroups("ANIMISTS_IN_CHURCH", LAI_GROUP_PLAYER, true);
LAi_group_SetCheck("ANIMISTS_IN_CHURCH", "kill_all_ANIMISTS_in_church_complete");
break;<!--c2--></div><!--ec2--><img src="http://www.piratesahoy.com/forum/style_emoticons/<#EMO_DIR#>/unsure.gif" style="vertical-align:middle" emoid=":?" border="0" alt="unsure.gif" /> Not sure how I can get him to run towards you. The only example I can find of a command calling an actor to run is where they run to a LOCATOR. You're not ON a locator. ???
How can I get him to run?