Page 4 of 8 FirstFirst 12345678 LastLast
Results 31 to 40 of 72

  Click here to go to the first Developer post in this thread.  

Thread: New conversation system how-to

  1. #31
    Thanks, i realy tried it with your instructions, but i did not get it. now i am able to continue my campagne! thanx

  2. #32
    How would you do if you'd want to add a topic to all civilian ? wheter they're generated by ALICE or not

  3.   Click here to go to the next Developer post in this thread.   #33
    BI Developer Jezuro's Avatar
    Join Date
    Nov 8 2002
    Location
    Czech Republic
    Posts
    173
    Author of the Thread
    Code:
    {if (side _x == Civilian) then {_x kbAddTopic [. . .]}} forEach allUnits
    The game, Mrs. Hudson, is ON!

  4. #34
    I just dont get it with this fsm-files, pretty difficult. I read a lot, but it is still hard. but in the beginning you say there is a "Manual" conversation flow. How do i start this manual conversation? i tried it with a sqf file, but it does not work.

    and another question: i want to avoid the player from moving. he should only be able to move his head. how and where do i implement this condition?

  5. #35
    Sorry but is there somewhere a reference for all the default voice classnames so i could like use the phrases from the game like you did in your example mission. Thanks in advance

  6.   Click here to go to the next Developer post in this thread.   #36
    BI Developer Jezuro's Avatar
    Join Date
    Nov 8 2002
    Location
    Czech Republic
    Posts
    173
    Author of the Thread
    All dubbing soundfiles are packed in addon dubbing.pbo. Conversation sentences are defined in .bikb files located in every mission folder, subfolder \kb.

  7. #37
    This is working great for me.

    But there are some words (That I really really need), that I can't make the unit say :/

    This is not my real sentence, lol, but it works, except "sniper" is not spoken.
    In fact, any vehicle is not spoken. I can use SniperRifle, etc., but not vehicles...

    Does vehicle words have postfixes or prefixes? Like vehiclesniper or unitsniper, or something?
    class Sentences
    {
    class RequestReinforcements
    {
    text = "This is sniper";
    speech[] = {thisis,sniper};
    class Arguments {};
    };
    };

  8. #38
    Is it actually possible to define custom words? I see in the config, words are defined like this (see dubbingradio_e.pbo):
    Code:
    class RadioProtocol_EP1_EN: RadioProtocolBase {
    
    	class Words {
    		micOut = {"\ca\DubbingRadio_E\Data\Mic_Out1.ogg"};
    		micOut1 = {"\ca\DubbingRadio_E\Data\over01.ogg"};
    		micOut2 = {"\ca\DubbingRadio_E\Data\over02.ogg"};
    		micOut3 = {"\ca\DubbingRadio_E\Data\over03.ogg"};
    		loop = {"\ca\DubbingRadio_E\Data\radionoise1.ogg"};
    		beepBeep = {"\ca\DubbingRadio_E\Data\beep.ogg"};
    		pause = {"\ca\DubbingRadio_E\Data\empty01sec.ogg"};
    		xmit = {"\ca\DubbingRadio_E\Data\beep.ogg"};
    		sabot = {};
    		mgun = {};
    		NO_SPEECH = {};
    		empty = {};
    		Advance = {"DEFAULT\Advance.ogg"};
    		And = {"DEFAULT\And.ogg"};
    		Are = {"DEFAULT\Are.ogg"};
                    ...
    The natural place do define custom words would be in the description.ext. But I don't see anything mentioned about CfgWords anywhere. So is this currently possible at all (without resorting to addons)? Is it legal to define CfgWords like CfgRadio in the description.ext file? Or shall we use CfgRadio or CfgSounds to define words, would that work?

    The biki states that the argument speech is an array of Strings, where each string is an already defined word in configs. So I guess the easiest solution - without the need to actually define custom words - is not legal, i.e. something like this:
    Code:
    	class 
    	{
    		text = "$STR_fullSentence";
    		speech[] = {"\Sound\part1.ogg", %Number, "\Sound\part2.ogg"};
    		class Arguments {
             class Number {type = "simple";};
    		};
    	};
    in a bikb file would not work, wouldn't it?

    And as for the variable part or the placeholder, %Number in this case, which are later passed along with kbTell.. Shall these sounds be defined as CfgRadio?

  9. #39
    Further I wonder if it's possible to declare alternative stealth/wisper sounds, which could be used to great effect?
    Well, but first we need to know how to define and use custom words. I really hope that this is possible at all, for glueing sentence dynamically together would help a lot with dubbing. The benefits are obvious.

  10. #40
    Master Gunnery Sergeant Wiggum's Avatar
    Join Date
    Jun 17 2009
    Location
    Germany
    Posts
    1,138

    Question

    Is there any way to let the text disappear faster ?
    Because it stays pretty long...

Page 4 of 8 FirstFirst 12345678 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •