I'm making a simple battle system in C2, and at the end of each turn I use "Restart Layout" to restart the turn. But while it doesn't RESET any variables, it "resets the value of all variables".
I'll try to make my issue easier to understand.
On "Attack Button" clicked
->Add 1 to "Attack Variable"
When "Attack Variable" = 1
->do the attack thingy
The problem I have is that, when the layout is restarted, it resets "Attack Variable" to 1 which "does the attack thingy" again, at the battle menu screen.
What do?