Hi,
I was wondering if anyone could perhaps tell me where I am being dumb. I want a button to add to a "completion" value, but for the life of me I can not figure out where it is not working. I have flat out just copied the code from the tutorials trying to make this work:
init python:
showcompletion= False
completion = 0
def display_completion():
if showcompletion:
ui.frame() #This is optional. It adds a frame around the text.
ui.text("Completion: %d" %completion)
config.overlay_functions.append(display_completion)
my python init for the "completion" value from https://www.renpy.org/wiki/renpy/doc/cookbook/Simple_Onscreen_Inventory
and here is the button:
screen P_tube_options00:
modal False
imagebutton:
xpos 0 ypos 500
idle "idle.png"
hover "hover_text.png"
action [Hide("imagebutton")]
imagebutton:
xpos 180 ypos 180
idle "blank.png"
hover "hover.png"
action [Jump("P_tube00_description"), SetVariable("completion",completion+1), SetVariable('T_options00a',True)]
This is from https://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=9412
However, whenever I print the "completion" afterward, it is still 0. If I hard code a $completion+=1 in the main script I get the "completion" counter to increase by one. However, if I put SetVariable("completion",completion+=1), or $completion+=1 in the imagebutton tabs, I get an error.
I know I am missing something very simple and sorry if it is not explained well.