Search found 78 matches

by ninjagrass
Tue Feb 08, 2011 6:18 am
Forum: Ren'Py Questions and Announcements
Topic: Question about text.
Replies: 3
Views: 358

Re: Question about text.

Just don't auto advance (or advance VERY slowly by putting auto forward speed down) and put the text speed down. Isn't that the point of auto advance? No clicking?
by ninjagrass
Wed Jan 05, 2011 1:45 pm
Forum: Ren'Py Questions and Announcements
Topic: ZeroDivisionError: float division?
Replies: 4
Views: 791

Re: ZeroDivisionError: float division?

Solved the problem. It seems you have to delete the persistent data manually then the problem is solved. It worked on XP, can't find save files on Windows 7?
by ninjagrass
Mon Jan 03, 2011 5:07 pm
Forum: Ren'Py Questions and Announcements
Topic: ZeroDivisionError: float division?
Replies: 4
Views: 791

Re: ZeroDivisionError: float division?

Turning the volume back on does not have any effect as it still crashes. EDIT: Done some more analysis. Ok here are some facts: - This is caused when the MAIN computer volume is turned off during play. - Then when the game is relaunched the error comes up. - Clearing the persistent data and turning ...
by ninjagrass
Mon Jan 03, 2011 8:26 am
Forum: Ren'Py Questions and Announcements
Topic: ZeroDivisionError: float division?
Replies: 4
Views: 791

ZeroDivisionError: float division?

I seem to be getting a very strange error... when I run the game, just launching it causes it. I'm sorry, but an uncaught exception occurred. ZeroDivisionError: float division While running game code: - script call at line 731 of renpy-6.11.2/common/00library.rpy - script at line 174 of renpy-6.11.2...
by ninjagrass
Sun Jan 02, 2011 6:44 am
Forum: Ren'Py Questions and Announcements
Topic: IndexError: array index out of range? (Solved in 119 mins!)
Replies: 6
Views: 2025

Re: IndexError: array index out of range? (Solved in 119 min

I can't upload .ico files as they are apparently not allowed... but I just changed the file type extension to png just to upload.
by ninjagrass
Sat Jan 01, 2011 4:29 pm
Forum: Ren'Py Questions and Announcements
Topic: IndexError: array index out of range? (Solved in 119 mins!)
Replies: 6
Views: 2025

Re: IndexError: array index out of range?

Thank you! So much for a custom launcher icon...
by ninjagrass
Sat Jan 01, 2011 2:15 pm
Forum: Ren'Py Questions and Announcements
Topic: IndexError: array index out of range? (Solved in 119 mins!)
Replies: 6
Views: 2025

IndexError: array index out of range? (Solved in 119 mins!)

I have finally completed my game but then whilst building the distributions I get this error: I'm sorry, but an uncaught exception occurred. IndexError: array index out of range While running game code: - script at line 28 of renpy-6.11.2/launcher/distribute.rpy - python at line 168 of renpy-6.11.2/...
by ninjagrass
Sun Dec 19, 2010 1:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Should I or Shouldn't I...????
Replies: 2
Views: 463

Re: Should I or Shouldn't I...????

Use it and source it then say that it does not belong to me or I didn't draw or own it. Most japanese artists don't care but some do, so just be a little cautious.
by ninjagrass
Sat Dec 11, 2010 4:37 pm
Forum: Ren'Py Questions and Announcements
Topic: SMA animation glitch? (Solved)
Replies: 6
Views: 943

Re: SMA animation glitch?

Great! Thank you!
by ninjagrass
Sat Dec 11, 2010 1:58 pm
Forum: Ren'Py Questions and Announcements
Topic: SMA animation glitch? (Solved)
Replies: 6
Views: 943

Re: SMA animation glitch?

Both are same size. Here I have attached one of them, the second one is just the horizontal flip of this one.
by ninjagrass
Sat Dec 11, 2010 6:40 am
Forum: Ren'Py Questions and Announcements
Topic: SMA animation glitch? (Solved)
Replies: 6
Views: 943

Re: SMA animation glitch?

Problem still happens, no change even in the latest version. It is slightly less but the background goes black in the dissolve interchange.
by ninjagrass
Tue Dec 07, 2010 4:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Show name above dailogue box for dynamic character? (Solved)
Replies: 6
Views: 632

Re: Show name above dailogue box?

I want the name to appear above like in the top screen shot but its shows like the bottom one. Renpy seems to ignore the two_window command when the name of the character is changed. I hope that makes it clear.
by ninjagrass
Mon Dec 06, 2010 5:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Show name above dailogue box for dynamic character? (Solved)
Replies: 6
Views: 632

Re: Show name above dailogue box?

Ok this is what I did: init: $ c1 = "" $ c = DynamicCharacter("c1", color=(192, 64, 64, 255), show_two_window=True) Then in the script: $ c = renpy.input("What is your name?") or "Custom" c "My name is %(c1)s." The name changes but still the name doe...