Search found 4 matches

by M1sh4
Mon Feb 14, 2022 6:55 am
Forum: Ren'Py Questions and Announcements
Topic: Get variable from lable
Replies: 3
Views: 309

Re: Get variable from lable

Ocelot wrote: Mon Feb 14, 2022 6:40 am if Current_Character = "SomeChar":if Current_Character == "SomeChar":
It is just a typo
by M1sh4
Mon Feb 14, 2022 6:16 am
Forum: Ren'Py Questions and Announcements
Topic: Get variable from lable
Replies: 3
Views: 309

Get variable from lable

In label start I have the variable $Current_Character = "SomeCahr" And this variable is used in the function. But it always gives an error that the variable "Current_Character" does not exist. If Current_Character = "SomeChar" How can this be fixed? Part of code: label ...
by M1sh4
Sat Sep 12, 2020 7:34 am
Forum: Ren'Py Questions and Announcements
Topic: Change the position of the Textbox during the game
Replies: 2
Views: 395

Re: Change the position of the Textbox during the game

you can go to screens.rpy and find the say screen and add a variable pos default textbox_pos = None # screen.rpy screen say(who, what): ... # codes before the below code window: if textbox_pos is not None: # try do add this... pos textbox_pos ... # codes of the window and then you can manipulate th...
by M1sh4
Sat Sep 12, 2020 1:43 am
Forum: Ren'Py Questions and Announcements
Topic: Change the position of the Textbox during the game
Replies: 2
Views: 395

Change the position of the Textbox during the game

How to change the position of the Textbox during the game when clicking on the button.
I tried to do this through 'ConditionSwitch ()' but this is only for images, through variables and also through 'default',
but nothing worked for me.