Search found 11 matches

by Rufus
Sun May 20, 2018 5:34 pm
Forum: Ren'Py Questions and Announcements
Topic: Hotspot Function problem
Replies: 6
Views: 1124

Re: Hotspot Function problem

Thanks again mate. Could you tell me one more thing if I do it on labels label notfound: *something* call screen hotspots label found: *something* call screen hotspots Should I end label with "call screen hotspots" or is there any other option to loop that.
by Rufus
Sun May 20, 2018 3:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Hotspot Function problem
Replies: 6
Views: 1124

Re: Hotspot Function problem

I made it but I got 2 question screen search(message): text "You found "+message+"." xalign 0.5 yalign 0.5 is there any way to make looks like dialog box ? and text "You found "+message+". I saw three methods of connection variables with text and I'm curious which ...
by Rufus
Sun May 20, 2018 1:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Hotspot Function problem
Replies: 6
Views: 1124

Thank you

Thanks guys for quick respond.
I will use screen with parameter.
by Rufus
Sun May 20, 2018 8:36 am
Forum: Ren'Py Questions and Announcements
Topic: Hotspot Function problem
Replies: 6
Views: 1124

Hotspot Function problem

I made few hotspots hotspot (707, 276, 94, 78) clicked Jump("notfound") hotspot (121, 238, 265, 168) clicked Jump("notfound") if found == False: hotspot (453, 163, 92, 170) clicked Jump("found") hotspot (244, 145, 138, 107) clicked Jump("notfound") And my goal...
by Rufus
Wed May 09, 2018 11:20 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Source Code

I made corrects and for me everything works.
I add source code in this post please remeber the author of this code is Elaine I just rewrote it.
Thanks for kivik for helped me out.
by Rufus
Sat May 05, 2018 8:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Re: Problem with RPG Inventory by Elaine

Yea I will correct code and check everything Im glad that it works because I spent 4hours to rewrote it : D and it's really match my project
Thank you for all help and advices.
by Rufus
Sat May 05, 2018 7:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Re: Problem with RPG Inventory by Elaine

yeaa !! :D success ! thank you very much!

Image


by the way maybe you know how to do button to acess inventory to open and close in any time of game ? :D
by Rufus
Sat May 05, 2018 7:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Re: Problem with RPG Inventory by Elaine

:D thank you man for helping me I really appreciated that. I changed show screen inventory_screen to call screen inventory_screen And got While running game code: File "game/script.rpy", line 34, in script call screen inventory_screen File "renpy/common/000statements.rpy", line 5...
by Rufus
Sat May 05, 2018 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Re: Problem with RPG Inventory by Elaine

Thank you I add this line

Code: Select all

show screen inventory_screen
and launch project and cannot go any further start button doesnt react.
by Rufus
Sat May 05, 2018 6:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Re: Problem with RPG Inventory by Elaine

Yea... :D sorry character.rpy init python: class Player: def __init__(self, hp, mp, atk, defense, mdef,level=1): self.hp = hp self.mp = mp self.max_hp = hp self.max_mp = mp self.atk = atk self.mdef =mdef self.level = level self.weapon = None self.armor = {"head": None, "chest": N...
by Rufus
Sat May 05, 2018 5:03 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with RPG Inventory by Elaine
Replies: 14
Views: 2823

Problem with RPG Inventory by Elaine

I tried to do tutorial Elaine rpg Inventory

https://www.youtube.com/watch?v=leEiOzuVpTc

I rewrote her code but when I lanuch it nothing happen any exception, nothing. I dont know maybe someone got similar problem.