- Apr 25, 2017
- 134
- 214
Celaviegroup
Chapter 3
Was looking up event 50, seems its dependent on event[36].progress but its impossible to progress looking at this code...
event[36].progress=14 will enter the " if EVENTS[36].Progress >= 13:" condition first then exit, thus all the code below is unreachable.
Going back, the babydoll and progress get set to 13 together so its impossible to reach the code to get event 50 done.
Simplest correction I can think it it should have been
EVENTS[36].Progress == 13:
EVENTS[36].Progress == 14:
else
$ EVENTS[50].SetDone() since we can raise progress to 15
Chapter 3
Was looking up event 50, seems its dependent on event[36].progress but its impossible to progress looking at this code...
event[36].progress=14 will enter the " if EVENTS[36].Progress >= 13:" condition first then exit, thus all the code below is unreachable.
Going back, the babydoll and progress get set to 13 together so its impossible to reach the code to get event 50 done.
Simplest correction I can think it it should have been
EVENTS[36].Progress == 13:
EVENTS[36].Progress == 14:
else
$ EVENTS[50].SetDone() since we can raise progress to 15
Last edited: