Files
VNGame/game/script.rpy
T

34 lines
840 B
Plaintext
Raw Normal View History

2026-06-09 11:08:04 +02:00
# The script of the game goes in this file.
# Declare characters used by this game. The color argument colorizes the
# name of the character.
define s = Character("Sara")
# The game starts here.
label start:
# Show a background. This uses a placeholder by default, but you can
# add a file (named either "bg room.png" or "bg room.jpg") to the
# images directory to show it.
scene bg room
# This shows a character sprite. A placeholder is used, but you can
# replace it by adding a file named "eileen happy.png" to the images
# directory.
show eileen happy
# These display lines of dialogue.
s "You've created a new Ren'Py game."
s "Once you add a story, pictures, and music, you can release it to the world!"
# This ends the game.
return