if saved < score:
saved == score
Two equal signs are used for comparison, for assignment only use one!
if saved < score:
saved = score
With your old code you should see the following warning in the engine: “Standalone expression (the line has no effect)” Always check the debugger!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.