Search found 44 matches

by jacobjumper
Thu Jan 01, 2015 7:11 pm
Forum: Ren'Py Questions and Announcements
Topic: User Defined ATL
Replies: 1
Views: 421

User Defined ATL

So, this is my code:

Code: Select all

transform pandown:
       yalign (0.0)
       linear 45.0 yalign -1995

#####################
with pandown

And this is what I get:

Code: Select all

Exception: Parameter 'new_widget' is not known by ATL Transform.
Any help is appreciated.
-Jumper
by jacobjumper
Thu Dec 25, 2014 5:16 am
Forum: Ren'Py Questions and Announcements
Topic: Save Screen Not Saving
Replies: 1
Views: 475

Save Screen Not Saving

Hi, so I'm using Camille's tutorial on imagemaps, and for whatever reason, my imagemap can load saves, but not create new ones? Clicking on an empty slot brings you to the main menu, and trying to get to the save screen from the Navigation does nothing # Save, Load # # Screens that allow the user to...
by jacobjumper
Fri Dec 12, 2014 1:41 am
Forum: Ren'Py Questions and Announcements
Topic: New music channel
Replies: 2
Views: 410

Re: New music channel

Gotta love 'semi-colon' errors. Thanks PyTom.
by jacobjumper
Fri Dec 12, 2014 1:21 am
Forum: Ren'Py Questions and Announcements
Topic: New music channel
Replies: 2
Views: 410

New music channel

So, I'm trying to create some new music and sfx channels, like so: renpy.music.register_channel(ambience1, mixer=sfx, loop=True, stop_on_mute=True, tight=True, file_prefix='', file_suffix='ogg'buffer_queue=True And this is what I get: While executing init code: File "game/options.rpy", lin...
by jacobjumper
Tue Sep 30, 2014 1:40 pm
Forum: Ren'Py Questions and Announcements
Topic: NSIS Compiler Errors
Replies: 2
Views: 1781

Re: NSIS Compiler Errors

Okay, thank you.
by jacobjumper
Tue Sep 30, 2014 12:57 am
Forum: Ren'Py Questions and Announcements
Topic: NSIS Compiler Errors
Replies: 2
Views: 1781

NSIS Compiler Errors

So, NSIS is being a real pain, and I'm wondering what my error here is. This is the .NSI file in my directory: ;;; Comments beginning with ";;;" are commentary added by PyTom to ;;; try to help you understand this file. ;;; ;;; This installer expects that you will have supplied LICENSE.txt...
by jacobjumper
Sat Jun 21, 2014 2:27 pm
Forum: Ren'Py Questions and Announcements
Topic: "Missing Images" Thumbnail
Replies: 6
Views: 638

Re: "Missing Images" Thumbnail

Hahaha, it always seems to just be small issues that mess with my code. And sorry Donmai, I'm just borrowing it until I can make something better!
by jacobjumper
Sat Jun 21, 2014 4:34 am
Forum: Ren'Py Questions and Announcements
Topic: "Missing Images" Thumbnail
Replies: 6
Views: 638

"Missing Images" Thumbnail

I tried to create a group of animated Sillhouettes like so: image Sillhouette: "Sillouettes/Sillhouette10.png" with Dissolve(0.6, alpha = True) # shows the image with a transition 0.8 "Sillhouettes/Sillhouette11.png" with Dissolve(0.6, alpha = True) # alpha=True to preserve trans...
by jacobjumper
Sun Feb 02, 2014 3:33 am
Forum: Ren'Py Questions and Announcements
Topic: Can't read these errors
Replies: 1
Views: 464

Can't read these errors

This is the section I worked on # Navigation # #Screen that displays when the esc key is pressed or when the left mouse button is clicked. #Biggest pain in my ass! screen Navigation: # This ensures that any other menu screen is replaced. tag menu imagemap: ground "gm/round.png" hover "...
by jacobjumper
Wed Jan 08, 2014 1:51 am
Forum: Ren'Py Questions and Announcements
Topic: Navigation Menu Help?
Replies: 9
Views: 1153

Re: Navigation Menu Help?

Oh my goodness it worked thank you! !
by jacobjumper
Wed Jan 08, 2014 1:35 am
Forum: Ren'Py Questions and Announcements
Topic: Navigation Menu Help?
Replies: 9
Views: 1153

Re: Navigation Menu Help?

Everything? I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/_layout/screen_load_save.rpym", line 17, in script File "game/screens.rpy", line 318, in python Exception: Screen u'navigation' is not known. -- Full Traceback -----------------...
by jacobjumper
Wed Jan 08, 2014 1:21 am
Forum: Ren'Py Questions and Announcements
Topic: Navigation Menu Help?
Replies: 9
Views: 1153

Re: Navigation Menu Help?

Image

See there? And I planned on redesigning it with custom images.
by jacobjumper
Wed Jan 08, 2014 12:59 am
Forum: Ren'Py Questions and Announcements
Topic: Navigation Menu Help?
Replies: 9
Views: 1153

Re: Navigation Menu Help?

Umm.. it kind of helped. I would however like to know how to get rid of the default stuff. That would help me so much
by jacobjumper
Tue Jan 07, 2014 10:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Navigation Menu Help?
Replies: 9
Views: 1153

Navigation Menu Help?

How would I change the original navigation menu to a pop up style where it appears in the middle of the screen? I know it's really basic but I'm stuck...