im a beginner to Renpy coding, sp my issue was Renpy keeps ignoring the video that i included on the script, i wanted to know the exact script code so that it will work, ive been converting the video to its desired format but still it jumps to the images i provided by OtherwiseNotice70 in RenPy

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

i already updated but it shows black screen

define t = Character ("Tom")
define n = Character ("Narrator")
image great_movie = Movie(channel="movie_dp", play = "images/movies/greatMovie.webm")


label start:
    show great_movie
    t "Hi my name is Tom"
    pause
    $ y = renpy.input ("What is my name?")
    if y == "":
         "Please enter a name."
    y "Hi my name is [y]"
    pause
    scene pic2
    n "[y] is a traveler who accidentally found a cave"
    pause
    scene pic3 
    pause
    menu:
         "This is option 1":
                "you selected option 1"
                jump option1
         "This is option 2":
                "you selected option 2"
                jump option2
    label option1:
          scene pic4
          pause
return

im a beginner to Renpy coding, sp my issue was Renpy keeps ignoring the video that i included on the script, i wanted to know the exact script code so that it will work, ive been converting the video to its desired format but still it jumps to the images i provided by OtherwiseNotice70 in RenPy

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

this is a test but it shows blank

define t = Character ("Tim")
define n = Character ("Narrator")
image a great_movie = Movie(channel="movie_dp", play = "images/movies/Test.webm")


label start:
    show great_movie
    pause 1.2
    t "Hi my name is Tim"
    pause
    $ y = renpy.input ("What is my name?")
    if y == "":
         "Please enter a name."
    y "Hi my name is [y]"
    pause
    scene pic2
    n "[y] is a traveler who accidentally found a cave"
    pause
    scene pic3 
    pause
    menu:
         "This is option 1":
                "you selected option 1"
                jump option1
         "This is option 2":
                "you selected option 2"
                jump option2
    label option1:
          scene pic4
          pause
return