Search found 105 matches

by LiveTurkey
Sat Aug 04, 2018 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: How to fix this name bug?
Replies: 3
Views: 627

How to fix this name bug?

So I'm trying to get the player to enter a character name and I have two minor visual bugs. Here is a picture https://i.imgur.com/ZlTVSSgl.jpg The first bug is that the place where you type happens directly over the place where it says "Enter your name" The second bug is that the cursor is...
by LiveTurkey
Fri Aug 03, 2018 8:02 pm
Forum: Ren'Py Questions and Announcements
Topic: make a character say something inside of an imagebutton?
Replies: 6
Views: 1367

Re: make a character say something inside of an imagebutton?

Almost... action [ Hide ("hallwayThreeCorridorFourDoorOptions"), Hide ("hallwayThreeOptions"), If( introductionOver, Jump ("corridorFour"), # True action Function( renpy.say, "Eileen", "I really shouldn't miss my first class" ) # False action ) ] Th...
by LiveTurkey
Fri Aug 03, 2018 5:32 pm
Forum: Ren'Py Questions and Announcements
Topic: make a character say something inside of an imagebutton?
Replies: 6
Views: 1367

make a character say something inside of an imagebutton?

I have the following imagebutton ############################## Corridor Four Door Options Screen ###################################### screen hallwayThreeCorridorFourDoorOptions: imagebutton: idle "backgrounds/transparent.png" action [Hide ("hallwayThreeCorridorFourDoorOptions"...
by LiveTurkey
Thu Aug 02, 2018 2:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Image is not showing up?
Replies: 5
Views: 600

Re: Image is not showing up?

You want side images, not just sprites... Read This Page I changed it too image side mc afraid = "characters/MC/Afraid.png" image side mc angry = "characters/MC/Angry.png" image side mc blush = "characters/MC/Blush.png" image side mc confused = "characters/MC/Conf...
by LiveTurkey
Wed Aug 01, 2018 2:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Image is not showing up?
Replies: 5
Views: 600

Re: Image is not showing up?

Adding a show mc confused shows the correct sprite but it doesn't really work as intended. First of all, the sprite lingers on the screen until a scene change and it goes back to not working as soon as the scene changes. So if I call mc confused again I get nothing again.
by LiveTurkey
Wed Aug 01, 2018 12:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Image is not showing up?
Replies: 5
Views: 600

Image is not showing up?

Hey guys, I have another simple problem. define mc = Character(("[name]"), color="#fff", image = "mc") ####################### MC ############################## image mc afraid = "characters/MC/Afraid.png" image mc angry = "characters/MC/Angry.png" i...
by LiveTurkey
Tue Jul 31, 2018 3:18 pm
Forum: Creative Commons
Topic: Resource Catalogue
Replies: 18
Views: 139674

Re: Resource Catalogue

Is it me or all the (preview) images in the forum not showing up? It just says the word Image next to that green and white jpeg icon. Is it some chrome setting?
by LiveTurkey
Tue Jul 31, 2018 2:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Character name not showing up?
Replies: 2
Views: 471

Re: Character name not showing up?

Kia wrote: Tue Jul 31, 2018 12:58 pm isn't this because the character name and the background color are both black? change it to define y = Character('Yun', color="#fff") and see what happens
That fixed the problem haha. Thanks!
by LiveTurkey
Tue Jul 31, 2018 12:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Character name not showing up?
Replies: 2
Views: 471

Character name not showing up?

This seems to be a strange bug. I define a character define y = Character('Yun', color="#000") I jump to intro seq label start: $ _game_menu_screen = "navigation" scene black $ name = " " jump introSeq I try to say something with the character y "tests" y &quo...
by LiveTurkey
Thu Jul 26, 2018 3:44 pm
Forum: I am an Artist
Topic: Background Artist For Hire [CLOSED]
Replies: 11
Views: 2767

Re: Background Artist For Hire [Low Price]

How long does it take you to do each background?
by LiveTurkey
Wed Jul 18, 2018 7:17 pm
Forum: We are offering Paid Work
Topic: [OPEN][PAID] Looking for a writer for my erotic point and click adventure game.
Replies: 1
Views: 580

[OPEN][PAID] Looking for a writer for my erotic point and click adventure game.

Hello! I'm making an erotic point and click adventure game and I need someone to help me write the game (although I already have over 30,000 words written setting up the whole world and story). I expect the whole game to be 100,000 words or more. Writing a point and click adventure game is quite dif...
by LiveTurkey
Wed Jul 18, 2018 7:02 pm
Forum: Works in Progress
Topic: Royal Alchemist [Player x B][Fantasy Court Stats Raising] Full Game RELEASED!
Replies: 76
Views: 44734

Re: Royal Alchemist [GxB][BxB][Fantasy Court Stats Raising]

Can I ask how you plan to release this game? Steam? Patreon? Other?
by LiveTurkey
Tue Jul 17, 2018 1:50 pm
Forum: Ren'Py Cookbook
Topic: Simple minigames (Screen Language only).
Replies: 130
Views: 116280

Re: Simple minigames (Screen Language only).

Are we allowed to use this code in commercial projects? Any specific attribution required?
by LiveTurkey
Tue Jul 17, 2018 1:31 pm
Forum: Ren'Py Questions and Announcements
Topic: What is the difference between default, define, global, python, init, and $?
Replies: 10
Views: 9862

Re: What is the difference between default, define, global, python, init, and $?

Your first attempt was almost correct. It had only one error: the init word. This code works: default deckOfCards = ['A', 'B', 'C','D','E'] label game: ... python: ... for k in deckOfCards: ... Note that I only have changed one simple thing: I've deleted the "init" word in the "pytho...
by LiveTurkey
Tue Jul 17, 2018 12:17 pm
Forum: Asset Creation: Writing
Topic: Does anybody know how to write a point-and-click adventure game?
Replies: 6
Views: 2375

Does anybody know how to write a point-and-click adventure game?

I'm making a point and click adventure game and I'm trying to write it. The problem is, that writing a point and click is unlike any other type of writing. It's not like a novel where you can just write paragraphs and also it's not really linearly written. Instead there is a bunch of if-then conditi...