I’m having trouble with seting the name of the player in the choicescrip_stats
My code looks like this in the startup:
*create name “”
Let’s begin with some simple questions, what’s your name?
*input_text name
*set name "{name}"
{name} is a really nice name.
It works in the game.
What I have to do in the stats so the name will apear as the input_text the player choose?
If I do that:
Name: ${name}
It will apper just:
Name:
Using the same logic, can I use text as variable?
Exemple:
*if (variable > 30)
*set Magic “Elemental”
*if (variable < 30)
*set Magic “Caotic”
And on the stats:
Magic: Elemental/Caotic/Etc depending on wich one you got
so insted of using the if (variable > 30) I can use if magic “elemental” or something like that?