Search found 1347 matches

by namastaii
Fri Sep 20, 2019 12:23 pm
Forum: Ren'Py Cookbook
Topic: Renpy editor UI - create story without code - need testers
Replies: 2
Views: 1062

Re: Renpy editor UI - create story without code - need testers

This is really interesting. I'm creating a Template maker for renpy that is only for the GUI (textbox, menus, theme) without coding haha I'd love to help and test it out for you and when you release it, I can put it on my site visualnovel.studio (still a work in progress) so people can find it ( I d...
by namastaii
Thu Sep 19, 2019 10:53 pm
Forum: Ren'Py Questions and Announcements
Topic: I don't understand this error
Replies: 11
Views: 695

Re: I don't understand this error

There's nothing wrong with #FF0 though

It's more likely they typed ## instead of one #
by namastaii
Thu Sep 19, 2019 11:04 am
Forum: Creative Commons
Topic: I made a website full of creative commons resources
Replies: 24
Views: 2829

Re: I made a website full of creative commons resources

For now it's just per category. I'm still deciding on the best approach to artist-specific displays. I might just take data from all areas and place them into lists based on the artist. It's still a work in progress.
by namastaii
Thu Sep 19, 2019 9:18 am
Forum: Creative Commons
Topic: I made a website full of creative commons resources
Replies: 24
Views: 2829

Re: I made a website full of creative commons resources

Image
You can now select the artist from a drop down list
by namastaii
Thu Sep 19, 2019 9:12 am
Forum: Creative Commons
Topic: I made a website full of creative commons resources
Replies: 24
Views: 2829

Re: I made a website full of creative commons resources

Yeah I'm still working on stuff like that and I was creating individual pages for artists that have a lot of work so it's all easy to find but I still haven't decided if I want to keep that route or not. But I can look at that sorting. What you can do as well is type the artist's name in the search ...
by namastaii
Thu Sep 19, 2019 12:04 am
Forum: Ren'Py Cookbook
Topic: Screen with input box for variables that get stored
Replies: 1
Views: 788

Re: Screen with input box for variables that get stored

I remember this from the Discord conversation. Thank you for sharing. This is a good solution for calling an input screen to store any variable instead of something specific so it's good to know about.
by namastaii
Wed Sep 18, 2019 8:10 pm
Forum: Creative Commons
Topic: I made a website full of creative commons resources
Replies: 24
Views: 2829

Re: I made a website full of creative commons resources

Thanks! also Thanks for everyone who has been submitting links on the site for me to add^^ Still need to add a lot of backgrounds but I've also started the sprites page and tools page. I need to redo the code recipe page and start adding more to that. And I'm going to restructure the items/props pag...
by namastaii
Tue Sep 17, 2019 12:16 pm
Forum: Creative Commons
Topic: ███ Namastaii's Assets ███
Replies: 46
Views: 16947

Re: ███ Namastaii's Assets ███

It's not silly to ask, it's going to be a tool you can use to visually create your GUI (like your textbox, the menus, etc) it's not going to be able to do EVERYTHING you want, but I'm hoping to make it useful
by namastaii
Mon Sep 16, 2019 3:25 pm
Forum: Ren'Py Questions and Announcements
Topic: I don't understand this error
Replies: 11
Views: 695

Re: I don't understand this error

You need to actually copy and paste your code because we can't see what's going on. If you tell us what you did, that doesn't really help because it could be a syntax error, etc. It'll be something you aren't catching that we can but we can't do anything without seeing the exact code. When asking fo...
by namastaii
Sun Sep 15, 2019 11:55 am
Forum: Development of Ren'Py
Topic: Coding Dialogue Statements easier!
Replies: 16
Views: 8349

Re: Coding Dialogue Statements easier!

Well normally when you're writing out the dialogue, you'd just put them in as you go. you could ctrl+f and type in character names in the script and "replace all" like replace d with d " and do the same for after periods but making sure you just do the ones that are at then end of the line. other th...
by namastaii
Sun Sep 15, 2019 11:31 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Trying to keep the namebox centered even with longer names.
Replies: 3
Views: 545

Re: Trying to keep the namebox centered even with longer names.

xpos is more for pixel location (xpos 356) etc
xalign is 0-1 with 0.5 being the center so you'll want to use that instead
you can also use text-align 0.5 for centered text
by namastaii
Sun Sep 15, 2019 11:20 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Working with Numerous Characters...
Replies: 6
Views: 602

Re: Working with Numerous Characters...

also some advice I have is you can definitely separate all your code into different files. you can have an .rpy file just for defining your variables.
by namastaii
Sun Sep 15, 2019 11:19 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Working with Numerous Characters...
Replies: 6
Views: 602

Re: Working with Numerous Characters...

I think when defining the actual variables themselves, you would would to have a list at the beginning with 0. I don't really know if there is a way to shorten it unless you were to maybe define some python class that holds a template of information which I don't fully have an example of or know the...