How to marry Briar Rose [message #69704] |
Sun, 03 November 2013 07:38 |
utharaptor
Messages: 4 Registered: October 2013
|
|
|
|
Hello everybody !
I read all post about "Briar Rose" 3 times, but I didn't found any clear answer about that ?
I saw a possibility : to make a new creature and paste mesh on it, but I don't know really how it work...
I try a easy solution : Spawn her on a map and set Canbemarried, ect to TRUE, but nothing change, she's just on the map and I can't even talk to her. I use definition type : CREATURE_RIVAL_HERO_BRIAR_ROSE but maybe it's not the right creature to use ?
Does anyone can help me ?
Thanks a lot !
|
|
|
|
|
Re: How to marry Briar Rose [message #69709 is a reply to message #69706] |
Sun, 03 November 2013 16:25 |
jwc2200
Messages: 845 Registered: March 2008 Location: Texas
|
Administrator
|
|
|
EDIT:A simple way to do this (if you used Free Roam and understand how to add scripts to tngs) is to give CREATURE_HIGHCLASS_PROSTITUTE CREATURE_BRIAR's graphic ID. Then put the prostitute somewhere. She will look like Briar, but act and sound like any female villager.
If you want this the attached sctipt will add a marryable Briar Rose lookalike to the Temple of Avo. There are also 3 signposts teleporting to B/S, O/V and somewhere else(either H/C or S/S). You can also change the UID and coordinates and put her in any region.
I also had a script spawning her in Lookout Point.
Toggle Spoiler
NewThing AICreature;
Player 0;
UID 18446741248233525517;
DefinitionType "CREATURE_HIGHCLASS_PROSTITUTE";
CreateTC "CTCWife";
ScriptName NULL;
ScriptData "NULL";
ThingGamePersistent FALSE;
ThingLevelPersistent FALSE;
StartCTCPhysicsNavigator;
PositionX 91.20020;
PositionY 78.00000;
PositionZ 39.03424;
RHSetForwardX 1.00000;
RHSetForwardY 0.00000;
RHSetForwardZ 0.00000;
RHSetUpX 0.00000;
RHSetUpY 0.00000;
RHSetUpZ 1.00000;
EndCTCPhysicsNavigator;
StartCTCTargeted;
Targetable TRUE;
EndCTCTargeted;
StartCTCTalk;
EndCTCTalk;
StartCTCEditor;
EndCTCEditor;
StartCTCVillageMember;
VillageUID 0;
EndCTCVillageMember;
StartCTCContainerRewardHero;
EndCTCContainerRewardHero;
StartCTCEnemy;
FriendsWithEverythingFlag FALSE;
EnableFollowersEnemyProxy TRUE;
FactionName "";
EndCTCEnemy;
StartCTCCreatureOpinionOfHero;
InteractedFlag FALSE;
GreetedFlag FALSE;
LastOpinionReactionFrame 0;
NumberOfTimesHit 0.0;
ToleranceToBeingHitOverride -1.0;
FrameToDecayNumberOfTimesHit 2147483647;
ForcedAttitude 18;
HeroOpinionEnemy FALSE;
EndCTCCreatureOpinionOfHero;
StartCTCAIScratchpad;
EndCTCAIScratchpad;
StartCTCWife;
CourtingBlocked FALSE;
PermittedToRegionFollow TRUE;
FrameGotMarriedToThePlayer 2147483647;
DivorcedHero FALSE;
JustMarried FALSE;
NeedsToChangeBrain FALSE;
FrameToCheckAppearanceChanges 0;
FrameLastAwareOfHusband 0;
FrameLastReducedOpinion 0;
FrameLastEvaluatedGiftOpinion 0;
FrameLastConsideredGivingGift 0;
FrameLastEvaluatedLoveAttitude 0;
FrameEnteredAttitudeHate 2147483647;
FrameLastGaveDivorceWarning 0;
FrameEnteredLoveWithHusbandPresentAtHome 2147483647;
FrameLastGaveSexOffer 0;
GiftGivingOpinionDistanceFromMax 0.0;
GiftGivingPriceValue 15;
GiftToGiveDef 0;
LastFatnessChangePoint 0.0;
HouseDressingLevelLastCommentedOn 0;
BooleanHusbandAppearances[0] FALSE;
BooleanHusbandAppearances[1] FALSE;
BooleanHusbandAppearances[2] FALSE;
BooleanHusbandAppearances[3] FALSE;
FrameLastReceivedNiceGift 0;
FrameLastCulledGiftsReceived 356;
LoveAttitudeValue 0.0;
HasBeenInLoveWithPlayer FALSE;
ReceivedWeddingRing FALSE;
EndCTCWife;
Health 12.0;
OverridingBrainName NULL;
HasInformation FALSE;
WanderWithInformation FALSE;
WaveWithInformation FALSE;
ContinueAIWithInformation FALSE;
EnableCreatureAutoPlacing FALSE;
AllowedToFollowHero TRUE;
RegionFollowingOverriddenFromScript FALSE;
RespondingToFollowAndWait TRUE;
CanBeCourted TRUE;
CanBeMarried TRUE;
InitialPosX 2035.467285;
InitialPosY 3403.642822;
InitialPosZ 87.000000;
EndThing;
I can't make it happen through scripting the girl like can be done for the prostitutes. I guess you will need to do like you said and make a new creature with maybe all the same definitions as a prostitute, then give it Briar's mesh, then spawn her using the "Marry a Prostitute" scipt.
Douance's add a girl script thread:
http://fabletlcmod.com/forum/index.php?t=msg&th=5796& ;amp ;start=0&
I will have a look at FE and see if I can figure out how to copy a creature and make an fmp and help you, that will take a day or two tho.
Recolor Compilation #1
Recolor Compilation #2
Make Back-Ups
[Updated on: Sun, 03 November 2013 17:02] Report message to a moderator
|
|
|
|