Jump to content

Search the Community

Showing results for tags 'talking'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 1 result

  1. Hi i have a question how is it currently working for you ? I have : class CfgSentences { class ConversationsAtBase { class Briefing { file = "brief.bikb"; #include "brief.bikb" }; }; class ConversationsAtOutpost { class Outpost { file = "taskone.bikb"; #include "taskone.bikb" }; }; }; and run via trigger : nul = execVM "chat1.sqf"; . and it throws me an error that the class ConversationAtBase cannot be found. I have chat1.sqf to run the dialog for briefing and chat2.sqf to run the trigger after the task is completed. Everything is put in the same folder where the mission is stored. brief.bikb : class Sentences { class Brief_Jenda_Line_1 { text = "Hello gentlemen, I have a mission for you. You scouts need to climb the hill north of here. It's somewhere between the road and the shithole town of Kundshalaka. There's an anti-aircraft detachment of those goatmen there, and the helicopters can't fly because of it." speech[] = { "\chat\t1.ogg" }; class Arguments {}; actor = "Jenda"; }; class Brief_Matous_Line_2 { text = "Understood, sir. I'll pack up my men and we'll go shoot them." speech[] = { "\chat\t2.ogg" }; class Arguments {}; actor = "Matous"; }; class Brief_Jenda_Line_3 { text = "That's not all Sarge . When you clear this you need to go down to the town between Shakalaka and some Yakavlanka's factory . The civilians are said to have some important information so ask them what they know." speech[] = { "\chat\t3.ogg" }; class Arguments {}; actor = "Jenda"; }; class Brief_Matous_Line_4 { text = "Yes, sir. I understand, sir. Chalpy let's go get 'em." speech[] = { "\chat\t4.ogg" }; class Arguments {}; actor = "Matous"; }; class Brief_Patrik_Line_5 { text = "Yes sir..... Let's unleash the carnage!!!!!" speech[] = { "\chat\t5.ogg" }; class Arguments {}; actor = "Patrick"; }; }; class Arguments {}; class Special {}; startWithVocal[] = {hour}; startWithConsonant[] = {europe, university}; . chat1.sqf : ["Briefing", "ConversationsAtBase"] call bis_fnc_kbtell; chat2.sqf : ["Outpost", "ConversationsAtOutpost"] call bis_fnc_kbtell; taskone : class Sentences { class Outpost_Matous_Line_1 { text = "Alpha 1-1 to Hotel 1-1. The anti-aircraft detachment has been successfully destroyed. Receiving." speech[] = { "\chat\o1.ogg" }; class Arguments {}; actor = "Matous"; }; class class class Outpost_Jenda_Line_2 { text = "Hotel 1-1 Roger. Alpha 1-1, move to the factory and ask the civilians what they need. The helicopter crew can get ready. You may need reception." speech[] = { "chat1.ogg" }; class Arguments {}; actor = "Jenda"; }; class Brief_Matous_Line_3 { text = "Roger. Let's move to the factory over." speech[] = { "\chat\o3.ogg" }; class Arguments {}; actor = "Matous"; }; class Brief_Ondra_Line_4 { text = "Roger. Let's get the helicopters ready. In case we need to support the boys. Over." speech[] = { "\chat\o5.ogg" } class Arguments {}; actor = "Ondra"; }; }; class Arguments {}; class Special {}; startWithVocal[] = {hour}; startWithConsonant[] = {europe, university};
×