Search found 35 matches

by gamajorbatistan
Thu Jul 05, 2018 5:07 pm
Forum: Ren'Py Questions and Announcements
Topic: SKIPPING FEATURE BEHAVING RANDOMLY
Replies: 5
Views: 1396

SKIPPING FEATURE BEHAVING RANDOMLY

WHAT THE FUCK MAN. I'M SO TIRED OF THIS PROGRAM. WHY DOES IT ALWAYS DO WHATEVER THE FUCK IT WANTS RANDOMLY??? HOW ARE PEOPLE SUPPOSED TO LEARN IT IF THERE IS NO CONSISTENCY IN HOW IT BEHAVES? FUUUUUUUUUUUUUUUUUCKKKKKKKKKKKKIIIIIIIIIIIIIIIIING SHIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIITTTTTTTTTTTTTTTTTT...
by gamajorbatistan
Thu Jun 28, 2018 8:47 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Image not found' but it's there!!! What the hell??
Replies: 6
Views: 884

Re: 'Image not found' but it's there!!! What the hell??

If your images are in "images/char..." then you are referring them wrong. Try: image Elsa_blinking lip sync: "images/char/else/eyes_0001.png" pause renpy.random.randint(2,4) "images/char/else/eyes_0002.png" pause 0.2 repeat No need to put image definitions in an init b...
by gamajorbatistan
Thu Jun 28, 2018 6:51 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Image not found' but it's there!!! What the hell??
Replies: 6
Views: 884

Re: 'Image not found' but it's there!!! What the hell??

Mmmm. The code seems correct (although you have too much indent in the image definition. Why do you have that? It's maybe inside a block of something?). Where are your images? In the game/char directory or in the game/images/char directory? Yes, it's inside my init block. This is so strange and fru...
by gamajorbatistan
Thu Jun 28, 2018 2:51 pm
Forum: Ren'Py Questions and Announcements
Topic: End of line comma error ???
Replies: 7
Views: 964

Re: End of line comma error ???

Oh sweet, thanks for the lovely feedback input and ideas. I think dynamic displayables is something I'll want to have a closer look at!
by gamajorbatistan
Thu Jun 28, 2018 2:48 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Image not found' but it's there!!! What the hell??
Replies: 6
Views: 884

'Image not found' but it's there!!! What the hell??

Why do these weird errors keep happening ? I'm so lost with RenPy, it's like it's making fun of me and bullshitting just to piss me off. So for absolutely no apparent reason, I'm now getting an red-text 'Image not found' upon running some lip sync. But the image is there!!! The exact same code works...
by gamajorbatistan
Wed Jun 27, 2018 8:19 pm
Forum: Ren'Py Questions and Announcements
Topic: End of line comma error ???
Replies: 7
Views: 964

Re: End of line comma error ???

ATL cannot assign a value to a variable, so the $ rng = line is invalid ATL also does not support conditionals like you have written ( if ... else ) Oh. Wow, I was completely unaware I was in ATL. Well that's a real bummer. The limitations of RenPy are so saddening tbh. Guess I can't randomize thin...
by gamajorbatistan
Wed Jun 27, 2018 7:47 pm
Forum: Ren'Py Questions and Announcements
Topic: End of line comma error ???
Replies: 7
Views: 964

End of line comma error ???

Why do I get an error for this bit of code?? I'm starting to question my sanity here. image happy_anim lip sync: "char/Elsa/face01.png" $ RNG = renpy.random.randint(4,6)*1 if RNG <= 20: pause 0.2 else: pause renpy.random.randint(3,6) "char/Elsa/face02.png" pause 0.2 repeat This i...
by gamajorbatistan
Wed Jun 27, 2018 4:12 am
Forum: Ren'Py Questions and Announcements
Topic: Random pause time
Replies: 2
Views: 979

Random pause time

So I'm using this code to try to get random pause time, but like everything else I ever tried to do with RenPy, it's not working. It's always the same pause time. Is it because always the same one-time-randomly-generated number is called? How do I make it re-roll the number? Here I define my RNG gen...
by gamajorbatistan
Wed Jun 20, 2018 12:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Random pause time
Replies: 4
Views: 761

Re: Random pause time

If you want for a pause that last a random amount of time... $ dice=renpy.random.randint(1,10) $ renpy.pause(dice,hard=True) In this case, pause last from 1 to 10 seconds (broadly, it's never so precise). If you want for the player to click and skip the pause, remove the hard=True part. Awesome, th...
by gamajorbatistan
Mon Jun 18, 2018 9:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Random pause time
Replies: 4
Views: 761

Random pause time

How can I implement a random pause in my game?

I've done plenty of googling and forum browsing but nothing seemed to work, when it should be such a simple straight-forward thing to do ?
by gamajorbatistan
Sat Jun 16, 2018 11:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated lips and eye blink help!
Replies: 10
Views: 1885

Re: Animated lips and eye blink help!

I'm now trying to solve the issue by adding a manual switch. So I declare the 'loopcounter' variable at the beginning of my project like so $ loopcounter = 0 and then I edit the lip sync to include this conditional statement, in order to control the number of loops by simply changing loopcounter imm...
by gamajorbatistan
Sat Jun 16, 2018 6:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated lips and eye blink help!
Replies: 10
Views: 1885

Re: Animated lips and eye blink help!

Wow, it works! Thanks so much. You have no idea how grateful I am. This turned out to be so much easier than I thought with a little bit of help and guidance. Seriously! Now my last issue for the near foreseeable future. I'm a bit irked by the fact that when my character says something very short, l...
by gamajorbatistan
Sat Jun 16, 2018 1:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Animated lips and eye blink help!
Replies: 10
Views: 1885

Re: Animated lips and eye blink help!

Oh my god, sweet! I got it to work now. It's repeating nicely. No random pauses yet but, exactly like you wisely said, adding complexity is best done later. The main problem I'd still really need help solving now is how to stop the lip animation when the characters line is finished. Is this very har...
by gamajorbatistan
Sat Jun 16, 2018 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: Animated lips and eye blink help!
Replies: 10
Views: 1885

Re: Animated lips and eye blink help!

Sorry, but you defined selina_cold lip sync... and you don't show it... I don't know how :( I tried this and it gave me a buttload of errors (one related to the random integer function where i have real numbers instead of ints, but i don't know how to get it to accept real values) selina_cold lip s...