Search found 10 matches

by Palanto
Thu Jun 21, 2018 6:44 pm
Forum: Ren'Py Cookbook
Topic: Quest Log
Replies: 11
Views: 14749

Re: Quest Log

Thank you for the suggestions, but unfortunately the first doesn't work. With my imagebuttons like this: hbox: xpos 90 ypos 60 imagebutton: auto "gui/hud/Apps/Goals/old/current_%s.png" focus_mask True selected goal_app_currenttoggle == True action [ SetField(log, "tvar", "A...
by Palanto
Fri Jun 15, 2018 4:15 am
Forum: Ren'Py Cookbook
Topic: Quest Log
Replies: 11
Views: 14749

Re: Quest Log

Hmmm, there are multiple ways, the easiest for not so great programmers (like I am) would be to manually set "i" What I mean is, in quests.rpy the third string in quests.append(Quest("1st", "2nd", "this one" is the name for the tabs, so if you just have two li...
by Palanto
Sun Dec 03, 2017 6:00 pm
Forum: Ren'Py Questions and Announcements
Topic: "Patching" a Renpy-game
Replies: 10
Views: 31961

Re: "Patching" a Renpy-game

You're welcome. Well if it works then it's alright :) Or did you want to do it in a different way? Because in your first post you said that you wanted it to work like you're doing it now? :) You could also do it with a code actually, without a "patch file", just asking the player to enter ...
by Palanto
Sun Dec 03, 2017 7:39 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] String returned by a function is not replacing the call inside a ren'py Text...
Replies: 10
Views: 3841

Re: String returned by a function is not replacing the call inside a ren'py Text...

Oh my god, I'm so stupid... thank you philat! :D That's exactly how I wanted to do that :D
And thanks RicharDann :)
by Palanto
Sun Dec 03, 2017 7:27 am
Forum: Ren'Py Questions and Announcements
Topic: "Patching" a Renpy-game
Replies: 10
Views: 31961

Re: "Patching" a Renpy-game

Did you find a solution for it yet? Well the first thing you'd need is to know how you can create those .rpa files. Look at this (added more comments so that you better understand what I did there): options.rpy: ## Classify files as None to exclude them from the built distributions. ## Here you can ...
by Palanto
Thu Nov 30, 2017 5:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] String returned by a function is not replacing the call inside a ren'py Text...
Replies: 10
Views: 3841

Re: String returned by a function is not replacing the call inside a ren'py Text...

RicharDann wrote: Thu Nov 30, 2017 5:33 pm You make a valid point. I would assign it a temporary None value and change it afterwards
Hmmm, that's another way to do it sure.... Didn't think about that X_x Thanks I'll try that tomorrow :) Don't want to mess with the code now when I'm as tired as I'm right now :)
by Palanto
Thu Nov 30, 2017 3:14 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] String returned by a function is not replacing the call inside a ren'py Text...
Replies: 10
Views: 3841

Re: String returned by a function is not replacing the call inside a ren'py Text...

Sorry for double posting... The next problem I'm having with taking your method would be that I've got the pl.name inside the list which is the players name inside the pl Object, but the object gets created "after" the class gets defined, meaning I don't have the object at init... Even if ...
by Palanto
Thu Nov 30, 2017 1:39 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] String returned by a function is not replacing the call inside a ren'py Text...
Replies: 10
Views: 3841

Re: String returned by a function is not replacing the call inside a ren'py Text...

Alright, in this case it's not that important then ;) I'm going to use your example :) Thanks again for your help and for the fast answer :)
by Palanto
Thu Nov 30, 2017 1:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] String returned by a function is not replacing the call inside a ren'py Text...
Replies: 10
Views: 3841

Re: String returned by a function is not replacing the call inside a ren'py Text...

Well it's actually better than doing it by hand every time and it does solve the problem somehow! ;) So yes, I'll go with that for now. Thank you so much for your help!! :) But is there really no way to use a return value directly inside a Text? Just for future reference, might come in handy later t...
by Palanto
Thu Nov 30, 2017 12:25 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] String returned by a function is not replacing the call inside a ren'py Text...
Replies: 10
Views: 3841

[Solved] String returned by a function is not replacing the call inside a ren'py Text...

Sorry if this got answered anywhere, I already googled around for days, checked the forum, the old wiki and the documentation for everything possibly related to it :( I've got a little problem and would really apreciate some help from you awesome folks out here: I created a function which takes a cl...