Search found 72 matches

by shuen
Thu Jun 28, 2012 9:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with character graphic not working(solved)
Replies: 11
Views: 1366

Re: Problem with character graphic not working

It should be
image ciel = Image("ciel_neutral.jpg")
show ciel
by shuen
Tue May 15, 2012 9:57 am
Forum: Ren'Py Questions and Announcements
Topic: Lost my .rpy files - can I recover from .rpyc?
Replies: 5
Views: 1376

Re: Lost my .rpy files - can I recover from .rpyc?

PyTom you such a LIFESAVER ^_^
by shuen
Tue May 15, 2012 9:22 am
Forum: Ren'Py Questions and Announcements
Topic: Another question on classes
Replies: 33
Views: 3882

Re: Another question on classes

Maybe yes, I use 6.13.12
by shuen
Tue May 15, 2012 8:29 am
Forum: Ren'Py Questions and Announcements
Topic: Another question on classes
Replies: 33
Views: 3882

Re: Another question on classes

The "Downcount: [counter.downCount]" works well on my side. The following code already corrected some mistake to make it work. init python: class CounterTest: def __init__(self, pName, pN, pM): self.name = pName self.downCount = pN +1 self.upCount = pM - 1 def count(self): if self.downCoun...
by shuen
Tue May 15, 2012 1:43 am
Forum: Ren'Py Questions and Announcements
Topic: Another question on classes
Replies: 33
Views: 3882

Re: Another question on classes

%(counter.downCount)d maybe?


Why don't you try "Downcount: [counter.downCount]" ?
by shuen
Mon May 14, 2012 11:00 am
Forum: Ren'Py Questions and Announcements
Topic: Another question on classes
Replies: 33
Views: 3882

Re: Another question on classes

You need a python: before the "for...in" statment

Code: Select all

    python:
        for entry in counter: 
            while entry.downCount > 0: 
                entry.count() 
    "[entry.name] Downcount: [entry.downCount]" 
    "[entry.name] Upcount: [entry.upCount]"
by shuen
Mon May 14, 2012 7:16 am
Forum: Ren'Py Questions and Announcements
Topic: If statement issues
Replies: 13
Views: 985

Re: If statement issues

Are you want to do something like this? init python: Kiss = False # the default value is False at the begining label start: menu: "I like her": $ Kiss = True jump up_coming_event "Just be friend": jump up_coming_event label up_coming_event: "story story story ....etc" i...
by shuen
Sun May 13, 2012 12:21 am
Forum: Ren'Py Questions and Announcements
Topic: If statement issues
Replies: 13
Views: 985

Re: If statement issues

Try This. init python: Kiss = False # the default value is False at the begining scene tree with fade play music "restful.ogg" show yuukinormal m "ahh what a great day~" y "hmm~" $ Kiss = True #Become True after some event if Kiss: k "MAKOTO!!!!!" hide yuukino...
by shuen
Fri May 11, 2012 1:33 am
Forum: Ren'Py Questions and Announcements
Topic: Video and Title Screen
Replies: 1
Views: 406

Re: Video and Title Screen

use SEARCH and you'll find out the answer.

Q1.SEE How do I customize the main menu?

Q2. Put your video in Label splashscreen
by shuen
Thu May 10, 2012 1:55 am
Forum: Ren'Py Questions and Announcements
Topic: Error message - problem unknown
Replies: 3
Views: 643

Re: Error message - problem unknown

I think the problem is here:
"{color=#FFFF00}See if Gage will spit out [i]anything[/i] helpful{/color}":
try to remove the [i] and [/i] and see what happen
by shuen
Wed May 09, 2012 9:58 am
Forum: Ren'Py Questions and Announcements
Topic: Ask character's name in Android
Replies: 12
Views: 3183

Re: Ask character's name in Android

You can make you own python list, the list I created is named "text_list", and it contains some "text_code". (of course you can name any names you want.) text_list=["Q","W","E","R","T","Y","U","I",&qu...
by shuen
Wed May 09, 2012 1:02 am
Forum: Ren'Py Questions and Announcements
Topic: Ask character's name in Android
Replies: 12
Views: 3183

Re: Ask character's name in Android

This is related to $ button_selection=ui.interact() But the select_text is for the input_text += text_code Just make it more easy to recognize for myself. $ select_text=button_selection python: for text_code in text_list: if select_text==text_code: input_text += text_code jump inputter of course you...
by shuen
Mon May 07, 2012 8:30 am
Forum: Ren'Py Questions and Announcements
Topic: Ask character's name in Android
Replies: 12
Views: 3183

Re: Ask character's name in Android

This code is originally from the korea inputter . It also help me alot to make my Chinese inputter. People always helping each other and would like to share their code that why I love this forum and Ren'py. :D P.s. I change the code above, Just find out the prepare_text is useless for english inputt...
by shuen
Mon May 07, 2012 7:22 am
Forum: Ren'Py Questions and Announcements
Topic: Another question on classes
Replies: 33
Views: 3882

Re: Another question on classes

in Serf, total_agricultural_land is missing