Search found 63 matches

by iDweadith
Mon May 18, 2020 5:43 am
Forum: Ren'Py Questions and Announcements
Topic: Button actions
Replies: 6
Views: 432

Re: Button actions

I mean in order to make an imagebutton works is that below the right way?

Code: Select all


imagebutton: 
	action: Jump("text")

screen text():
text "Hello world!"

Also I'm not understanding the difference between Call and Jump
by iDweadith
Sun May 17, 2020 12:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Button actions
Replies: 6
Views: 432

Button actions

Hi I'm a bit confused

Is the screen action the right way to make a button doing something on click?

I mean, I'm using an imagebutton so when I click on it I want a text to appear, do I have to call a screen with the text in it?
by iDweadith
Wed May 13, 2020 6:14 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy.pause()
Replies: 4
Views: 251

Re: Renpy.pause()

Oh ok, that is very usefull thank you!
by iDweadith
Wed May 13, 2020 3:50 am
Forum: Ren'Py Questions and Announcements
Topic: Gui guide
Replies: 3
Views: 279

Re: Gui guide

Oh thank you both!!
So I need styles

I found this in documentation https://www.renpy.org/doc/html/style_pr ... properties
And there are many properties, it will be hard :D

Thank you guys
by iDweadith
Wed May 13, 2020 12:18 am
Forum: Ren'Py Questions and Announcements
Topic: Gui guide
Replies: 3
Views: 279

Gui guide

Hello guys,

Do you know any guide that can introduce me into gui customization?

I mean fonts, textbuttons, containers ecc..
by iDweadith
Tue May 12, 2020 10:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy.pause()
Replies: 4
Views: 251

Re: Renpy.pause()

Wow that function is so usefull, thank you it was all clear!

So I can use it also like a timer
by iDweadith
Tue May 12, 2020 10:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy.pause()
Replies: 4
Views: 251

Renpy.pause()

Hello guys,
Can you pls explain to me what renpy.pause is used for?
by iDweadith
Thu May 07, 2020 4:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Invetory items quantity
Replies: 6
Views: 428

Re: Invetory items quantity

Nice thanks guys :D
by iDweadith
Thu May 07, 2020 4:45 am
Forum: Ren'Py Questions and Announcements
Topic: Call a function in RenPy
Replies: 6
Views: 346

Re: Call a function in RenPy

I got it thanks :D
by iDweadith
Thu May 07, 2020 4:44 am
Forum: Ren'Py Questions and Announcements
Topic: Invetory items quantity
Replies: 6
Views: 428

Re: Invetory items quantity

Thanks Milkymalk, yes I saw your tutorial it was very usefull

I want that the var number changes according to how many time a name is repeated

If I have in inventory ["pizza", "pizza", "pizza"] on my return I want ("3 pizza in you inventory")
by iDweadith
Thu May 07, 2020 2:42 am
Forum: Ren'Py Questions and Announcements
Topic: Invetory items quantity
Replies: 6
Views: 428

Invetory items quantity

Hi, guys is there a way to count the amount of items in my inventory

I'm using a list called itemlist, I want that for every item in list i can get the quantity

I mean if in my list there are 2 string "pizza", "pizza", i want a line who says "2 x pizza"

Thanks
by iDweadith
Wed May 06, 2020 5:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Display mothod attributes
Replies: 6
Views: 308

Re: Display mothod attributes

It works thank you :D
by iDweadith
Wed May 06, 2020 5:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Call a function in RenPy
Replies: 6
Views: 346

Re: Call a function in RenPy

It works!!!!
Thank you both :DDD
by iDweadith
Wed May 06, 2020 4:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Call a function in RenPy
Replies: 6
Views: 346

Re: Call a function in RenPy

Thank you :D

Code: Select all

def hello_world():
    "Hello World"
    
hello_world()
But why If I do something like in the upper code, I can't get the text in Dialogue box? :(
by iDweadith
Wed May 06, 2020 4:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Call a function in RenPy
Replies: 6
Views: 346

Call a function in RenPy

Hello how do I call a function without a class in RenPy?

Like this:

Code: Select all

def hello_world():
    print("Hello world")
    
hello_world()