Search found 241 matches

by ArizaLuca
Wed Jul 31, 2019 8:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Gallery Problems. [SOLVED]
Replies: 17
Views: 1333

Re: Gallery Problems.

It ended up taking me to a black screen, so I ended up trying Return() after hiding all the pages, which worked! Now the other issue is... once I click one of the imagebuttons at the top, what I'm trying to do is once I select that page is to have that imagebutton still have the selected-idle animat...
by ArizaLuca
Wed Jul 31, 2019 8:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

Ah, okay-- that got rid of the arg issue (argh I'm a pirate xD), but when I fixed a different issue this popped up: I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 119, in script with dissolve Exception: In DynamicImage u'player/player_[...
by ArizaLuca
Tue Jul 30, 2019 9:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

I got rid of it and this popped up. I'm sorry, but an uncaught exception occurred. After initialization, but before game start. SyntaxError: non-keyword arg after keyword arg (player definitions.rpy, line 1109) -- Full Traceback ------------------------------------------------------------ Full trace...
by ArizaLuca
Tue Jul 30, 2019 9:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Gallery Problems. [SOLVED]
Replies: 17
Views: 1333

Re: Gallery Problems.

I added a sample project file to show what I mean for the two issues I listed.
by ArizaLuca
Tue Jul 30, 2019 9:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

It's alright! Sorry it took so long. I just added a file with the LiveComposite definition and the previous layeredimage definition of the image; copy and paste the LiveComposite into the player definitions file and replace that layeredimage xD Thank you for helping me.
by ArizaLuca
Mon Jul 29, 2019 5:29 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

This error popped up immediately: I'm sorry, but an uncaught exception occurred. While running game code: File "game/definitions/player definitions.rpy", line 1070, in script image player = LiveComposite( Exception: Not a displayable: (<Fixed at 111bc23d0>, 0.1) -- Full Traceback ---------...
by ArizaLuca
Sun Jul 28, 2019 6:46 am
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

I tried; this error proceeded to pop up. I think the issue might be the skins and hairs and whatnot. :/ I'm sorry, but an uncaught exception occurred. While running game code: File "game/definitions/player definitions.rpy", line 1070, in script image player = LiveComposite( Exception: Not ...
by ArizaLuca
Fri Jul 26, 2019 8:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Weird NVL Thing [SOLVED]
Replies: 5
Views: 612

Re: Weird NVL Thing

That was perfect! Thank you.
by ArizaLuca
Fri Jul 26, 2019 8:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Gallery Won't Exit
Replies: 8
Views: 802

Re: Gallery Won't Exit

It's fine xD
by ArizaLuca
Fri Jul 26, 2019 8:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

image player = LiveComposite( (740, 1110), (0,0), "player/player_base.png", (0,0), "player/player_skin_%s.png"%(skin), (0,0), "player/player_hair_%s.png"%(hair), (0,0), "player_eyes_%s"%(eye), (0,0), ConditionSwitch( "pbrow == 'quirk'", "player...
by ArizaLuca
Fri Jul 26, 2019 6:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Choice Screen is All Wonky [SOLVED]
Replies: 23
Views: 1676

Re: Choice Screen is All Wonky [SOLVED]

Ahhh, that worked; thank you xD
by ArizaLuca
Fri Jul 26, 2019 6:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Weird NVL Thing [SOLVED]
Replies: 5
Views: 612

Re: Weird NVL Thing

No, I'm just trying to hide the screen but it won't dissolve out; it fades back into the nvl screen and then abruptly switches to the adv screen.
by ArizaLuca
Fri Jul 26, 2019 6:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizable Sprite with Blinking? [SOLVED]
Replies: 38
Views: 2839

Re: Customizable Sprite with Blinking?

image side playerside: LiveCrop((50, 0, 800, 750), zoom=0.6, xoffset=0, "player") I'm not sure that's the issue? the issue seems to appear with how I now defined the character: image player = LiveComposite( (740, 1110), (0,0), "player/player_base.png", (0,0), "player/player...
by ArizaLuca
Fri Jul 26, 2019 6:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Gallery Won't Exit
Replies: 8
Views: 802

Re: Gallery Won't Exit

I moved the screen buttons outside, but in the thing I was comparing it to it was within the fixed so i didn't see a problem, but maybe that is the issue...? :/
by ArizaLuca
Fri Jul 26, 2019 2:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Gallery Problems. [SOLVED]
Replies: 17
Views: 1333

Gallery Problems. [SOLVED]

I know I have a different thread where the gallery won't exit, but here's my gallery code: init offset = -1 ################ # INSTRUCTIONS # ################ # Step 1: # Set up your CG imagebuttons at Line 26. # Step 2: # Fill your CG pages starting at Line 148. # You can copy and paste the templat...