Search found 1347 matches

by namastaii
Tue Feb 03, 2015 10:02 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

Re: How do I remove brackets from displaying lists?

Honestly, it is pretty simple to just put that ", ".join() after each contact add. just have to make it a habit to type it in right under each time then it's done that fast. Not too big of a deal. :) But all of your examples are great. Thank you guys for your input. I'll look back on this ...
by namastaii
Tue Feb 03, 2015 9:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Help? Can't add to values more than once in a scene..
Replies: 4
Views: 514

Re: Help? Can't add to values more than once in a scene..

label room: if energy <= 0: jump sleep scene bg mybedroom with dissolve #after first day: $ hours += 16 show screen day_and_time_screen "What would you like to do?" if job is "unemployed": menu: "Study": $ energy -= 3 $ hours += 3 $ intelligence += 5 "You studied....
by namastaii
Tue Feb 03, 2015 9:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Help? Can't add to values more than once in a scene..
Replies: 4
Views: 514

Help? Can't add to values more than once in a scene..

I hope this makes sense but in my story, the character can go back to their room and choose from a list of things to do until the time for the day is up or they're out of energy. etc. Once they complete a task, it adds the new values, to their energy or their money or intelligence or whatever it may...
by namastaii
Tue Feb 03, 2015 5:25 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

Re: How do I remove brackets from displaying lists?

Okay, thank you.

I actually know a fair amount of Python and just ..didn't know about this

I'll probably define a function. Good idea.
Thank you :)
by namastaii
Tue Feb 03, 2015 5:20 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

Re: How do I remove brackets from displaying lists?

Oh, really?

Is it every time?
or just after the first one?
by namastaii
Tue Feb 03, 2015 5:05 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

Re: How do I remove brackets from displaying lists?

Here is my example. I'm not sure if I need to take an extra step since I'm using a screen?..or maybe I'm missing something small. I'm using this code for a contacts list for whenever the character gains a new contact in the game. a new contact is added to contacts = [] with $ contacts.append("A...
by namastaii
Tue Feb 03, 2015 2:28 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

Re: How do I remove brackets from displaying lists?

It isn't really working. It just shows nothing .. lol Hm... maybe it's somthing small that is the problem.
by namastaii
Tue Feb 03, 2015 1:44 pm
Forum: Ren'Py Questions and Announcements
Topic: I'm looking for some help with an in-game cell phone screen?
Replies: 2
Views: 566

I'm looking for some help with an in-game cell phone screen?

I already have some images and working on more... and I am new at this but I'm not super new at programming. I was wondering if anyone had some good guidelines I could work off of to create a complex cell phone interface/screen. I know I'm asking for a lot but I want to learn how to do all the compl...
by namastaii
Mon Feb 02, 2015 11:41 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

Re: How do I remove brackets from displaying lists?

Nothing shows up when i do it that way.. XD
by namastaii
Mon Feb 02, 2015 8:40 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I remove brackets from displaying lists?
Replies: 16
Views: 1466

How do I remove brackets from displaying lists?

How do I hide the brackets around any list within the game for the user interfact? For example... screen inv_screen: frame: has vbox text "My inventory: [items]" text "Money: [money] dollars" A simple box that shows how much money the character has and the list of items that char...