Home   Help Search Login Register  

Author Topic: Disable Conversation in Intro  (Read 2391 times)

0 Members and 1 Guest are viewing this topic.

Offline JamesF1

  • Editors Depot Staff
  • *****
    • JamesBurgess.co.uk
Disable Conversation in Intro
« on: 13 Jan 2010, 00:23:11 »
I've tried all the various means of disabling conversations:
Code: [Select]
soldier1 disableConversation true;
soldier1 setVariable ["BIS_noCoreConversations", true];
enableRadio false;
All of these, as normal, work in the mission itself... but I'm still getting all the "Hi dude." crap in my intro.  I've tried initialising from individual unit init lines (in the intro), I've tried it in my intro camera script (before anything else, or after a bunch of other stuff, or after a small 'sleep')... and I keep getting the messages.

Any clues?  I'm probably missing something obvious - but, hey :)

Offline kju

  • Members
  • *
    • PvPScene - The ArmA II multiplayer community
Re: Disable Conversation in Intro
« Reply #1 on: 14 Jan 2010, 10:14:09 »
intro means SP, type intro right?

Offline JamesF1

  • Editors Depot Staff
  • *****
    • JamesBurgess.co.uk
Re: Disable Conversation in Intro
« Reply #2 on: 14 Jan 2010, 14:31:19 »
Yup, it's SP, and selecting 'Intro' from the drop-down in the editor.  Everything else works fine, I just can't get 'em to stop conversing with the camera/each other!

Offline Trapper

  • Honoured Contributor
  • ***
  • I'm a llama!
Re: Disable Conversation in Intro
« Reply #3 on: 15 Jan 2010, 11:43:45 »
Did you add the command to everyone or just the player character? Maybe the different ai groups are start talking when they are close to each other.

Offline JamesF1

  • Editors Depot Staff
  • *****
    • JamesBurgess.co.uk
Re: Disable Conversation in Intro
« Reply #4 on: 15 Jan 2010, 14:17:24 »
I've tried both approaches, neither seems to work adequately. :(  I think the problem is more them talking amongst each other, as the player unit is a long distance away (and I've even tried switching it to the other side, just in case).

Offline kju

  • Members
  • *
    • PvPScene - The ArmA II multiplayer community
Re: Disable Conversation in Intro
« Reply #5 on: 15 Jan 2010, 21:28:13 »
what about disable radio?

Offline JamesF1

  • Editors Depot Staff
  • *****
    • JamesBurgess.co.uk
Re: Disable Conversation in Intro
« Reply #6 on: 16 Jan 2010, 04:12:38 »
Do you mean removing the actual radio item, or doing:
Code: [Select]
enableRadio false;(in that case, I've already tried).

I'm just puzzled more than anything.  :dunno:

Offline h-

  • OFPEC Site
  • Administrator
  • *****
  • Formerly HateR_Kint
    • OFPEC
Re: Disable Conversation in Intro
« Reply #7 on: 16 Jan 2010, 11:39:50 »
Where exactly have you tried using those lines?
Have you tried creating initIntro.sqf and putting them there?
Project MCAR   ---   Northern Fronts   ---   Emitter 3Ditor
INFORMATIVE THREAD TITLES PLEASE. "PLEASE HELP" IS NOT ONE..
Chuck Norris can divide by zero.

Offline JamesF1

  • Editors Depot Staff
  • *****
    • JamesBurgess.co.uk
Re: Disable Conversation in Intro
« Reply #8 on: 16 Jan 2010, 13:45:45 »
I've tried various permutations of the above commands in the player init,  the units' individual inits, and in my intro camera script before anything else.

I've tried putting it in initIntro.sqf - but it seems to never get executed at all.  I'm sure I'm missing something here, but I'm really not sure what :dunno:

Thanks for the suggestions thus far, though, guys  :good:

Offline h-

  • OFPEC Site
  • Administrator
  • *****
  • Formerly HateR_Kint
    • OFPEC
Re: Disable Conversation in Intro
« Reply #9 on: 16 Jan 2010, 16:11:18 »
Quote
I've tried putting it in initIntro.sqf - but it seems to never get executed at all
Odd, just tested this myself and it seems to get executed just fine, as long as you preview it in the intro "section".
It also nicely prevented the soldiers from speaking to each other..

My magnificent intro was constructed so that dude1 was standing alone and then dude2 walks to him (previewed via player), no camera scripting involved..
The initIntro.sqf contains:
Code: [Select]
enableRadio false;
{_x disableConversation true} forEach [dude1,dude2,player];
{_x setVariable ["BIS_noCoreConversations", true]} forEach [dude1,dude2,player];

There however seems to be a weird bug in the game regarding this:
If I let those two guys speak in one preview, then add that stuff into the initIntro and preview again the global radio output text of what they said to each other on the previous run is displayed from the second the intro starts regardless of what enableRadio is set to (and the guys of course won't speak to each other)..  ???
« Last Edit: 16 Jan 2010, 16:16:13 by h- »
Project MCAR   ---   Northern Fronts   ---   Emitter 3Ditor
INFORMATIVE THREAD TITLES PLEASE. "PLEASE HELP" IS NOT ONE..
Chuck Norris can divide by zero.

Offline JamesF1

  • Editors Depot Staff
  • *****
    • JamesBurgess.co.uk
Re: Disable Conversation in Intro
« Reply #10 on: 16 Jan 2010, 17:00:54 »
How peculiar.  :dunno:  My problem isn't that you can hear them, (it's an island intro, technically) but simply that the global radio text just appears - the same as you just suggested.

Thanks for your efforts - I guess I just keep looking for ways to make them shut up  :D

Offline zonker3210

  • Members
  • *
Re: Disable Conversation in Intro
« Reply #11 on: 29 Jan 2010, 05:20:44 »
If anyone can figure out a script-based way to shut the friendly AI the **** up, that would be wonderful! It's really annoying to be constantly bombarded with their "Go! I'm covering! Go! I'm covering! Go! I'm covering! Move out!" crap. Ideally, they'd be capable of reporting enemy contacts without feeling the need to inform the world whenever they change their stance.