New user, just got a quick coding question. It it possible to tell Ren'Py to make a variable have the same value as another variable? (Both of which need to change at various points in the game.)
I'm writing a Politics Sim where I want at times the Active Minister(One whose dealing with the current issue) to be the same person as the Agriculture Minister. The dialogue calls are then based on this. The game I'm writing has lots of possibilities based on the ministers you pick so this is pretty essential for the game to work.
So far I've tried:
# The game starts here.
label start:
$ agr = 0
$ active = 0
then later, tried both of the following:
$ active = agr()
$ active = $ agr
getting back:
File "game\script.rpy", line 748: invalid syntax
active = $ agr
I know this probably seems simple, but I spent a few hours on the reference/manual and looking through posts here and couldn't find it. I'm also new to programming
Mark

