I love http://www.nexusmods.com/fallout3/mods/2348/? and am always using it, but it has a couple of issues, which I thought I'd try to fix. The first is that smokindan forgot to add the Dogmeat trophy to the script. I've added it like this:
if (DogmeatREF.Waiting == 0)||(DogmeatREF.Waiting == 1)
SDDogmeatTrophyRef.Enable
endif
This works fine and I'd guess those ones are just called if you have him as a follower in the first place? At first I tried:
if (GetQuestCompleted FollowersHireDogmeat == 1)
SDDogmeatTrophyRef.Enable
endif
if (GetQuestRunning FollowersHireDogmeat == 1)
SDDogmeatTrophyRef.Enable
endif
But neither worked, so I guess the follower scripts are set up differently than ordinary quests, which are completed.
Also, it's supposed to give a trophy for killing ALL Super Mutant Behemoths, but it's set up like this:
if (GetDeadCount CrSuperMutantBehemoth >= 1)
SDMBehemothTrophyRef1.Enable
endif
And I'd guess that means that you get the trophy for killing the Behemoth at the Jury station rather. So my question is if this would work:
if (GetDeadCount CrSuperMutantBehemoth == 1)||(GetDeadCount EvergreenMillsBehemoth == 1)||(GetDeadCount MQ01Behemoth == 1)||(GetDeadCount DCWorld05Behemoth == 1)||(GetDeadCount LDCrSuperMutantBehemothCapitolBuilding == 1)
SDMBehemothTrophyRef1.Enable
endif
I.e., does this mean that all those instances have to be true - or does it just mean that one of them has to? Seems like the latter as the Dogmeat script above wouldn't work if both instances had to be true. And, if the latter, how do I set it up so you have to kill all of them to get the trophy?