Will SetVehicleAIParams( "cBlbart", 50, 51 ); SetStageAITargetCatchupParams( "cBlbart", 20, 70);I copied this exactly and it still doesn't work however i did shorten the last co
[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.
Kenny Giles 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 thi
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.
Will I will try that out and get back to you if that was the case or not.
I will try that out and get back to you if that was the case or not.
Kenny Giles 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 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.
Will I already did that a while ago it had no effect
I already did that a while ago it had no effect
Kenny Giles 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
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.
Will the dialogue stuff wont make sense cos its just them two files lol here you go
https://www.mediafire.com/?i9rb41drrzej56t
the dialogue stuff wont make sense cos its just them two files lol here you go
www.mediafire.com/?i9rb41drrzej56t
Kenny Giles 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:
SetCondTargetVe
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!