Hi,
thanks for the suggestion, i tried to use this as a work around, but I don't see a good way.
I need the custom properties for a game on differential diagnosis, therefore I have more than 100 questions and about 500 characters. So to get around creating the dialogs over and over again I created the dialog scripts dynamic using answers like this
//code
@1
String Temperature = cSecondaryCharacter.GetTextProperty("temperature");
cSecondaryCharacter.Say("%s", Temperature);
//code
which makes different characters answer correctly as defined in the custom properties.
Therefore it seems to me very exhausting programming this by using dynamic arrays since I would have to change the arrays too often.
thanks for the suggestion, i tried to use this as a work around, but I don't see a good way.
I need the custom properties for a game on differential diagnosis, therefore I have more than 100 questions and about 500 characters. So to get around creating the dialogs over and over again I created the dialog scripts dynamic using answers like this
//code
@1
String Temperature = cSecondaryCharacter.GetTextProperty("temperature");
cSecondaryCharacter.Say("%s", Temperature);
//code
which makes different characters answer correctly as defined in the custom properties.
Therefore it seems to me very exhausting programming this by using dynamic arrays since I would have to change the arrays too often.