HOW: Help, I want my story to be two languages

Hello, I want to create a story that is two languages, such as English and Spanish, but I don’t know how to do it, thanks in advance :smiling_face_with_three_hearts:

Do you need a translator?

You can use this as reference:

Example:

#the first chapter:

label languages

NARR
Which language do you want to read the story in?

choice
“English.” {

NARR
Are you sure you want to read in English?

choice
“Yes!” {
gain ENGLISH
goto english_path
} “No” {
goto languages
}
} “French.” {

NARR
Are you sure you want to read in French?

choice
“Yes!” {
gain FRENCH
goto french_path
} “No” {
goto languages
}
}

label english_path

#ENGLISH STORY LINE GOES HERE

goto end

label french_path

#FRENCH STORY LINE GOES HERE

goto end

label end

#END OF EPISODE GOES HERE

#and then for episodes 2 and up:

if (ENGLISH) {
goto english_path
} else {
goto french_path
}

label english_path

#ENGLISH STORY LINE GOES HERE

goto end

label french_path

#FRENCH STORY LINE GOES HERE

goto end

label end

#END OF CHAPTER GOES HERE

Helpful Resources to check out:

  1. HOW TO: Labels and Gotos 🖤
  2. HOW TO: Reset Story Progress + Bonus Stuff :blob_sun: (can reset story progress to test other paths)
    Also feel free to check out: 🍀 HOW TO: Choice Inside Choice :yay: :heart:
2 Likes