Need help pls...

Hopy_001

Newbie
Apr 2, 2020
42
7
So.. HI
I needed some help for that
How to put a website link in a game bootloader/ starting time?
 

Loqic

Royal Jelly
Donor
Oct 26, 2017
890
3,267
I dunno... ducttape?

I'm guessing you're talking about a start menu for a game you're making?
It would help if you'd share what engine you're working with.
 

polywog

Forum Fanatic
May 19, 2017
4,062
6,263
welcome.gif

you have to make at least 3 posts on the forum, before you can even think about posting links.
 

Saki_Sliz

Well-Known Member
May 3, 2018
1,403
1,005
So.. HI
I needed some help for that
How to put a website link in a game bootloader/ starting time?
are you asking how to be able to open up a web page in a video game.

for example, having the patreon icon that players can click on, and it will open up your patreon page. I know unity has some basic URL commands, such as to open up a web page, and that's about it.

if you are asking to make a web browser inside your game, that's way beyond me right now, I am actively unlearning during quarantine.
 

mickydoo

Fudged it again.
Game Developer
Jan 5, 2018
2,446
3,548
To link from renpy's start screen, go to screens.rpy line 390 and find

textbutton _("Quit") action Quit(confirm=not main_menu)

Under or above it type

textbutton _("Whatever") action OpenURL(" ")
 

Hopy_001

Newbie
Apr 2, 2020
42
7
I dunno... ducttape?

I'm guessing you're talking about a start menu for a game you're making?
It would help if you'd share what engine you're working with.
I'm not making a game... I just want to know how to put an image with a website link before an existing game loads.
 

Hopy_001

Newbie
Apr 2, 2020
42
7
are you asking how to be able to open up a web page in a video game.

for example, having the patreon icon that players can click on, and it will open up your patreon page. I know unity has some basic URL commands, such as to open up a web page, and that's about it.

if you are asking to make a web browser inside your game, that's way beyond me right now, I am actively unlearning during quarantine.
Not like that. But thanks for the idea☺
 

Hopy_001

Newbie
Apr 2, 2020
42
7
To link from renpy's start screen, go to screens.rpy line 390 and find

textbutton _("Quit") action Quit(confirm=not main_menu)

Under or above it type

textbutton _("Whatever") action OpenURL(" ")
Thanks
 

Saki_Sliz

Well-Known Member
May 3, 2018
1,403
1,005
You could probably use a wrapper to inject the code in you want to get the URL to work then, however, it depends on how the program was created and works, and not even computer science majors with 4 years know how to do this, so it is not easy.
 
  • Like
Reactions: Hopy_001