Search found 35 matches

by gamajorbatistan
Sun Mar 04, 2018 8:14 am
Forum: Ren'Py Questions and Announcements
Topic: Can't move a character?
Replies: 13
Views: 2179

Can't move a character?

Why does nothing work with RenPy? It's beyond stunning how no matter what you do and try, nothing works. You can read the documentation and study old answers to similar questions, and it does absolutely nothing for you because no matter what you try to do with your code, it will simply not work. Awe...
by gamajorbatistan
Sun Mar 04, 2018 6:06 am
Forum: Ren'Py Questions and Announcements
Topic: Why can't I get pause to work?
Replies: 2
Views: 591

Why can't I get pause to work?

renpy.pause(delay=None, music=None, with_none=None, hard=False, checkpoint=None)

I've tried:

Code: Select all

renpy.pause(delay=3, music=None, with_none=None, hard=True, checkpoint=None)

Code: Select all

renpy.pause(3, None, None, True, None)
and both prompt an error.
by gamajorbatistan
Sun Mar 04, 2018 4:38 am
Forum: Ren'Py Questions and Announcements
Topic: Why does it take an act of god to get sounds to work?
Replies: 3
Views: 432

Re: Why does it take an act of god to get sounds to work?

Hey I figured it out. And I feel a bit silly now. It was just that I was jumping scenes straight after playing the sound and that was what interrupted the sound being played before I could hear anything. Just the quirks of working with an unfamiliar system I guess.
by gamajorbatistan
Sun Mar 04, 2018 4:32 am
Forum: Ren'Py Questions and Announcements
Topic: Why does it take an act of god to get sounds to work?
Replies: 3
Views: 432

Re: Why does it take an act of god to get sounds to work?

It works in the test sound thingy under preferences. But it does not work in the game. It just magically decided 'yeah fuck this, I'm not doing this. Sorry mate'. What the hell do I do to make it do what it's supposed to do? Isn't that the basis for programming? The computer does what it's told? How...
by gamajorbatistan
Sun Mar 04, 2018 4:16 am
Forum: Ren'Py Questions and Announcements
Topic: Why does it take an act of god to get sounds to work?
Replies: 3
Views: 432

Why does it take an act of god to get sounds to work?

I can get music to work just fine using play music "audio/music/song01.ogg" But when it comes to sound effects aka play sound "audio/sound/ui_confirm.wav" or play sound "audio/sound/ui_confirm.ogg" I can't get it to work. And believe me, I've googled and tinkered and tr...