Search found 20 matches

by munni
Sat Apr 27, 2024 5:55 am
Forum: Ren'Py Questions and Announcements
Topic: Steam API functions other than achievements?
Replies: 4
Views: 156

Re: Steam API functions other than achievements?

It is hard to tell what exactly happens here, but is the steam support installed? Was the Steam integrated properly? Do achievements work? I just checked: indeed the Steam libraries are installed. I'm using Ren'py 7.6.0 and 8.1.3, which I'm working with currently. Both versions were used to ship ga...
by munni
Fri Apr 26, 2024 3:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Steam API functions other than achievements?
Replies: 4
Views: 156

Re: Steam API functions other than achievements?

So correct way to do that would be $ achievements.steamapi.SteamApps().InstallDLC("2261480") Does it work? I have no idea, never used SteamAPI in RenPy. Ok, I had a try with your example. Unfortunately, I get the same error: AttributeError: 'NoneType' object has no attribute 'InstallDLC' ...
by munni
Fri Apr 26, 2024 7:40 am
Forum: Ren'Py Questions and Announcements
Topic: Steam API functions other than achievements?
Replies: 4
Views: 156

Steam API functions other than achievements?

I have successfully shipped games through Steam, with achievements correctly working thanks to the Steam libraries in Ren'py. Now, I would like to use other functions that the Steam API can offer, such as GetSteamUILanguage and InstallDLC which seem to be part of the steamapi.py module. I have no id...
by munni
Sun Sep 10, 2023 5:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Importing news from a website in multiple languages
Replies: 4
Views: 615

Re: Importing news from a website in multiple languages

I tried again witht the above code but it keeps trying to download the "None" json while not downloading the persistent.language one. Now, if I try to replace this line: news = requests.get(NEWS_URLS[preferences.language], verify=ca_file).json() With this one: news = requests.get(NEWS_URLS...
by munni
Wed Feb 01, 2023 5:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Importing news from a website in multiple languages
Replies: 4
Views: 615

Re: Importing news from a website in multiple languages

Then you can use additional variable to check for the last language selected for news. default persistent.news_language = persistent.language or None Then make some adjustments in your news_thread function. Thanks for the detailed reply! Unfortunately, this doesn't seem to work: persistent.news_lan...
by munni
Tue Jan 31, 2023 8:37 am
Forum: Ren'Py Questions and Announcements
Topic: Importing news from a website in multiple languages
Replies: 4
Views: 615

Importing news from a website in multiple languages

I followed the tutorial Pytom wrote back in 2018 for making a "News from your website" system: https://patreon.renpy.org/news.html The news I set up work and Ren'py properly fetches news from my server and website. Now, since my game is available in multiple languages, I would like for Ren...
by munni
Fri Oct 07, 2022 12:24 pm
Forum: We are offering Paid Work
Topic: [CLOSED][PAID][18+]BG artist for sci-fi, BL/Yaoi game needed
Replies: 1
Views: 584

[CLOSED][PAID][18+]BG artist for sci-fi, BL/Yaoi game needed

Hi everyone! We are urgently looking for a sci-fi background artist for our Sci-fi BL/Yaoi visual novel. (and future projects too) Compensation 100-175 USD - depending on your skill level. Negotiable. Examples of what we are looking for: Example 1 , Example 2 , Example 3 , Example 4 , Example 5 , Ex...
by munni
Thu Jul 08, 2021 12:49 pm
Forum: We are offering Paid Work
Topic: [CLOSED][18+]Musician for our BL/Yaoi sci-fi visual novel
Replies: 0
Views: 1965

[CLOSED][18+]Musician for our BL/Yaoi sci-fi visual novel

Greetings! We are looking for a composer for an adult BL/Yaoi game with science fiction and space opera as its theme. In particular, we are seeking someone who can make experimental, otherworldly tunes with a hint of mystery. Inspirations we have in mind: - Saya not Uta OSTs (without the horror elem...
by munni
Sat Jul 03, 2021 4:11 pm
Forum: We are offering Paid Work
Topic: [CLOSED][18+]Commercial BL/Yaoi VN sprite and CG artist needed (sketches)
Replies: 0
Views: 1948

[CLOSED][18+]Commercial BL/Yaoi VN sprite and CG artist needed (sketches)

Greetings! We're looking for an artist who will provide (non-colored) sketches for: - 4 sprites, some with different outfits and 8 expressions - A game cover artwork - 15 CGs, most of which are NSFW and feature 2 characters We are looking for a candidate who: - Has experience drawing men in sexual s...
by munni
Tue Mar 30, 2021 3:43 pm
Forum: We are a Commercial Project looking for Partners
Topic: [CLOSED][PAID][18+]BG artist for spaceship interior needed
Replies: 1
Views: 987

[CLOSED][PAID][18+]BG artist for spaceship interior needed

EDIT : I found a BG artist! Thanks for all of those who replied to me :D Greetings! We're looking for an artist to do environment/background work for a short, 18+ sci-fi visual novel set on a small spaceship. Examples of what we're looking for: EXAMPLE 1 , EXAMPLE 2 List of backgrounds needed: 1. Sh...
by munni
Thu Feb 06, 2020 5:49 am
Forum: Ren'Py Cookbook
Topic: Encyclopaedia / Bestiary Framework
Replies: 118
Views: 57342

Re: Encyclopaedia / Bestiary Framework

Do you mean switching the screen used by one Encyclopaedia, or switching which Encyclopaedia you're using? Switching the entry screen used by one Encyclopaedia can be done by changing the Encyclopaedia's entry_screen attribute. Changing which encyclopaedia you're sending to the list screen depends ...
by munni
Tue Jan 28, 2020 8:19 am
Forum: Ren'Py Cookbook
Topic: Encyclopaedia / Bestiary Framework
Replies: 118
Views: 57342

Re: Encyclopaedia / Bestiary Framework

In order to make a 'new' encyclopaedia, I duplicated the screens in encyclopaedia.rpy into something like this: screen encyclopaedia_list_A(enc): ... screen encyclopaedia_entry_A(enc): ... screen encyclopaedia_list_B(enc): ... screen encyclopaedia_entry_B(enc): ... The screens look like this: codex2...
by munni
Mon Jan 27, 2020 12:44 pm
Forum: Ren'Py Cookbook
Topic: Encyclopaedia / Bestiary Framework
Replies: 118
Views: 57342

Re: Encyclopaedia / Bestiary Framework

Hi there! Would it be possible to switch from an encyclopaedia to another mid-game? When the character's POV switch, I'd like for the encyclopaedia to have a different layout + entries. $ protagonist = "character_A" a "I know a lot about {a=set_entry:enc_people->about_Dogs}{color=#DA7...
by munni
Sat Jun 29, 2019 5:37 am
Forum: Ren'Py Questions and Announcements
Topic: [kinda solved] im.matrixcolor + layeredimage
Replies: 1
Views: 927

Re: im.matrixcolor + layeredimage

Gotta reply to my own question I guess: layeredimage leos dark: always: im.MatrixColor("/images/sprites/leos/leos_n_base.png", im.matrix.tint(.44,.44,.75)*im.matrix.brightness(-0.07)*im.matrix.hue(10)) group face: attribute neu: im.MatrixColor("/images/sprites/leos/leos_n_face_neu.png...
by munni
Mon Jun 10, 2019 6:05 pm
Forum: Ren'Py Questions and Announcements
Topic: [kinda solved] im.matrixcolor + layeredimage
Replies: 1
Views: 927

[kinda solved] im.matrixcolor + layeredimage

I'd like to combine layeredimages with the matrixcolor feature to reshade character sprites (night, sunset, etc...) image ds neutral dark = im.MatrixColor("ds neutral", im.matrix.tint(.44,.44,.75)*im.matrix.brightness(-0.03)) This code returns the "Couldn't find file 'ds neutral'"...