Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Python and Renpy are programming languages where you need to write one command on one line. Some of your text is simply not displayed due to the fact that you split the commands into two lines

(+1)

for example:


"I turned my head to the left and saw a pale-yellow sandy beach where the bodies of some unfotunate
souls laid."

part '"I turned my head to the left and saw a pale-yellow sandy beach where the bodies of some unfotunate' - will be shown

part 'souls laid."' - wont be shown

(+1)

Ah! I see thanks for the tips! I will make sure everything going just fine~ <3

(1 edit) (+2)

python can use semicolon to break commands instead of newlines.

and renpy is actually just python with some extensions to make it easier to create Visual Novel type stuff in.

```
X="hello world";print(X)
```
works the same way as 
```
X="hello world"
print(X)
```

and inside of strings you can use an escape sequence (just put a \ at the end of the line) to have the interpreter ignore the newline character.

(+1)

Thanks for the tips! I appreciate it.. I will make sure everything going to be okay