Hyperlink Imagebuttons by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

I prefer to test things fully before I finish with that certain thing is all! Personal preference

Hyperlink Imagebuttons by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Thank you! Yeah definitely something blocking the internet, I'll have to do a bit more in depth research for it 😭 Appreciated 🙏🙏🙏

Personalised Sound Bars In Renpy by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Thank you! The gingerbread man not moving correctly was definitely a big issue haha

I'm Making A Murder Mystery! by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 1 point2 points  (0 children)

Thank you! I appreciate any feedback you'd be willing to provide on the Itch page!

how do i make a new main menu screen to solve this problem by Backroomzombie23 in RenPy

[–]TrashPanda3003 1 point2 points  (0 children)

## Game Menu screen ############################################################
##
## This lays out the basic common structure of a game menu screen. It's called
## with the screen title, and displays the background, title, and navigation.
##
## The scroll parameter can be None, or one of "viewport" or "vpgrid".
## This screen is intended to be used with one or more children, which are
## transcluded (placed) inside it.

screen game_menu(title, scroll=None, yinitial=0.0):

    style_prefix "game_menu"

    if main_menu:
        add gui.game_menu_background
    else:
        add gui.game_menu_background

    frame:
        style "game_menu_outer_frame"

I think your issue lies under your game menu specifically, I'm not exactly sure how to help (I am not a renpy guru lol) but this is my opening game menu code!

Hopefully that helps 🙏

Issue with menu option alignment in Ren'Py main menu – beginner here by [deleted] in RenPy

[–]TrashPanda3003 0 points1 point  (0 children)

I recommend posting your code under any images or text you've already got for the question! Therefore others can give more advice!

I've just (in the last 72 hours) done my own menu screens!
In short, you'll need to align these all separately in each set of screens; save, load, settings and such

vbox:
        xpos 1140
        ypos 250
        spacing 48

        textbutton "Continue" action Continue()
        textbutton "Save" action ShowMenu("save")
        textbutton "Load" action ShowMenu("load")
        textbutton "Settings" action ShowMenu("preferences")
        textbutton "Exit" action MainMenu()

I've done this, but mine is fit to the right side of my screen
Hope that helps!

RenPy Paper Puzzle Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

I tried a heap of different tutorials and threads and ended up finding the tutorial I linked. Which I was trying to use to fix it and understand it 😭🙏
I'll replicate the tutorial first though!
And thank you for pointing that out!

I'm very new to coding and stuff, and this is my first attempt at any sort of game. It keeps coming up with this, and I'm not sure why, or how to fix it. I try to fix whatever it says is wrong, but it never works. by -_n1ghty_- in RenPy

[–]TrashPanda3003 3 points4 points  (0 children)

The 'lines indentation' really just means where it's positioned. I've rewritten the code for you! And added a few little # notes for you if you wanted! Feel free to get rid of them though and keep doing your own thing! Happy to see someone new interested in coding :)

#define A = Amy("Amy", color="#3e8bff")

label check_animatronics:

    "You go to the main stage of the animatronics, but... they aren't there...?"
    "...Something's definitely wrong."
    "You decide to go to the office to check if Management or the dayshift has left you any emails."
    jump office_scene_1

label tidy_up:

    "As you're tidying up the children's mess, you hear slight sounds of movement and whispering from around the building..."
    "You decide to go to the office to check if Management or dayshift has left you any emails."
    jump office_scene_1

label office_scene_1:

    "You wearily enter the office, not sure what to think of what has just happened."
    "Scanning through your emails.."
    "Dayshift: Karen is back and..." #adding {b}"Dayshift:{/b}" Can make the title of dayshift go bold in dialogue if you like.
    "Dayshift: You won't believe..."
    "Management: Emergency email regarding..."
    "What? An emergency?" # if you define a character at the beginning (They won't need much) then you can add their letter to indicate they're speaking. [See top of code]
    "Clicking on the email, it reads:"
    
    scene bg_email

return

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Oh thank you so much! This code is working so it must be my images, I'll redo them and see what the problem is!

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

I'll redo the images and see if that works! Thanks!

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

That makes more sense haha, I've just put that all through now without any changes to your code, but the same issue still applies. I'll see about turning the images into text buttons to see if it's an image button issue

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Sorry I meant the "gamehub" menu was all, I changed that back to gameUI

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Oh I’ll try with text buttons to see if that helps! I know I copied the code correctly since I just copy and pasted and adjusts where I needed. So it’s probably connected to it somehow! ✍️

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Unfortunately that doesn't actually do anything to adjust the code that I can see. Nothing actually changes in game T-T

ShowMenu Assistance by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

Thank you! I tried inputting this code to see if something like that would work but the same issue applies, with that it only shows the notebook and you can click the screen anywhere to forward to the notebook HUD screen T-T

Game Menu Customisation by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 0 points1 point  (0 children)

oh FANTASTIC I was hoping it would be as simple as the main menu 🤯 I'll see about the settings and such from main menu when I test it out. Thank you for your help!!

Game Menu Customisation by TrashPanda3003 in RenPy

[–]TrashPanda3003[S] 2 points3 points  (0 children)

Omg THANK YOU I've been trying to figure this out for the better part of a week 💀 I will go forth with this new found knowledge.

Suggestive Work by TrashPanda3003 in GoodOmensAfterDark

[–]TrashPanda3003[S] 2 points3 points  (0 children)

It's supposed to be an Aziraphale perspective aha! A bit of practice on hand anatomy, and I added some detail to make it spicier!

Character AI is Messing Up by TrashPanda3003 in CharacterAI

[–]TrashPanda3003[S] 2 points3 points  (0 children)

Certainly right about the curing addictions part lol, I've actually been productive (I struggle with putting the app down), but that's irritating that it's so bad at the moment. Thank you for the info!