Questions tagged [renpy]

Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell stories with the computer.

Ren'Py is a visual novel engine that helps you use words, images, and sounds to tell stories with the computer. These can be both visual novels and life simulation games. The easy to learn script language allows you to efficiently write large visual novels, while its Python scripting is enough for complex simulation games.

Ren'Py is open source and free for commercial use. It supports Windows, Mac OS X, Linux, Android, and iOS.

Documentation

98 questions
0
votes
2 answers

When I try to run my Ren'py code, it says "After loading the script. OverflowError: value too large to convert to short"

I don't know what's wrong because it's not the actual CODE... I have the labels in a set of boys and I took each set (love interest) of labels out and ran them individually)... They worked perfectly fine. However, when I closed it and tried to…
pyopyon
  • 21
  • 1
  • 3
-1
votes
1 answer

Ren'Py - If Elif Dialogue Statement

My code: if $ nice_dec4 = true: a "Last night, was fantastic, I.." a "Needed it." elif $ mean_dec4 = true: a "Hey.." a "I was wondering if.." a "Nevermind." b "NO!" b "Could I.. stay over?" show sloane tired…
Archsenal
  • 1
  • 1
-1
votes
4 answers

How to Integrate HTML in Python

It is necessary to integrate the html code in python so that it displays on output. I searched all over the Internet, downloaded many different libraries, but they only do html code through python, and I needed it to be displayed on the…
MrTorex
  • 1
  • 1
  • 6
-1
votes
2 answers

Increasing a variable by either .5 or 1, depending on current value

I'm trying to make a manual increase of a value (via a button), and increase to the nearest whole number, before continuing to increase by one for each click. So, if the variable is var = 1 increase by 1 to 2, but if var = 1.5 increase to 2 This is…
junkfoodjunkie
  • 3,168
  • 1
  • 19
  • 33
-1
votes
1 answer

cannot build anymore(Xcode8.0 iOS10.0.2)

I tried to build game which is created by renpy (Ren'Py 6.99.11.1749). I succeeded building the game on iOS simulator (iPhone 6). But I tried to run on my device (iPhone 5s, iOS 10.0.2) and that build failed. Xcode (Xcode 8.0) complains…
shikugawa
  • 37
  • 2
-1
votes
1 answer

Ren-py: Why doesn't this work?

I want the images to be loaded depending on a variable "ImgVal" $ ImgVal = [] $ image bob = "b_neutral_%s.png" % ImgVal $ image bob_sad = "b_sad_%s.png" % ImgVal $ image bob_happy = "b_happy_%s.png" % ImgVal
-3
votes
1 answer

Ren'Py: Syntax errors all over the place

I first downloaded Ren'py, but already had problems on the start. When opening any of the scripts, that belonged to demo projects, I have been seeing syntax errors on almost every keyword. I tried to search for something like "define is not defined…
-3
votes
1 answer

Variable setting a variable to be used

I've been working with Ren'Py engine, a simple engine for visual novels using Python to do stuff. I came across this problem and dunno what to do, anybody can gimme a hand? bar: StaticValue(variable, value) Bar creates a bar representing…
Lezalith
  • 1
  • 1
1 2 3 4 5 6
7