Search found 179 matches

by johandark
Sat Feb 25, 2017 8:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Count Words on a single file. [SOLVED]
Replies: 2
Views: 773

Re: Count Words on a single file.

gas wrote:Extract dialogues in the launcher, select "Dialogue text only(.txt)", then... copy paste the section you need for.
At beginning I didn´t know what you meant until I found the "Extract Dialogue"... Very useful...

Thanks!! ;)
by johandark
Sat Feb 25, 2017 7:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Count Words on a single file. [SOLVED]
Replies: 2
Views: 773

Count Words on a single file. [SOLVED]

I have a translator asking me how many words has the file I want to send him to translate. I have the file in the folder "game\tl\english". I divided the game in days, So now I want hime to translate the day 4. The problem is the file is comming like this: # TODO: Translation updated at 20...
by johandark
Fri Feb 24, 2017 5:04 pm
Forum: Ren'Py Questions and Announcements
Topic: Several pages for Gallery CG, like an album
Replies: 5
Views: 2703

Re: Several pages for Gallery CG, like an album

After doing what you told me, It keeps me telling this... :( : I'm sorry, but errors were detected in your script. Please correct the errors listed below, and try again. File "game/gallery.rpy", line 157: u'show' is not a keyword argument or valid child for the use statement. show screen g...
by johandark
Fri Feb 24, 2017 7:55 am
Forum: Ren'Py Questions and Announcements
Topic: Several pages for Gallery CG, like an album
Replies: 5
Views: 2703

Re: Several pages for Gallery CG, like an album

Thanks gas! I found this problem: I´ve did this: screen gallery_naviscreen(): textbutton "0" action Show("gallery", page_gallery=0) textbutton "1" action Show("gallery", page_gallery=1) textbutton "Return" action Return() #xalign 0.25 yalign 0.0 and ...
by johandark
Thu Feb 23, 2017 6:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Several pages for Gallery CG, like an album
Replies: 5
Views: 2703

Several pages for Gallery CG, like an album

I´ve got this: https://johandark.files.wordpress.com/2017/01/screenshot0003.png?w=500 I´m trying to make a Gallery for my game. For images, Music and Scenes. So far I´ve done this code (wich I changed a little bit): transform slowpan: xpos 0.0 block: easein_quad 2.0 xpos 0.1 easein_quad 2.0 xpos 0.0...
by johandark
Wed Feb 08, 2017 7:29 am
Forum: Ren'Py Questions and Announcements
Topic: ConditionSwitch without declare image, only transform
Replies: 3
Views: 658

Re: ConditionSwitch without declare image, only transform

xela wrote:Loose the At completely and add image PATH to the transform instructions.
The idea is to use the same transformation for many different images, specially with face expressions... If I put the image inside transform instructions... is a bad idea... ^^

Thanks for your answer.
by johandark
Tue Feb 07, 2017 9:01 am
Forum: Ren'Py Questions and Announcements
Topic: ConditionSwitch without declare image, only transform
Replies: 3
Views: 658

ConditionSwitch without declare image, only transform

There´s a lot of this kind of images, with different eyes looking different directions and more or less closed. aftermorning04_fr_kiss_anim06, At("aftermorning04_fr_kiss_14_d_eyes left00", aftermorning04_fr_kiss_14_d_FACE_anim06), #This one works fine. First I declare the conditional: &quo...
by johandark
Fri Jan 20, 2017 5:49 am
Forum: Ren'Py Questions and Announcements
Topic: image contain CONDITIONAL without ConditionSwith is posible?
Replies: 8
Views: 1376

Re: image contain CONDITIONAL without ConditionSwith is posi

Thanks indoneko!

That´s a way I didn´t know it was posible! ^^

But I wanted to know if it was posible do all that without the need of creating "transform" attributes outside the image itself...

I´m sure thought that your way will be really useful at some point too. Thanks!^^
by johandark
Thu Jan 19, 2017 10:25 am
Forum: Ren'Py Questions and Announcements
Topic: image contain CONDITIONAL without ConditionSwith is posible?
Replies: 8
Views: 1376

Re: image contain CONDITIONAL without ConditionSwith is posi

indoneko wrote:Well... I'm not a veteran either... :lol:

Please give me a couple minutes... I'll update this comment with a sample code...

I´ll wait. Thanks :)
by johandark
Wed Jan 18, 2017 7:57 pm
Forum: Ren'Py Questions and Announcements
Topic: image contain CONDITIONAL without ConditionSwith is posible?
Replies: 8
Views: 1376

Re: image contain CONDITIONAL without ConditionSwith is posi

I haven't tried it, but I think you'd better use function statement to allow ATL to use python functions to control ATL properties.... and then put it inside your displayable container. I know probably is ask too much... but since I´m an artist being completely a noob on programming... would it be ...
by johandark
Wed Jan 18, 2017 12:39 pm
Forum: Ren'Py Questions and Announcements
Topic: image contain CONDITIONAL without ConditionSwith is posible?
Replies: 8
Views: 1376

image contain CONDITIONAL without ConditionSwith is posible?

menu Dangerous_Ball: pt "Ball is coming" "<Sing a song.>" if ball blue == True and ball bouncing == False: $pl.ch_pts("dp",-1) jump nextsecene "<Dance.>" if ball blue == False and ball bouncing == False: $pl.ch_pts("dp",1) jump nextsecene In this ca...
by johandark
Tue Jan 10, 2017 12:39 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]ConditionSwitch "pl.dp >= num" is completely IGNORED
Replies: 6
Views: 787

Re: ConditionSwitch "pl.dp >= num" is completely IGNORED

xela wrote:This is getting a tad ridiculous, how much trouble can one person have figuring out booleans and evaluations....
Yes, You´re right, I´m a completely noob on programming, sorry for troubles...

But thank you very much, Now I learned a new thing and it works perfectly!

Thanks!
by johandark
Tue Jan 10, 2017 9:19 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]ConditionSwitch "pl.dp >= num" is completely IGNORED
Replies: 6
Views: 787

Re: ConditionSwitch "pl.dp >= num" is completely IGNORED

nyaatrap wrote:To reflect changes in ATL, you'll need to show it again.
Could you please show some example?.. :(
by johandark
Tue Jan 10, 2017 5:34 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]ConditionSwitch "pl.dp >= num" is completely IGNORED
Replies: 6
Views: 787

Re: ConditionSwitch "pl.dp >= num" is completely IGNORED

nyaatrap wrote:
nyaatrap wrote:Though I don't think conditionswitch in ATL works, because ATL only evaluates values when it's showing or replacing.
To reflect changes in ATL, you'll need to show it again.

I did not understand what you mean :S