Search found 198 matches

by neometalero
Thu Feb 04, 2021 9:58 am
Forum: Ren'Py Questions and Announcements
Topic: Change language in screen's text
Replies: 4
Views: 643

Change language in screen's text

I'm using this code for changing the language on my screen, but it doesn't work when I change the language. Always show the none option. What I'm doing wrong? vbox: if Language(None): text _("{color=#F313E4}Points:{/color} ") + str(g.points) size 24 text _("{color=#F313E4}Time:{/color...
by neometalero
Thu Jan 21, 2021 3:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Change Font in one menu
Replies: 2
Views: 315

Re: Change Font in one menu

This worked great, tks a lot!
by neometalero
Wed Jan 20, 2021 10:40 am
Forum: Ren'Py Questions and Announcements
Topic: Change Font in one menu
Replies: 2
Views: 315

Change Font in one menu

I need to be able to change the font for just one menu. I tried with this menu: "Menu Option 01" font "fonts/5x5_pixel.ttf": play sound "sounds/BipMenu.mp3" jump eventMenuGlitchpt2 #va a donde puede ocurrir cosas but didnt worked. Any ideas?
by neometalero
Thu Dec 31, 2020 10:14 am
Forum: Ren'Py Cookbook
Topic: Configuring Notepad++ for Ren'Py
Replies: 14
Views: 37702

Re: Configuring Notepad++ for Ren'Py

This was really useful, but I have a doubt, the styles seem to not work using this. No matter what style I select the text looks the same (only the background color changes). Any idea how I can fix this? https://i.ibb.co/zP90fKK/ejemps.jpg At the time of writing, I am using Notepad++ v6.6.9 Some of ...
by neometalero
Wed Dec 30, 2020 10:30 am
Forum: Ren'Py Cookbook
Topic: Configuring Notepad++ for Ren'Py
Replies: 14
Views: 37702

Re: Configuring Notepad++ for Ren'Py

I recently started using Ren'Py and noticed how it doesn't even recommend Notepad++ as a default editor, i found this weird since in my opinion Notepad++ is the most convenient free editor i know about, and it's my editor of choice for almost all of my coding. But when i tried using it with Ren'Py,...
by neometalero
Fri Dec 11, 2020 9:14 am
Forum: Ren'Py Questions and Announcements
Topic: Do stuff before timeout action jumps
Replies: 2
Views: 507

Re: Do stuff before timeout action jumps

Like what exactly? Because you can use multiple actions, tried that already? timer timeout action [Action1(), Action2(),..., Jump(timeout_label)] In your timeout labels, you can also call a label where these things happen then return to the timeout label, that's another workaround too. Tks! I didnt...
by neometalero
Thu Dec 10, 2020 11:05 am
Forum: Ren'Py Questions and Announcements
Topic: Do stuff before timeout action jumps
Replies: 2
Views: 507

Do stuff before timeout action jumps

I have a time menu that if you don't take a decision on time it jump to the label you indicated. In Screens: screen qtEvents_choice(items, cols, rows): style_prefix "qtEvents_choice" # Pad out the list of items to match the space. $ padded_items = items + [ None ] * ( rows * cols - len(ite...
by neometalero
Mon Nov 02, 2020 9:25 am
Forum: Ren'Py Questions and Announcements
Topic: Create checkpoints and desable manual save
Replies: 2
Views: 494

Re: Create checkpoints and desable manual save

Hi neometalero , I think the following links can help: https://lemmasoft.renai.us/forums/viewtopic.php?t=12450 https://www.renpy.org/doc/html/save_load_rollback.html https://www.renpy.org/doc/html/screen_special.html#save One way to do that: To disable save menu you can apply _game_menu_screen = &q...
by neometalero
Fri Oct 30, 2020 9:49 am
Forum: Ren'Py Questions and Announcements
Topic: 'NoneType' object has no attribute 'append'
Replies: 4
Views: 369

Re: 'NoneType' object has no attribute 'append'

Probably "chatEng" and/or "[eng]" are wrong parameters to pass to the snippet. Your code is legit, formally. The error is not your typing, is how such parameters go wrong with some cookbook recipe you're using. I found the problem. I was showing two different chats at the same t...
by neometalero
Thu Oct 29, 2020 5:41 pm
Forum: Ren'Py Questions and Announcements
Topic: 'NoneType' object has no attribute 'append'
Replies: 4
Views: 369

Re: 'NoneType' object has no attribute 'append'

The error is not in such code, but the chat.addmessage code, that's trying to append the string to a list (or list object) that's not defined or wrongly defined. Go ask to the one posted such cookbook snippet. Weird, I'm not getting any problem with the same code in the rest of the game. I will che...
by neometalero
Thu Oct 29, 2020 2:55 pm
Forum: Ren'Py Questions and Announcements
Topic: 'NoneType' object has no attribute 'append'
Replies: 4
Views: 369

'NoneType' object has no attribute 'append'

Im getting this error https://i.ibb.co/z5HRvS6/2020-10-29-15-40-13-Greenshot.png This is the code: if hackeandoServirdorCentral: $turnosHackServidorCentral-=1 show screen chatdisplay02 #Muestra el texto como chat with dissolve if turnosHackServidorCentral>0: $ chat.addmessage("chatEng",&qu...
by neometalero
Tue Oct 27, 2020 10:34 am
Forum: Ren'Py Questions and Announcements
Topic: Create checkpoints and desable manual save
Replies: 2
Views: 494

Create checkpoints and desable manual save

Hi, I want to know how I can make automatic save states / checkpoints, and at the same time disable the manual saves. The gameplay I'm using for my game doesn't go well with manual saves.
by neometalero
Mon Oct 26, 2020 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: Syntaxis Error in my menu
Replies: 2
Views: 263

Re: Syntaxis Error in my menu

Vladya wrote: Mon Oct 26, 2020 10:42 am

Code: Select all

        "VENTAJA 01 ELEGIR" if opcTact01 AND eligioOpcTact01==False:
Correct "AND" to "and". Python is a case sensitive language.
I'm an idiot, cant believe I didn't see that, tks a lot!
by neometalero
Mon Oct 26, 2020 10:17 am
Forum: Ren'Py Questions and Announcements
Topic: Syntaxis Error in my menu
Replies: 2
Views: 263

Syntaxis Error in my menu

I'm getting this error https://i.ibb.co/fd1wq6V/2020-10-26-11-09-46-Greenshot.png but I cant find out what's wrong with my menu. Any idea? My code: label ventajasCombateTesteo: menu: "VENTAJA 01 DESBLOQUEAR" if opcTact01==False: play sound "sounds/BipMenu.mp3" $opcTact01=True jum...
by neometalero
Sat Sep 19, 2020 10:50 am
Forum: Ren'Py Questions and Announcements
Topic: Resize an Image turns it invisible
Replies: 2
Views: 341

Re: Resize an Image turns it invisible

Alex wrote: Fri Sep 18, 2020 3:13 pm Try 'zoom', like

Code: Select all

show BPer:
    pos (1030, 100)
    zoom 0.5
https://www.renpy.org/doc/html/atl.html ... perty-zoom
That worked great, tks!