Search found 25 matches

by Maoh
Tue May 10, 2016 8:41 pm
Forum: Ren'Py Questions and Announcements
Topic: Text is messed up. [SOLVED]
Replies: 2
Views: 434

Re: Text is messed up.

Thank you, though i love Nyala to no end it seems it's the issue here.
by Maoh
Mon May 09, 2016 9:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Text is messed up. [SOLVED]
Replies: 2
Views: 434

Text is messed up. [SOLVED]

Hello boys, i'm making a proyect for my Telematic technician thing and i decided to make the documentation a interactive thing with renpy, everything is going well so far until i noticed some text got messed up for some reason, here's the raw entry on the script: s "Las opciones recomendadas pa...
by Maoh
Thu Feb 11, 2016 10:06 pm
Forum: Ren'Py Questions and Announcements
Topic: How to open a screen with hotspot
Replies: 30
Views: 2121

Re: How to open a screen with hotspot

"action Show()" or "action ShowMenu()" maybe?
by Maoh
Wed Feb 10, 2016 8:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Close multiple screens and hyperlink multi action [SOLVED]
Replies: 4
Views: 2214

Re: Close multiple screens and hyperlink multi action

Nvm, i fixed it with a badass combo of screens and show/hide statements that not even i know how it works.
by Maoh
Tue Feb 09, 2016 7:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Close multiple screens and hyperlink multi action [SOLVED]
Replies: 4
Views: 2214

Re: Close multiple screens and hyperlink multi action

I came up with somehting else. Due to the fact the hyperlink is using the function: def hyperlink_clicked(link): renpy.show_screen("Base1") renpy.show_screen(link, link=link) renpy.restart_interaction() I was planning on replacing the "renpy.show_screen()" for a custom action tha...
by Maoh
Sun Feb 07, 2016 9:44 pm
Forum: Ren'Py Questions and Announcements
Topic: Close multiple screens and hyperlink multi action [SOLVED]
Replies: 4
Views: 2214

Re: Close multiple screens and hyperlink multi action

Derp, i didn't know close tags was already implemented... I wanted to close tags rather than to close all screens because i'm gonna end up using 20 or some screens at the end, so it's a waste of resources to go through all those names when only one needs to be closed, thanks for pointing it out. And...
by Maoh
Sat Feb 06, 2016 11:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Close multiple screens and hyperlink multi action [SOLVED]
Replies: 4
Views: 2214

Close multiple screens and hyperlink multi action [SOLVED]

I know i'm bitching a lot about this thing, but these are the only two things left for my framewok to be ready so yeah. Well first, i want to know if there's a way to close like all screens with a certain tag like i can say "Hide(tag=(something))" or something like that, i just have a scre...
by Maoh
Fri Feb 05, 2016 9:59 pm
Forum: Ren'Py Questions and Announcements
Topic: TextHistory vs screens [Solved]
Replies: 8
Views: 1608

Re: TextHistory vs screens Round 2

Thank you, i managed to get it to work. For anyone else with the same problem, you can add: init python: class AppendToSet(Action,FeildEquality): identify_fields=['set','value'] def _init_(self,set,value): self.set=set self.Value=Value def get_sensitive(self): return self.value not in self.set def _...
by Maoh
Thu Feb 04, 2016 8:28 pm
Forum: Ren'Py Questions and Announcements
Topic: TextHistory vs screens [Solved]
Replies: 8
Views: 1608

Re: TextHistory vs screens Round 2

Lol yeah, that parenthesis is a leftover from my attempts to modify the code. I want the mousewheel enabled because there's a good amount of text in the screen and a viewport is a very comfortable way to handle it, and the mousewheel is so very intuitive when it comes to a single vertical bar. My th...
by Maoh
Wed Feb 03, 2016 9:39 pm
Forum: Ren'Py Questions and Announcements
Topic: TextHistory vs screens [Solved]
Replies: 8
Views: 1608

Re: TextHistory vs screens [SOLVED]

"The force is strong with this screen..." Unluckily disabling "mousedown_4" didn't returned the functionality for viewports, seems like the HistoryLog is overwriting every mousedown_4 action, i was about to drop the idea of this Log when i came upon a ray of hope, these are the a...
by Maoh
Tue Feb 02, 2016 8:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with Sprites
Replies: 3
Views: 438

Re: Problem with Sprites

Save your images with Ctrl+Shift+Alt and the S key ("save for web and devices")
It's the same for other Adobe programs, take in count that programs like Pain and SAI won't be able to save with transparency at all.
by Maoh
Tue Feb 02, 2016 8:17 pm
Forum: Ren'Py Questions and Announcements
Topic: TextHistory vs screens [Solved]
Replies: 8
Views: 1608

Re: TextHistory vs screens

Thank you, i was thinking about that option as my plan B but didn't know what to modify, as i haven't come with another solution other than to delete the whole history log i think i'll just implementing this option.
by Maoh
Mon Feb 01, 2016 5:23 pm
Forum: Ren'Py Questions and Announcements
Topic: TextHistory vs screens [Solved]
Replies: 8
Views: 1608

TextHistory vs screens [Solved]

Hello good people. After making the last check up before packing this thing out, i found the history log i'm using is breaking the functionality of a special encyclopedia-like screen i'm using. (The hystory log's code is huge as hell, to prevent a huge ass post please do check it out here if necesar...
by Maoh
Sat Jan 23, 2016 3:38 pm
Forum: Ren'Py Questions and Announcements
Topic: A wild button appeared! [SOLVED]
Replies: 3
Views: 413

Re: A wild button appeared!

Thank you! I've never used the offset statement, it's working alright now. This is the code right now transform Pedia_ret_eff: on hover: easein 0.1 yoffset 5 easein 0.1 yoffset -5 repeat on idle: easein 0.1 yoffset 0 I still don't know what you meant by making the on idle block unnecesary, but it's ...
by Maoh
Fri Jan 22, 2016 8:53 pm
Forum: Ren'Py Questions and Announcements
Topic: A wild button appeared! [SOLVED]
Replies: 3
Views: 413

A wild button appeared! [SOLVED]

I don't know if this has been addressed before (i hope it doesn't, my internet connection atm is very limited and i can't check very well.) I'm making a simple screen with a simple button that shakes when the user hovers it, like this: screen Test: imagebutton idle "close.png" xalign 0.5 y...