- Sep 13, 2017
- 79
- 644
I've spent a couple of hours trying to figure this out, and really just want to puke at it.
farmw1a etc are simple png files of a character working on a farm. I'm trying to display those randomly over my scene farm001.
All I end up with is scene farm001 with that grey renpy girl saying "twork" in the middle
What am I doing wrong here?
Python:
$ twork = renpy.random.choice(['farmw1a.png', 'farmw2a.png', 'farmw3a.png', 'farmw4a.png'])
#I've defined twork both before and after the label start, but with no success (Not sure if that matters anyhow. I've always found this confusing)#
label farm:
if yogavisit == 0:
scene farm001
show twork
ys "I've got nothing to do here"
menu:
"Return":
call worldmap
All I end up with is scene farm001 with that grey renpy girl saying "twork" in the middle
What am I doing wrong here?