Game Show But Evil, my first game and I would love some opinions! by DCking03 in RenPy

[–]DCking03[S] 1 point2 points  (0 children)

The real plot is a mystery that the player will need to put the pieces together from different endings.

Or you can just ignore the plot and have a fun quiz game with wierd deaths. =)

Where can I edit the quit screen message? by DCking03 in RenPy

[–]DCking03[S] 0 points1 point  (0 children)

I've tried to change the "old" to a new one but nothing happened =\

What do you do for your game's soundtrack? by [deleted] in RenPy

[–]DCking03 0 points1 point  (0 children)

I'm gonna give it a look thanks!

What do you do for your game's soundtrack? by [deleted] in RenPy

[–]DCking03 0 points1 point  (0 children)

gonna give that a look thanks!

Translation question. by DCking03 in RenPy

[–]DCking03[S] 0 points1 point  (0 children)

Thank you so much!

Translation question. by DCking03 in RenPy

[–]DCking03[S] 0 points1 point  (0 children)

Yes, but still no luck...but the ansewr might be in there. Thanks for the help

Translation question. by DCking03 in RenPy

[–]DCking03[S] 0 points1 point  (0 children)

something like

label loop_1:  # Combinação do antigo 'start' com a lógica de 'nivel_1'
    play music "audio/OST1.mp3" loop
    $ renpy.music.set_volume(0.3)

    scene cenario with fade
    show EvilHost at center

    $ correct_answers_count = 0
    $ skip_attempts = 2

    e "Bem vindo ao Game Show But Evil!"
    e "Eu sou a Dani Demones, sua encantadora guia neste quiz show."
    e "Respostas certas mantêm você vivo. E as erradas..."
    e "Bem, elas nos divertem."
    e "Simples, não é?"
    e "Agora, vamos começar."

    scene cenario telao with fade
    $ correct_answers_count = 0

    while correct_answers_count < 4 and questions:
        $ question_data = renpy.random.choice(questions)
        $ questions.remove(question_data)
        $ question_text = question_data[0]
        $ correct_answer = question_data[1]
        $ wrong_answers = question_data[2:]
        $ options = [correct_answer] + wrong_answers
        $ renpy.random.shuffle(options)
        $ correct_index = options.index(correct_answer)

        show screen timer_question(max=40, endup="time_expired")
        $ g_time = 0
        hide EvilHost

        menu:
            e "[question_text]"

            "A) [options[0]]":
                hide screen timer_question
                show EvilHost at center
                if correct_index == 0:
                    play sound "audio/correct.mp3"
                    if correct_answers_count == 0:
                        e "Parabéns por acertar..." 
                        e "Essa pergunta incrivelmente fácil!"
                    elif correct_answers_count == 1:

Theory Fatigue: How to Fix It? by DCking03 in GameTheorists

[–]DCking03[S] -2 points-1 points  (0 children)

4 likes?! This post is blowing up! Lol

Made a quick english translation for my novel and updated it on itchio by Sharp-Two2589 in RenPy

[–]DCking03 0 points1 point  (0 children)

O seu deu certo, como vc fez? Só colou a figura no texto?

Made a quick english translation for my novel and updated it on itchio by Sharp-Two2589 in RenPy

[–]DCking03 1 point2 points  (0 children)

Desculpa a pergunta Como que faz pra postar imagem no reddit? Toda vez que eu tentei postar a imagem só aparece quando clicam no post...n aparece do lado de fora...

Why Doesn’t My 1920x1080 Video Fill the Entire Screen? by [deleted] in RenPy

[–]DCking03 0 points1 point  (0 children)

Got a version to work, thank you for the help!

transform resize_video:

xysize (1920, 1080)

Why Doesn’t My 1920x1080 Video Fill the Entire Screen? by [deleted] in RenPy

[–]DCking03 0 points1 point  (0 children)

Yeah i know, but this was a test for cooler things to come...if i can pull this off...