Search found 30 matches

by dragonlord3989
Tue Jun 13, 2017 11:33 am
Forum: Ren'Py Questions and Announcements
Topic: value based transform
Replies: 3
Views: 573

Re: value based transform

Solved
by dragonlord3989
Fri Jun 09, 2017 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: value based transform
Replies: 3
Views: 573

Re: value based transform

Bump
by dragonlord3989
Tue Jun 06, 2017 11:12 am
Forum: Ren'Py Questions and Announcements
Topic: value based transform
Replies: 3
Views: 573

value based transform

Edit: Finally fixed it my self :P
by dragonlord3989
Wed Mar 29, 2017 10:11 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Moving a image based on timer
Replies: 2
Views: 415

Re: Moving a image based on timer

If all you want to do is literally move the image, then just use ATL. The following uses 5 seconds for the sake of example. transform movetocenter: xalign 0.0 # starts at left linear 5.0 xalign 0.5 # moves to center screen test(): timer 5.0 action Hide("test") add "image" at mov...
by dragonlord3989
Wed Mar 29, 2017 8:37 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Moving a image based on timer
Replies: 2
Views: 415

[Solved]Moving a image based on timer

Sorry the title is a little vague but what I would like to do is make a timed event where there is a countdown timer and the closer the value is to 0 the closer to the center of the screen a little icon is. Is that possible to do? image I want to move "images/Icons/test.png" screen countdo...
by dragonlord3989
Sat Sep 17, 2016 4:07 am
Forum: Ren'Py Questions and Announcements
Topic: Making some random events more likely
Replies: 1
Views: 452

Making some random events more likely

I was wondering if there is a way to make some events more common then others like say if you go to a amusement park you have more of a chance to loose the win $ choice = renpy.random.choice(("1", "2", "3")) is there any way to do the above code but with out having to a...
by dragonlord3989
Mon Aug 15, 2016 2:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Image tooltips[Solved]
Replies: 3
Views: 483

Re: Image tooltips[Solved]

Cheers for that XD it's working now
by dragonlord3989
Mon Aug 15, 2016 12:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Image tooltips[Solved]
Replies: 3
Views: 483

Image tooltips[Solved]

This may have been asked before but is there any way to make tool tips show when hovered of a image if because if I use image button you can click on the image and it bugs out the game. This is what I have at the moment [code]screen tooltip_test: default tt = Tooltip("") imagebutton "...
by dragonlord3989
Thu Aug 11, 2016 9:59 am
Forum: Ren'Py Questions and Announcements
Topic: Centerin styles for one person[SOLVED]
Replies: 4
Views: 421

Re: Centerin styles for one person

style "say_two_window_vbox" if who: window: if who.lower() == "specific_char_name": style "specific_char_window" else: style "say_who_window" text who: id "who" That worked thanks XD
by dragonlord3989
Wed Aug 10, 2016 3:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Centerin styles for one person[SOLVED]
Replies: 4
Views: 421

Centerin styles for one person[SOLVED]

I was wondering if there is a why to make

Code: Select all

style.say_who_window.xpos=120
effect only effect one person
by dragonlord3989
Thu Jul 28, 2016 5:05 am
Forum: Ren'Py Questions and Announcements
Topic: minimise ren'py on key press[Solved]
Replies: 2
Views: 339

Re: minimise ren'py on key press

DragoonHP wrote:This should work.

Code: Select all

key "q" action Function(renpy.iconify)
That worked thank you
by dragonlord3989
Thu Jul 28, 2016 1:17 am
Forum: Ren'Py Questions and Announcements
Topic: minimise ren'py on key press[Solved]
Replies: 2
Views: 339

minimise ren'py on key press[Solved]

would it be possible to make it that when you press a button you game gets minimised

Code: Select all

screen minimise:
    key "q" action Minimise
by dragonlord3989
Mon Jul 11, 2016 1:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Fade character when another is talking
Replies: 4
Views: 1325

Re: Fade character when another is talking

(0, -120), ConditionSwitch( "rope == 'rope'", "characters/steve/hang/Rope.png", "rope == 'none'", "characters/steve/none.png", ), http://puu.sh/pY7ml/f1b1a6a736.jpg but when I use this it fades but moves the rope image stevealpha: Flatten("steve") a...
by dragonlord3989
Mon Jul 11, 2016 11:09 am
Forum: Ren'Py Questions and Announcements
Topic: Fade character when another is talking
Replies: 4
Views: 1325

Re: Fade character when another is talking

So I read over that and I got what I wanted but I have a problem where one of the live comp images is getting shrunk is there a way to fix it
by dragonlord3989
Sun Jul 10, 2016 10:48 am
Forum: Ren'Py Questions and Announcements
Topic: Fade character when another is talking
Replies: 4
Views: 1325

Fade character when another is talking

So what I want to do is make it so when person a is speaking person b goes a slight shade of black and when it is their turn to speak person a goes dark is this possible?