Search found 7 matches

by Balladsword
Thu Jul 10, 2014 10:44 am
Forum: Old Threads (– September 2014)
Topic: [CLOSED]We are looking for a background artist (unpaid).
Replies: 4
Views: 684

Re: We are looking for a background artist (unpaid).

We are all a learning newbies, so don't worry about that.

We gladly accept your offer, expect a pm in the future.

Good luck to you too. (^-^)
by Balladsword
Thu Jul 10, 2014 10:21 am
Forum: Old Threads (– September 2014)
Topic: [CLOSED]We are looking for a background artist (unpaid).
Replies: 4
Views: 684

Re: We are looking for a background artist (unpaid).

It is done with image maps. But to make the items disappear from the background and change the scene. screen bed2: imagemap: ground "bedroom.jpg" hotspot (69,70,114,767) clicked Jump ("kleren") hotspot (356,546,146,253) clicked Jump ("la") hotspot (351,237,60,128) clicked Jump ("note") label stuff: ...
by Balladsword
Wed Jul 09, 2014 12:20 pm
Forum: Old Threads (– September 2014)
Topic: [CLOSED]We are looking for a background artist (unpaid).
Replies: 4
Views: 684

[CLOSED]We are looking for a background artist (unpaid).

We are a group of people who live in the Netherlands. This is the first visual novel we are making and we are looking for a background artist. We do this just for fun so it's unpaid. Story: Our game is called Laurier (Dutch for Laurel. The rest of the game is in English). The game is about a boy nam...
by Balladsword
Tue Jul 01, 2014 1:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Why use True and False instead of 0 and 1 ?
Replies: 5
Views: 623

Re: Why use True and False instead of 0 and 1 ?

I see, that makes sense.

Sorry for my clumsiness and thank you for the quick response. ^-^
by Balladsword
Tue Jul 01, 2014 12:56 pm
Forum: Ren'Py Questions and Announcements
Topic: Why use True and False instead of 0 and 1 ?
Replies: 5
Views: 623

Why use True and False instead of 0 and 1 ?

So i was doing something like this: label tree: $ item = True $ girl += 2 if girl == 2 and item = True: #Rendez vous jump nextday This did not work, so I replaced False / True with 0 / 1: label tree: $ item = 1 $ girl += 2 if girl == 2 and item == 1: #Rendez vous jump nextday This did work. I'm not ...
by Balladsword
Tue Apr 22, 2014 7:01 am
Forum: Ren'Py Questions and Announcements
Topic: How to change the look of a countdown screen ?
Replies: 2
Views: 490

Re: How to change the look of a countdown screen ?

That answers my question.

Thank you very much, Mr. Sundownkid.

.
by Balladsword
Mon Apr 21, 2014 4:11 pm
Forum: Ren'Py Questions and Announcements
Topic: How to change the look of a countdown screen ?
Replies: 2
Views: 490

How to change the look of a countdown screen ?

How do I change the look of the timer for timed menus ?
Can I input images in order to make my own countdown screen ?

Sorry if there is an obvious way to do this, I didn't no where to search for my answer.