Search found 41 matches

by nhguy03276
Wed May 13, 2015 8:42 pm
Forum: Ren'Py Questions and Announcements
Topic: ATL Block code Strip help. mainly Framerate
Replies: 6
Views: 989

Re: ATL Block code Strip help. mainly Framerate

I believe he's trying to use this Cookbook recipe: http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=30279 Yes that is where I got the base code from. Any reason you're not using Filmstrip, which has a built-in delay parameter? http://www.renpy.org/wiki/renpy/doc/reference/functions/anim.Fi...
by nhguy03276
Tue May 12, 2015 9:04 pm
Forum: Ren'Py Questions and Announcements
Topic: ATL Block code Strip help. mainly Framerate
Replies: 6
Views: 989

ATL Block code Strip help. mainly Framerate

So, here again, I seem to be stumped. I came across a chunk of code that allowed me to turn this: http://i.imgur.com/Sb2gKYi.png into a dancing character, yet I really don't know what I'm doing. def PortraitStrip(st, at, image, width, frames): f = min([frames, math.trunc(st * 10)]) frame = im.Crop(&...
by nhguy03276
Sun Apr 26, 2015 5:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Memory usage logs, How do I generate and find them?
Replies: 4
Views: 876

Re: Memory usage logs, How do I generate and find them?

Thank you. I'm sorry for being dense, just renpy can get a bit confusing at times on where/when to use what code. If my head wasn't so foggy, I'd try it out, but for now I think I'm going to bed.
by nhguy03276
Sun Apr 26, 2015 2:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Memory usage logs, How do I generate and find them?
Replies: 4
Views: 876

Re: Memory usage logs, How do I generate and find them?

Have you tried the memory profiling functions? http://www.renpy.org/doc/html/other.html#memory-profiling They should generate a memory.txt in the game's base folder. That's the problem, I have no Idea of how or where to insert them into my code, and don't have anything that even looks like that for...
by nhguy03276
Sun Apr 26, 2015 9:11 am
Forum: Ren'Py Questions and Announcements
Topic: Memory usage logs, How do I generate and find them?
Replies: 4
Views: 876

Memory usage logs, How do I generate and find them?

Somehow I feel as though I'm staring at the answer, and just not seeing it. I've tried searching the forums, and searching google, and at best, find some code line I'm supposed to add (but to where?) and have not found a example anywhere, nd what I have found only confuses me more I'm putting togeth...
by nhguy03276
Wed Apr 15, 2015 4:19 pm
Forum: Ren'Py Questions and Announcements
Topic: I give, I need help making the font size work.
Replies: 5
Views: 624

Re: I give, I need help making the font size work.

That's a rather inefficient way of doing what you want, since you'd have to write out the text tag for each string separately. screen status_bar: frame: style_group "status_bar" # the rest of your screen init: style status_bar_text is text: size 12 This is good, except assumes all text wi...
by nhguy03276
Sun Apr 12, 2015 8:46 pm
Forum: Ren'Py Questions and Announcements
Topic: I give, I need help making the font size work.
Replies: 5
Views: 624

Re: I give, I need help making the font size work.

deliciumartis wrote:Did you try:{size=12}Your text{/size}

Well... variations there of... I don't think I got that exact combo. but it's working now, Thank you.
by nhguy03276
Sun Apr 12, 2015 8:01 pm
Forum: Ren'Py Questions and Announcements
Topic: I give, I need help making the font size work.
Replies: 5
Views: 624

I give, I need help making the font size work.

Had to re-write a bunch of hackjob code into a different form of hackjob code... and after several hours I now have 90% of it working. I just for the life of me, can't make the font size smaller in the following code. Everything I try ends up with a syntax error, but I'm sure it's a simple comma in ...
by nhguy03276
Sat Apr 11, 2015 6:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Image maps and animation
Replies: 2
Views: 524

Re: Image maps and animation

I'd suggest not using an imagemap but different imagebuttons over a background image. They accept powerful ATL animations. See a tutorial here: http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=22565 Doc on imagebuttons: http://renpy.org/doc/html/screens.html#imagebutton Thank you. I think ...
by nhguy03276
Sat Apr 11, 2015 8:27 am
Forum: Ren'Py Questions and Announcements
Topic: Image maps and animation
Replies: 2
Views: 524

Image maps and animation

So I'm trying to use imagemaps for navigation and ATL blocks for animation. a simple example: You are at the end of a hallway, you can go to the bulletin board, Door 1 or you see a dancing character at the end of the hallway. I'm currently using a filmstrip like chunk of code to animate the dancing....
by nhguy03276
Sun Feb 08, 2015 1:49 am
Forum: Ren'Py Cookbook
Topic: Inventory Screen
Replies: 100
Views: 102326

Re: Inventory Screen

Well, half the night later, and I figured it out. I'm sure someone else will clean up the code a bit, but at least it works the way I want. init python: consumed_items = [] def use(self): global consumed_items global thisitem if self.hp>0: if consumed_items.count(self.name) < self.dailylimit: consum...
by nhguy03276
Sun Feb 08, 2015 12:02 am
Forum: Ren'Py Cookbook
Topic: Inventory Screen
Replies: 100
Views: 102326

Re: Inventory Screen

Sorry for not getting back to this sooner, I tend to work on 10 different things at the same time, and didn't actually work on the daily limits aspect again until today. I just wanted to let you know the list code did indeed work, it functions as hoped. I did however get an error code on the feedbac...
by nhguy03276
Sat Feb 07, 2015 9:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Realistically, what are the limits to of the ren'py engine
Replies: 4
Views: 1123

Realistically, what are the limits to of the ren'py engine

I've seen some comments lately about memory usage, memory leaks, and other issues. I'm just curious what the Realistic limits on the architectural framework are. (i.e. just how many image files, how many mini-games, sound, scenes etc. I can expect to use before things go bad.) I know from previous c...
by nhguy03276
Fri Feb 06, 2015 7:05 pm
Forum: Ren'Py Questions and Announcements
Topic: in search of a book reader type coding.
Replies: 2
Views: 499

Re: in search of a book reader type coding.

Try working off of existing journal / encyclopedia / whatever type codes. There are a few in the cookbook section, e.g., http://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=25204 Thanks. Believe it or not, I did check the cookbook first, but apparently my search skills in this forum are still...