Forum Mod Bakery Docs

dialogue problem.

Posted in Support
Please login to contribute to the conversation.
so i'm trying to make "boy2" and "rednk1" talk to start the bonus mission, but i don't know how to do it,
i made them character codes.
boy2=Character_code
rednk1=Character_code
i made them dialogue folders.
i made the conversations folder.
i made the new voice lines for them, (16-Bit WAV 24000 sample rate Mono)
i used the dialog.spt
And the final result is them doing a staring contest,
help.
The easiest thing to check right off the bat is your dialog.spt entries. They should look something like this in terms of capitalization.
create daSoundResourceData named C_jug_1_convinit_Hom_L1
{
    AddFilename ( "conversations/C_jug_1_convinit_Hom_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
create daSoundResourceData named C_jug_2_convinit_Clt_L1
{
    AddFilename ( "conversations/C_jug_2_convinit_Clt_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
I'm also not entirely sure why you've opted to substitute your dialog codes with "Character_code", but just in case, remember to keep numbers out of there as I believe that can cause trouble.
Everything is perfect, but it's doing the same thing.
Alright, first, what does the conversation look like within dialog.spt? Second, what does your AddNPCCharacterBonusMission() line in leveli.mfk look like?
}
create daSoundResourceData named C_car_1_convinit_Tom_L1
{
    AddFilename ( "conversations/C_car_1_convinit_Tom_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
create daSoundResourceData named C_car_2_convinit_Mhl_L1
{
    AddFilename ( "conversations/C_car_2_convinit_Mhl_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
create daSoundResourceData named C_car_3_convinit_Tom_L1
{
    AddFilename ( "conversations/C_car_3_convinit_Tom_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
create daSoundResourceData named C_car_4_convinit_Mhl_L1
{
    AddFilename ( "conversations/C_car_4_convinit_Mhl_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
create daSoundResourceData named C_car_5_convinit_Tom_L1
{
    AddFilename ( "conversations/C_car_5_convinit_Tom_L1.rsd" 1.000000 )
    SetStreaming ( true )
}
create daSoundResourceData named C_car_6_convinit_Mhl_L1
{
    AddFilename ( "conversations/C_car_6_convinit_Mhl_L1.rsd" 1.000000 )
    SetStreaming ( true )
	AddNPCCharacterBonusMission("boy2", "npd", "bm1_cletus_sd", "bm1", "exclamation", "jug", 1, "exclamation_shadow" );
"Jug" is the name of the conversation, you need to change that to reference your new conversation. Use this:
	AddNPCCharacterBonusMission("boy2", "npd", "bm1_cletus_sd", "bm1", "exclamation", "car", 1, "exclamation_shadow" );
oooohhhhh, i did not notice. thanks