Thanks, i realy tried it with your instructions, but i did not get it. now i am able to continue my campagne! thanx
Thanks, i realy tried it with your instructions, but i did not get it. now i am able to continue my campagne! thanx
How would you do if you'd want to add a topic to all civilian ? wheter they're generated by ALICE or not
Code:{if (side _x == Civilian) then {_x kbAddTopic [. . .]}} forEach allUnits
The game, Mrs. Hudson, is ON!
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?
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
All dubbing soundfiles are packed in addon dubbing.pbo. Conversation sentences are defined in .bikb files located in every mission folder, subfolder \kb.
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 {};
};
};
Is it actually possible to define custom words? I see in the config, words are defined like this (see dubbingradio_e.pbo):
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?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 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:
in a bikb file would not work, wouldn't it?Code:class { text = "$STR_fullSentence"; speech[] = {"\Sound\part1.ogg", %Number, "\Sound\part2.ogg"}; class Arguments { class Number {type = "simple";}; }; };
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?
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.
Is there any way to let the text disappear faster ?
Because it stays pretty long...