Search found 8 matches

by Dookiesh0ez
Sat Jun 24, 2017 6:50 pm
Forum: Other Visual Novel Engines
Topic: Tyranobuilder?
Replies: 67
Views: 26911

Re: Tyranobuilder?

Just a heads up to anyone interested, it is on sale on steam right now for the summer sale. I picked it up and had a quick look, looks like it will be more of a pain than just coding (for me anyway) but I really like all the different platforms it supports. Anyone know any really technically good ga...
by Dookiesh0ez
Sat Jun 24, 2017 6:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Image Maps & UI
Replies: 7
Views: 2286

Re: Image Maps & UI

I'm sure this isn't the best way to do it, but I simply manually added a bar to every imagemap where the UI would be accessible and gave them hotspots. i.e. screen forest: imagemap: ground "images/BG_Forest_Map.png" hover "images/BG_Forest_Map_Hover.png" hotspot(20,4,60,49) actio...
by Dookiesh0ez
Wed Jun 07, 2017 7:40 am
Forum: Ren'Py Questions and Announcements
Topic: Shade on the background during dialogue
Replies: 4
Views: 705

Re: Shade on the background during dialogue

This probably isn't the best way to do it, but you could create a screen with a transparent black (or whatever color) image and then call it before dialog and hide it afterwards.
by Dookiesh0ez
Wed Jun 07, 2017 7:33 am
Forum: Ren'Py Questions and Announcements
Topic: Print a list on screen
Replies: 3
Views: 1941

Re: Print a list on screen

Thanks, but it doesn't seem like this will work for my situation, as I'm trying trying to display the text as part of a screen so I that I can show or hide it with a click. ( I should have mentioned this in the thread title, sorry) However, after looking a little harder at the screen documentation I...
by Dookiesh0ez
Wed Jun 07, 2017 4:39 am
Forum: Ren'Py Questions and Announcements
Topic: Print a list on screen
Replies: 3
Views: 1941

Print a list on screen

I have a list called inventory that I want to print on screen. I'm looking for a format that would be like this in python print '\n'.join(inventory) but I can't find anything equivalent in the renpy documentation, right now I'm just using text "[inventory]" xpos 370 ypos 140 but the output...
by Dookiesh0ez
Wed May 24, 2017 5:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Displaying text at a particular x y coordinate
Replies: 5
Views: 2269

Re: Displaying text at a particular x y coordinate

I don't know, I'm not that familiar with renpy, but every other indentation error i've had so far has caused one. I don't really see how xpos and ypos outside of the correct syntax could be useful though.
by Dookiesh0ez
Wed May 24, 2017 4:14 pm
Forum: Ren'Py Questions and Announcements
Topic: Displaying text at a particular x y coordinate
Replies: 5
Views: 2269

Re: Displaying text at a particular x y coordinate

Two problems and a two suggestions: 1. There is an indentation problem in your code. Here there are two options. 2. An integer number means "pixels" a float number means "% in the screen". This is somewhat tricky, see the tutorial game to learn about it. 3. Don't need the % pyth...
by Dookiesh0ez
Wed May 24, 2017 3:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Displaying text at a particular x y coordinate
Replies: 5
Views: 2269

Displaying text at a particular x y coordinate

I'm trying to use show screen to show text at a certain coordinate. I saw documentation that it should look something like this screen money: text ("%d" % money) xpos 10.0 ypos 10.0 But that isn't working, the text always displays at the upper left corner, 0, 0. And frustratingly I now can...