I want to know if this is possible:
I want to change my character’s script name depending on the choice the reader makes Example:
NARR
Pick the name of GUY
choice guy
“bryan”{
#And this will be where @GUY 's script name changes to “bryan” through the story without having to use if’s every time he talks in a scene.
}
“oscar”{
#And this will be where @GUY 's script name changes to “oscar” through the story without having to use if’s every time he talks in a scene.
}
“dwight”{
#And this will be where @GUY 's script name changes to “dwight” through the story without having to use if’s every time he talks in a scene
}
Is it possible to change my character’s @GUY 's script name WITHOUT using inputs or creating 3 identical guys with different names and having to use:
if (guy=“bryan”){
BRYAN
Hi
#+400 lines of script with bryan
}elif(guy=“oscar”){
OSCAR
Hi
#+exact lines as for bryan but with oscar.
}else{
DWIGHT
Hi
#more repeated lines as before but for dwight.
}
If this is a thing, it would save me a lot of stress
I had to rewrite this for other people to understand me better