Forum Mod Bakery Docs

My Follow Mission keeps automatically completing itself when i get in my car.

Posted in Support
Please login to contribute to the conversation.
[code]SetVehicleAIParams( "cBlbart", 50, 51 ); SetStageAITargetCatchupParams(    "cBlbart", 20, 70);
I copied this exactly and it still doesn't work however i did shorten the last column

To this:
SetStageAITargetCatchupParams("cBlbart", 20, 70);
Should i keep it as the way you sent it? or would that still have no effect

EDIT: Nevermind, still crashes anyway
This post has been removed.
8 yrs ago (Statistics)
It would have no effect. The reason it looked odd was because of the BBCode screwing it up.

Try placing the objective bit first so the objective is first and the condition is second. The more I think about it, the more I think that might be causing issues for you since the game might be freaking out since it's expecting the objective to be defined first. Granted I'm not certain, but that could very well be an issue here.
I will try that out and get back to you if that was the case or not.
Still Crashing :(
I just noticed something a bit off about your script.

AddStageMessageIndex(12);
I believe that should be "SetStageMessageIndex(12);".

Try that and see if it helps any. 
I already did that a while ago it had no effect
Hmm.

Try changing the Objective in the first stage to AddObjective("getin","neither");. Radical sometimes does that for whatever reason, and that might be the source of issues you're having.

If not, could you please upload the modified info and load file to a site like pastebin and let me know? I have a sample Mod set up from when I was helping another user with some crashing issues, so I can put that into the mod and try the scripts myself and figure out the issue.
the dialogue stuff wont make sense cos its just them two files lol here you go
www.mediafire.com/?i9rb41drrzej56t
Looking at this script closer, I've noticed this issue:

SetConditionVehicle( "cBlbart" );
This isn't a valid function. I believe you were trying to use this:

SetCondTargetVehicle("cBlbart");
Try that and see if it works.

EDIT: Just tested it on my end. This was the issue the whole time!