Search found 206 matches

by iichan_lolbot
Sat Jun 05, 2010 11:04 am
Forum: Ren'Py Questions and Announcements
Topic: [0.1 RELEASED] RenPSP (need *.rpy+media to test my engine)
Replies: 11
Views: 3459

Re: RenPSP (need *.rpy+media to test my engine)

Rollback is done and tested. =^_^= $ command and if-elseif(or elif, I support both)-else are done too. Many thanks to number473 for brilliant idea of using Lua as underlying language. Maybe I will implement some automatic code conversion to make stuff like 'a!=b' and 'x+=5' supported in Lua insertio...
by iichan_lolbot
Thu Jun 03, 2010 7:59 am
Forum: Ren'Py Questions and Announcements
Topic: [0.1 RELEASED] RenPSP (need *.rpy+media to test my engine)
Replies: 11
Views: 3459

Re: RenPSP

I would think that the $ would allow access to Lua in this case, rather than Python code, since that is the underlying language. ... That's quite an interesting idea. I should really think of it. Existing simple games could be easily ported: simple expressions with arithmetic or string operations c...
by iichan_lolbot
Thu Jun 03, 2010 7:49 am
Forum: Ren'Py Questions and Announcements
Topic: [0.1 RELEASED] RenPSP (need *.rpy+media to test my engine)
Replies: 11
Views: 3459

Re: RenPSP

Thank's. I already realized rollback difficulties. Rollback is almost done - main thing really was to use proper data structures. Once rollback is done, it would be possible to make simple transition effects using previous and current data structs. Do note that recent versions of Ren'Py have introdu...
by iichan_lolbot
Thu Jun 03, 2010 5:20 am
Forum: Ren'Py Questions and Announcements
Topic: [0.1 RELEASED] RenPSP (need *.rpy+media to test my engine)
Replies: 11
Views: 3459

[0.1 RELEASED] RenPSP (need *.rpy+media to test my engine)

Hello, everyone. PyTom told he do not want to port RenPy to PSP, so I'm developing a minimalistic RenPy clone for PSP and wonder if anyone is interested in it. It is written in Lua and now it can do several key things: * narration ("test") * telling by a known character (lucy "test") * 'scene', 'sho...
by iichan_lolbot
Tue Feb 23, 2010 7:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Please, update Python version to Python 2.5.2
Replies: 10
Views: 1063

Re: Please, update Python version to Python 2.5.2

We found out that updating python from

Code: Select all

Python 2.5.1 (r251:54863, Dec 13 2009, 03:32:07)
to

Code: Select all

Python 2.5.2 (r252:60911, Jul 22 2009, 15:35:03)
fully fix the problem.

PyTom, please, update python version in distro-builder.
by iichan_lolbot
Fri Feb 19, 2010 10:51 am
Forum: Ren'Py Questions and Announcements
Topic: Please, update Python version to Python 2.5.2
Replies: 10
Views: 1063

Re: {a=http://} doesn't work under linux's Firefox + config.help

Here's the total code for the default hyperlink callback: def hyperlink_function(target): if target.startswith("http:"): try: import webbrowser webbrowser.open(target) except: pass else: renpy.call_in_new_context(target) So we're just passing things off to Python's webbrowser module, which ships wi...
by iichan_lolbot
Fri Feb 19, 2010 8:59 am
Forum: Ren'Py Questions and Announcements
Topic: Please, update Python version to Python 2.5.2
Replies: 10
Views: 1063

Re: {a=http://} doesn't work under linux's Firefox (+conf.help)

Read this error carefull. Path is listed twice. Firefox can't find the file at /home/dreamtale/renpy-6.10.2/"file:////home/dreamtale/renpy-6.10.2/uvao2rus/RTFM.html". We get this after testing click on "Help" button config.help = "RTFM.html" So, local files is the wrong solution too. Linux ubuntu 2....
by iichan_lolbot
Thu Feb 18, 2010 2:27 pm
Forum: Ren'Py Questions and Announcements
Topic: Please, update Python version to Python 2.5.2
Replies: 10
Views: 1063

Re: {a=http://...} doesn't work under linux's Firefox

Well, there might be no security holes, but there still is a bug =))
Are there any ideas what to do with it?
by iichan_lolbot
Wed Feb 17, 2010 4:24 am
Forum: Ren'Py Questions and Announcements
Topic: Please, update Python version to Python 2.5.2
Replies: 10
Views: 1063

Please, update Python version to Python 2.5.2

After clicking on {a=http://iichan.ru}iichan.ru{/a} a Linux user got [03:58] [Dream-chan] Firefox can't find the file at /home/dreamtale/Desktop/uvao2rus-all/"http://iichan.ru". [03:58] [Dream-chan] * Check the file name for capitalization or other typing errors. [03:58] [Dream-chan] * Check to see ...
by iichan_lolbot
Sun Jan 17, 2010 8:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Distribution build error on large files
Replies: 6
Views: 721

Re: Distribution build error on large files

There are no more memory runtime errors. But renpy is going into non-responding state instead. It eats 100% of one of processor's Cores. And doesn't update percent chart and the whole window. BUT... After several minutes or smth it writes about the successfull build!!!!!!!!!!!!!!!!!!!!!!!! >^__^<
by iichan_lolbot
Thu Jan 14, 2010 6:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Distribution build error on large files
Replies: 6
Views: 721

Re: Distribution build error on large files

Also, looks like our game is the biggest RenPy game ever...
by iichan_lolbot
Wed Jan 13, 2010 4:28 am
Forum: Ren'Py Questions and Announcements
Topic: Distribution build error on large files
Replies: 6
Views: 721

Re: Distribution build error on large files

The problem could be solved by making several rpa's, I guess.
by iichan_lolbot
Tue Jan 12, 2010 5:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Distribution build error on large files
Replies: 6
Views: 721

Distribution build error on large files

I'm sorry, but an exception occured while executing your Ren'Py script. MemoryError: While running game code: - script at line 241 of renpy-6.10.1/launcher/distribute.rpy - python at line 536 of renpy-6.10.1/launcher/distribute.rpy. - python at line 178 of renpy-6.10.1/launcher/distribute.rpy. -- F...
by iichan_lolbot
Wed Jan 06, 2010 7:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Alpha channel becomes grayscale [SOLVED for non-sw render]
Replies: 21
Views: 3166

Re: Image scaling Engine Error?(Alpha channel becomes grayscale)

I tried to do ConditionSwitch of Scaled Сomposed images.
Very soon I got

Code: Select all

error: Out of memory
by iichan_lolbot
Wed Jan 06, 2010 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Alpha channel becomes grayscale [SOLVED for non-sw render]
Replies: 21
Views: 3166

Re: Image scaling Engine Error?(Alpha channel becomes grayscale)

The first is to composite the images before you do the scaling. That should be fairly simple, and if you use im.Composite rather than LiveComposite, even more efficient than the current approach. The situation is that we in fact use a little bigger chain of functions, as in problem demo-exaple. Now...