Search found 5 matches

by fauxbius
Wed Jun 26, 2019 2:51 pm
Forum: Ren'Py Cookbook
Topic: telegram messenger (4 version)
Replies: 123
Views: 41065

Re: telegram messenger (2 version)

Quick note that with testing, I can't use images over 580px height. Anything over displays skewed even if I use the pic_y argument properly. Would be amazing to get larger images supported, I'm probably gonna use this code heavily in a game. Trying to work now on implementing a calling system and so...
by fauxbius
Mon Jun 24, 2019 6:26 pm
Forum: Ren'Py Cookbook
Topic: telegram messenger (4 version)
Replies: 123
Views: 41065

Re: telegram messenger (2 version)

sDextra wrote: Mon Jun 24, 2019 6:12 pm I just basically fixed and updated code on demand because I am incredible
Thanks!
by fauxbius
Mon Jun 24, 2019 5:43 pm
Forum: Ren'Py Cookbook
Topic: telegram messenger (4 version)
Replies: 123
Views: 41065

Re: telegram messenger (2 version)

Not ("No, it\'s [name]") but ("No, it\'s %s"%(name)) if you want to input a name outside the message bubble: $ name = renpy.input(u"What's your name?", length=25).title() if name=="Jack": $ msg ("Yeah, this is Jack") else: $ msg ("No, it\'s %s&...
by fauxbius
Mon Jun 24, 2019 12:22 pm
Forum: Ren'Py Cookbook
Topic: telegram messenger (4 version)
Replies: 123
Views: 41065

Re: telegram messenger (2 version)

If I understand you correctly, you can try using this function: $ freeze() # your actions $ unfreeze() I actually ended up doing the below using the del_last_msg, as the freeze didn't work, it wouldn't unfreeze after taking a name, or wouldn't let me inout anything. The problem is that you type the...
by fauxbius
Mon Jun 24, 2019 9:15 am
Forum: Ren'Py Cookbook
Topic: telegram messenger (4 version)
Replies: 123
Views: 41065

Re: telegram messenger (2 version)

This code is amazing, thanks! Quick questions: Is it possible to stop the script progressing until the name input has been completed? Once I've put in the name, does it have to display as a text? I'd prefer to input the name, then on a new line put "Oh hi, [name]" instead of just having th...