Search found 15 matches

by Izzayuh
Wed Nov 02, 2016 2:21 am
Forum: Ren'Py Questions and Announcements
Topic: Urgent Help Needed - Image Buttons
Replies: 8
Views: 816

Re: Urgent Help Needed - Image Buttons

Think I'm so stressed out I can't think through this clearly, need to be in uni in 3 hours, and have none of this sorted when I feel like it should be really simple.
But I just can't make sense of what I'm meant to do
by Izzayuh
Wed Nov 02, 2016 2:19 am
Forum: Ren'Py Questions and Announcements
Topic: Urgent Help Needed - Image Buttons
Replies: 8
Views: 816

Re: Urgent Help Needed - Image Buttons

you can lay your buttons, images and code needed in it. try making it step by step Trying but not getting any further, I think I'm not able to think it through logically, like I don't understand what steps need to be taken... so I'd state 3 screens where I'd want the buttons? call them like "S...
by Izzayuh
Wed Nov 02, 2016 2:10 am
Forum: Ren'Py Questions and Announcements
Topic: Urgent Help Needed - Image Buttons
Replies: 8
Views: 816

Re: Urgent Help Needed - Image Buttons

Kia wrote:you need a screen for that https://www.renpy.org/doc/html/screens.html
okay and what would the screen do? how would I use to make buttons with multiple images?
by Izzayuh
Wed Nov 02, 2016 2:03 am
Forum: Ren'Py Questions and Announcements
Topic: Urgent Help Needed - Image Buttons
Replies: 8
Views: 816

Re: Urgent Help Needed - Image Buttons

what part of the code is done? did you make your screen? did you add your image? did you add three buttons? did you list your images? This is all the coding so far, I have the background and music sorted as well as a timer to stop the scene when the song is finished. I have all the images listed, b...
by Izzayuh
Wed Nov 02, 2016 1:29 am
Forum: Ren'Py Questions and Announcements
Topic: Urgent Help Needed - Image Buttons
Replies: 8
Views: 816

Urgent Help Needed - Image Buttons

It's 5:30 am here in England and I have been trying to code something for my university project due today but have been having such brain fog that I can't figure out the coding! (I am usually not the best anyway as I am new to this, but have been really bad fibromyalgia wise the last week and runnin...
by Izzayuh
Fri Sep 30, 2016 2:42 pm
Forum: Ren'Py Questions and Announcements
Topic: interactive images
Replies: 5
Views: 1395

Re: interactive images

A quick example: init python: buttons = ["images/red.png", "images/green.png", "images/blue.png"] button = buttons[0] def change_button(): global button global buttons buttons = buttons[1:] + buttons[:1] button = buttons[0] screen bb: imagebutton idle "[button]&qu...
by Izzayuh
Fri Sep 30, 2016 1:08 pm
Forum: Ren'Py Questions and Announcements
Topic: interactive images
Replies: 5
Views: 1395

Re: interactive images

Nothing really hard about that. A bunch of buttons which will call a python function which will assign next displayable in list to currently displayed one. And a simple timer to change scenes/songs (and if there is a callback when track finishes playin, it is even easier) As for animations, you can...
by Izzayuh
Fri Sep 30, 2016 12:25 pm
Forum: Ren'Py Questions and Announcements
Topic: interactive images
Replies: 5
Views: 1395

interactive images

I am currently making an interactive music album using Ren'Py for my current University project. What I want to do is design a series of panels which will be shown on the screen at the same time, and when one is clicked it will change with another image, while the unclicked images are left unchanged...
by Izzayuh
Mon Jul 25, 2016 9:41 pm
Forum: Completed Games
Topic: [Stolen Destiny [GxB][otome, action, free!] ~ ilujam
Replies: 15
Views: 26969

Re: [Stolen Destiny [GxB][otome, action, free!] ~ ilujam

Now that I have finished it I can give a proper response!! Did you have fun / enjoy playing ? Yes! Definitely, was really cute and I found myself laughing often at the dialogue. I really enjoyed it, staying up until 2am so I could get through the cuteness! I really enjoyed your previous game, but th...
by Izzayuh
Mon Jul 25, 2016 7:02 pm
Forum: Completed Games
Topic: [Stolen Destiny [GxB][otome, action, free!] ~ ilujam
Replies: 15
Views: 26969

Re: [Stolen Destiny [GxB][otome, action, free!] ~ ilujam

Just downloaded, was a big fan of Destiny Voyage, so really excited to see what this is like!
The art style has definitely caught my eye though, the sprites are so so gorgeous!
by Izzayuh
Mon Jul 25, 2016 1:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Limiting amount of choices from menu that can be selected
Replies: 2
Views: 377

Limiting amount of choices from menu that can be selected

Still getting used to coding, so wasn't too sure how to get what I wanted for the VN I'm making. Basically, at the beginning you're taken on a university tour, and an in-game menu will come up from which you can choose where you want to be taken, or if you want to just go straight to the dorms (whic...
by Izzayuh
Sat Mar 19, 2016 2:17 am
Forum: Ren'Py Questions and Announcements
Topic: NameError: name not defined
Replies: 4
Views: 1266

Re: NameError: name not defined

Okay, thank you, I copied that in and now I am getting a new error message saying: I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/script.rpy", line 484: expected statement. FriendL = "False" ^ File "game/...
by Izzayuh
Sat Mar 19, 2016 12:30 am
Forum: Ren'Py Questions and Announcements
Topic: NameError: name not defined
Replies: 4
Views: 1266

Re: NameError: name not defined

Update: I have renamed the points system, and also tried it as an event instead of gaining a point when something happened, changing the label to FriendL and having: $ FriendL = True if FriendL == True: but the same message comes up just with the label changed: I'm sorry, but an uncaught exception o...
by Izzayuh
Sat Mar 19, 2016 12:15 am
Forum: Ren'Py Questions and Announcements
Topic: NameError: name not defined
Replies: 4
Views: 1266

NameError: name not defined

While checking through the code so far I keep getting the following when I try and progress: NameError: name 'lucafriend_Points' is not defined But, checking through the script I have defined it at the start I have put: $ lucafriend_Points = 0 and then checked through the find tool to make sure all ...