Search found 23 matches

by facesit-inc
Fri Feb 11, 2022 12:44 pm
Forum: Works in Progress
Topic: Happy Conquistador - coming soon to Steam! [18+] [Comedy]
Replies: 1
Views: 571

Happy Conquistador - coming soon to Steam! [18+] [Comedy]

https://attachments.f95zone.to/2022/02/1670338_main_capsule.jpg The visual novel Happy Conquistador tells the story of Enrique, a Spanish conquistador who embarks on a mission vital for the Spanish Empire. Lead the ship through the ocean, fight for gold and lands, and bring glory to the Spanish Cro...
by facesit-inc
Fri Jun 25, 2021 2:33 pm
Forum: Completed Games
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 0
Views: 2763

M.A.I.D.s - available on Steam! [18+] [Comedy]

https://sun9-2.userapi.com/impg/93zMaa9XSepdRcB4Td2stwQY4fRBq6VdyGfpYQ/auk25yRAaCs.jpg?size=616x353&quality=96&sign=3941cf9a9401782c33d3b1484aab40e0&type=album Have you ever dreamed of your vacuum cleaner becoming your girlfriend? Of course you have. A brand-new visual novel, M.A.I.D.s ...
by facesit-inc
Fri Jun 25, 2021 12:34 pm
Forum: Works in Progress
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 10
Views: 4250

Re: M.A.I.D.s - available on Steam! [18+] [Comedy]

The game was released! https://sun9-2.userapi.com/impg/93zMaa9XSepdRcB4Td2stwQY4fRBq6VdyGfpYQ/auk25yRAaCs.jpg?size=616x353&quality=96&sign=3941cf9a9401782c33d3b1484aab40e0&type=album Buy on Steam: https://store.steampowered.com/app/1413600/ Buy on Itch.io: https://facesitinc.itch.io/maid...
by facesit-inc
Sat May 15, 2021 9:53 am
Forum: Ren'Py Questions and Announcements
Topic: Zoom-in button for image gallery
Replies: 4
Views: 1487

Re: Zoom-in button for image gallery

Came across this thread and found that there is an one step action you can do to show images with transform on screen: https://lemmasoft.renai.us/forums/viewtopic.php?t=45661 Function(renpy.show, "my_image", at_list=[my_transform]) Sorry for the late answer, did not see that you responded...
by facesit-inc
Fri May 14, 2021 2:19 pm
Forum: Works in Progress
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 10
Views: 4250

Re: M.A.I.D.s - Coming Soon on Steam! [18+] [Comedy]

M.A.I.D.s - Development Diary 5: Transitions, Animated Menu and Price Reveal The release date is close, and, finally, we are ready to reveal the price. The global version of M.A.I.D.s will cost 6.99 in the Steam store, and you should expect the corresponding prices in the digital distribution in gen...
by facesit-inc
Sat May 01, 2021 9:26 am
Forum: Ren'Py Questions and Announcements
Topic: Zoom-in button for image gallery
Replies: 4
Views: 1487

Re: Zoom-in button for image gallery

There are several ways to do it. If you want to use ATL transform to an image in a screen, do: add “image_name.png”: at TransformName You can give this a condition (if) so it can be shown and hidden by button actions. Another way is to show a different screen containing the zoomed in image, or you ...
by facesit-inc
Wed Apr 21, 2021 6:20 pm
Forum: Ren'Py Questions and Announcements
Topic: Zoom-in button for image gallery
Replies: 4
Views: 1487

Zoom-in button for image gallery

Hello, I'm having a hard time making a button, which would zoom-in the current gallery item. I tested that the button appears on the screen correctly: vbox xalign 0.98 yalign 0.1: imagebutton: idle "gui/zoom_idle.png" hover "gui/zoom_hover.png" action NullAction() but honestly I ...
by facesit-inc
Wed Apr 14, 2021 1:28 pm
Forum: Works in Progress
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 10
Views: 4250

Re: M.A.I.D.s - Coming Soon on Steam! [18+] [Comedy]

M.A.I.D.s – Development Diary 4: New Sidekicks and Gameplay Reveal The story of M.A.I.D.s covers two weeks from the life of a human-android family. Each passing day will bring new adventures and challenges. In the end, heroes would find their fates in hands of a mysterious and hostile power. Everyda...
by facesit-inc
Tue Apr 13, 2021 7:57 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED ]How to translate a save game date correctly?
Replies: 4
Views: 673

Re: How to translate a save game date correctly?

Thank your all kindly for your answers, but this Open the file screens.rpy ([yourproject]/game/tl/russian/screens.rpy) Find the line: old "{#file_time}%A, %B %d %Y, %H:%M" new "" and replace new "{#file_time}%A, %B %d %Y, %H:%M" actually worked. It seems that having tra...
by facesit-inc
Mon Apr 12, 2021 9:22 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED ]How to translate a save game date correctly?
Replies: 4
Views: 673

[SOLVED ]How to translate a save game date correctly?

Hello, I have a problem when translating strings that have a integrated parameter in them, for example: # renpy/common/00action_file.rpy:26 old "{#weekday}Monday" new "{#weekday}Понедельник" The translated version doesn't show up, and it concerns all instances of translation stri...
by facesit-inc
Mon Apr 05, 2021 10:15 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to implement a one-time notification?
Replies: 2
Views: 429

Re: How to implement a one-time notification?

Remix wrote: Sat Apr 03, 2021 9:24 am Just put the notification inside a conditional block based on the same criteria as the gallery unlock...

Code: Select all

    if not persistent.unlock condition:
        $ renpy.notify("unlocked")
    $ persistent.unlock code
Thank you, I'll try to do that.
by facesit-inc
Sat Apr 03, 2021 8:55 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] How to implement a one-time notification?
Replies: 2
Views: 429

[SOLVED] How to implement a one-time notification?

I have an unlockable gallery in my VN, and I would like to show players than they have unlocked a gallery item with a notification message. I attempted to use the renpy.notify in the script after the pesistent.unlock. However, the messages get displayed even when items are unlocked. Where I should p...
by facesit-inc
Wed Mar 17, 2021 12:05 pm
Forum: Works in Progress
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 10
Views: 4250

Re: M.A.I.D.s - Coming Soon on Steam! [18+] [Comedy]

Most of graphical assets for the game (M.A.I.D.s) are ready, and we are gradually initiating the process of polishing and testing. Our first build is now bug-free and can be played until the end. As a matter of fact, we will prepare the demo-version of the game, which will be published and available...
by facesit-inc
Wed Feb 17, 2021 2:47 pm
Forum: Works in Progress
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 10
Views: 4250

Re: M.A.I.D.s - Coming Soon on Steam! [18+] [Comedy]

Having recalculated our budget, we are pleased to announce additional content for our second game in development, M.A.I.D.s. Initially, we planned to start a Kickstarter campaign to fund three substantial things: 1) Significant gallery expansion; 2) Male sprites; 3) Own soundtrack. Realizing that it...
by facesit-inc
Mon Feb 01, 2021 3:27 pm
Forum: Works in Progress
Topic: M.A.I.D.s - available on Steam! [18+] [Comedy]
Replies: 10
Views: 4250

Re: M.A.I.D.s - Coming Soon on Steam! [18+] [Comedy]

M.A.I.D.s is rather a comedy than an erotic game. The gallery, nudity and sex scenes are merely additional features, which are making the game more “alive” and also provide additional interest to those who love this type of content. In turn, we prefer to emphasize the vast satire ranging from the ci...