Search found 229 matches

by Karl_C
Tue Feb 19, 2019 5:19 am
Forum: Ren'Py Questions and Announcements
Topic: Cant run neither Renpy nor Renpy games
Replies: 12
Views: 1111

Re: Cant run neither Renpy nor Renpy games

BTW: Your problem seems to be a common MS-Windows problem not related to Ren'Py:

microsoft.com: OpenGL problem with Windows 10
by Karl_C
Tue Feb 19, 2019 4:57 am
Forum: Ren'Py Questions and Announcements
Topic: Cant run neither Renpy nor Renpy games
Replies: 12
Views: 1111

Re: Cant run neither Renpy nor Renpy games

define config.gl_enable = True link Set this to False to disable OpenGL acceleration. OpenGL acceleration will automatically be disabled if it's determined that the system cannot support it, so it usually isn't necessary to set this. OpenGL can also be disabled by holding down shift at startup. Ren...
by Karl_C
Sun Feb 17, 2019 7:17 am
Forum: Ren'Py Questions and Announcements
Topic: Cant run neither Renpy nor Renpy games
Replies: 12
Views: 1111

Re: Cant run neither Renpy nor Renpy games

Hold down shift when starting the game and select software rendering. Does the game start now?
Importing _renpysteam: ImportError('No module named _renpysteam',)
That's normal, don't care about that.
by Karl_C
Wed Feb 13, 2019 11:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Can I "block" a label according to real time?
Replies: 2
Views: 481

Re: Can I "block" a label according to real time?

Try

Code: Select all

 menu messageslist: 
     "Read Christmas message" if month is 12 and day in [24,25]:
         jump christmasmessage 
If the config.menu_include_disabled variable is set to True, it will be shown as a disabled button.

In-Game Menus
by Karl_C
Wed Feb 13, 2019 5:58 am
Forum: Ren'Py Questions and Announcements
Topic: Python "if statements" not working?
Replies: 4
Views: 557

Re: Python "if statements" not working?

Code: Select all

  if flag01 == "agree":
by Karl_C
Sat Feb 09, 2019 1:31 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Time code according to country's time zone?
Replies: 2
Views: 529

Re: Time code according to country's time zone?

Your link has the answer:

Code: Select all

import pytz

tz = pytz.timezone('Europe/Paris')
paris_now = datetime.now(tz)
by Karl_C
Sun Feb 03, 2019 6:30 pm
Forum: Completed Games
Topic: Schwatz! [Simulation] [Experimental] [AI] [Free]
Replies: 0
Views: 1093

Schwatz! [Simulation] [Experimental] [AI] [Free]

schwatz4.jpeg Plot: A new cool chat client is out. It connects via the dark web anonymously with random people worldwide and leaves no digital traces (at least it is said so). And it's completely free. At first, everything looks as usual, but the longer you use this chat client, the more strange yo...
by Karl_C
Sun Feb 03, 2019 5:47 am
Forum: General Discussion
Topic: Opinions regarding 3DCG VNs
Replies: 13
Views: 2088

Re: Opinions regarding 3DCG VNs

Donmai wrote: Wed Jan 30, 2019 4:16 pm I need to make an effort to finish at least one of my many projects this year.
Yes please! I enjoyed to play all your works and the images above look very promising too... ;)
by Karl_C
Thu Jan 31, 2019 12:00 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] 'bool' object is not iterable error
Replies: 14
Views: 1415

Re: 'bool' object is not iterable error

File "C:\Users\Client\Downloads\renpy-7.1.3-sdk\renpy\character.py", line 811, in do_done self.add_history("adv", who, what, multiple=multiple) File "C:\Users\Client\Downloads\renpy-7.1.3-sdk\renpy\character.py", line 1130, in add_history for i in renpy.config.history_...
by Karl_C
Thu Jan 31, 2019 9:26 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] 'bool' object is not iterable error
Replies: 14
Views: 1415

Re: 'bool' object is not iterable error

Put "define flashbulb = Fade(0.2, 0.0, 0.8, color='#fff')" outside label start (together with your defaults)
by Karl_C
Thu Jan 31, 2019 6:03 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] 'bool' object is not iterable error
Replies: 14
Views: 1415

Re: 'bool' object is not iterable error

Can you post the contents of "errors.txt"?
by Karl_C
Wed Jan 30, 2019 5:00 am
Forum: Creator Discussion
Topic: Ren'Py Coding Questions
Replies: 5
Views: 1158

Re: Ren'Py Coding Questions

I was wondering if there is a way to call a line of code in the same script, or should I make each chapter have its own script and if so how do I call the separate scripts? I'm not sure if you're talking about something like that: Developer Tools: Warping to a line ? Or do you simply want to jump t...
by Karl_C
Tue Jan 29, 2019 5:31 am
Forum: Ren'Py Questions and Announcements
Topic: Android oddity
Replies: 4
Views: 580

Re: Android oddity

Triority wrote: Mon Jan 28, 2019 5:52 pm All sorted - looks like it was caused the hidden directory problem...
Can you please explain: What is the "hidden directory problem" ?