You can get a fast download link with no ads & no file size cap on milfygames.com

Home » SunSity [v3.75] [SunSity]

SunSity [v3.75] [SunSity]

User Rating: 3.2

Download for Windows/ Linux

  • swipe down to hide the ui
  • swipe left to roll back
  • swipe right to start skipping of text
  • swipe 2x left&right to open the game menu
  • swipe up&down to toggle a small window with memory usage information
  • longpress the save file thumbnail in the save/load screen to delete this slot

Download Multi Mod

Features:

Spoiler
Removes Grid
Removes limit on NPC Stats (stats can be set to > 8)
MC Stats can be set to max by one click

NPC Editor Unlocked
NPC Body and Clothes swap Enabled
Fantasy Body swap Enabled
Fantasy Clothes Enabled
NPC stats Editor Unlocked

Fantasy Stories Unlocked

Inventory Mod
Now inventory Mod works with old saves.

Change Time and Day

Installation Guide:

Spoiler
1. Extract and paste in “<gamename>” folder.
It’s the folder where the .exe file is.

2. If given the option to replace existing files, select yes.

Good
  • Large sandbox with genuine freedom — many interactions and locations for those who enjoy that style
  • Character models and visual quality are decent
  • Lots of characters and NPC variety
  • Survival/sandbox depth appreciated by a small minority of hardcore sandbox fans
  • Actively updated over multiple years — dev is still committed
Bad
  • Grind is universally condemned — worse than Korean MMOs, every review says the same thing across 3+ years with no improvement
  • Cheat/skip system is deliberately paywalled — dev intentionally makes the game unplayable to sell Patreon cheats, widely called predatory
  • Horrible performance/lag in Ren'Py with no optimization — every click has delay, UI is sluggish throughout
  • Crashes on rollback — a basic Ren'Py feature that deletes 30 minutes of progress
  • All characters share identical sex scenes/dialogue — zero differentiation between NPCs, all feel like copy-paste automatons
3.2
Bad
Story - 3.1
Visual - 6.1
Engagement - 2.2
Core Loop - 1.4

4 Comments

  1. That’s fine. She’s a whore anyway, like all women.

    Reply
  2. Forced is the only way incels can get any without paying for it like a simp, cucked to their own perverted cult.

    Reply
  3. How to mod to make SunSity less grindy or Remove the grind

    There is 2 methods. Both are required to remove the grind.

    **Method 1: This method is Used to change Player stats.
    To use the cheatcodes you need to unlock develper mode.
    Just search in Google “how to unlock Developer mode in renpy games”

    *One time use:
    open Console by pressing Shift+O then type the cheat codes one by one.If console is not opening then first unlock developer mode or console. Instructions are above.

    GG.dict_skill[‘Writing_pract’] = 10 #Practical writing skill
    GG.dict_skill[‘Writing’] = 10 #Writing skill
    GG.dict_skill[‘Programming_pract’] = 10 #Practical programming skill
    GG.dict_skill[‘Programming’] = 10 #Programming skill
    GG.dict_skill[‘Intelligence’] = 10 #intelligence
    GG.dict_skill[‘Talk’] = 10 #Talk

    *Repeated use:
    you have to use these codes repeatedly whenever nessasary

    GG.money = 999999 #Money
    GG.pep = 100 #Stamina
    GG.eff = 1.0 #Efficiency
    GG.immun = 100 #Immunity
    GG.joy = 100 #Joy
    GG.water = 100 #Water
    GG.food = 100 #Food

    **Method 2:This method is used to change NPC(Girls) stats. [Important] Before making any changes, read method 2 throughly once or twice and have a back up of the game or my_calls.rpy .
    In the folder where the Executable(Game app) is ,there is a folder named “game”, navigate(go) into it.There find the file called “my_calls.rpy”.open it with Notepad.
    Press F3 or go to edit -> find next.
    *Search for “if topic == ‘romantic’:”

    you will get the following result or something similar.

    if topic == ‘romantic’:
    # Любовь к ГГ увеличение
    $ npc.dict_skill[‘Love’] = npc.dict_skill[‘Love’] + 0.04
    talker ‘You had a nice romantic conversation.’
    play sound “sounds/level_UP.mp3”
    ‘{color=#5fe624}Love: + 0.04{/color}’

    now change the 0.04 to 3 in both the places. If you dont find 0.04 and find some other number , no problem just change whaterver number there is to 3.After change it should look like this->

    if topic == ‘romantic’:
    # Любовь к ГГ увеличение
    $ npc.dict_skill[‘Love’] = npc.dict_skill[‘Love’] + 3
    talker ‘You had a nice romantic conversation.’
    play sound “sounds/level_UP.mp3”
    ‘{color=#5fe624}Love: + 3{/color}’

    Next click F3 to go to the next code snippet(paragraph).

    [Important]There will be multiple Search Results for “if topic == ‘romantic’:”.
    So you will have to change the numbers in all the required code Snippets(paragraphs).You can go to the next code snippet by clicking F3.
    You dont have to make the change for all the code snippet just make changes in “+ 0.004” (0.004 is just an example it can be any number) if it exists.

    [Important] After clicking F3 to go to the next code snippet if you dont find the “+ 0.004” or something similar to the above mentioned code snippet,You will have to scroll a little bit and find it.if you dont find it after scrolling a bit then that means there is nothing to change here, just move on to the next code snippet by pressing F3. Dont forget to save your changes.

    In v3.35 you just have to make changes in 2 code snippets out of 3 code snippets which shows up in the search.

    Now you have removed the grind for Love Stat.

    Similarly we will do it for the other npc stats like given below.

    *save changes then,

    press F3 and search for “if topic == ‘friendship’:”

    Scroll a bit down then find the code snippet given below

    # Навык общения увеличение
    $ GG.dict_skill[‘Talk’] = GG.dict_skill[‘Talk’] + 0.01
    # Настроение ГГ увеличение
    $ GG.joy = GG.joy + 0.1
    # Отношение к ГГ улучшение
    $ npc.dict_skill[‘Friend/Anger’] = npc.dict_skill[‘Friend/Anger’] + 0.04
    # Исследованность нпс увеличивается
    $ npc.dict_skill[‘Exploration’] = npc.dict_skill[‘Exploration’] + 0.04

    Change 0.04 to 3 after change it should look like this.

    # Навык общения увеличение
    $ GG.dict_skill[‘Talk’] = GG.dict_skill[‘Talk’] + 0.01
    # Настроение ГГ увеличение
    $ GG.joy = GG.joy + 0.1
    # Отношение к ГГ улучшение
    $ npc.dict_skill[‘Friend/Anger’] = npc.dict_skill[‘Friend/Anger’] + 3
    # Исследованность нпс увеличивается
    $ npc.dict_skill[‘Exploration’] = npc.dict_skill[‘Exploration’] + 3

    press F3

    you will find the code snippet given below

    # Дружеский разговор
    if topic == ‘friendship’:
    # Навык общения увеличение
    $ GG.dict_skill[‘Talk’] = GG.dict_skill[‘Talk’] + 0.01
    # Настроение ГГ увеличение
    $ GG.joy = GG.joy + 0.1
    # Отношение к ГГ улучшение
    $ npc.dict_skill[‘Friend/Anger’] = npc.dict_skill[‘Friend/Anger’] + 0.04
    # Исследованность нпс увеличивается
    $ npc.dict_skill[‘Exploration’] = npc.dict_skill[‘Exploration’] + 0.04
    char_GG ‘- What is up.’
    char_npc ‘- OK.’
    talker ‘A little friendly conversation is always good.’
    play sound “sounds/level_UP.mp3”
    ‘{color=#5fe624}Friend/Anger: 0.04 {p=0}Exploration: + 0.04{/color}’

    change all the 0.04 to 3 it should look like this

    # Дружеский разговор
    if topic == ‘friendship’:
    # Навык общения увеличение
    $ GG.dict_skill[‘Talk’] = GG.dict_skill[‘Talk’] + 0.01
    # Настроение ГГ увеличение
    $ GG.joy = GG.joy + 0.1
    # Отношение к ГГ улучшение
    $ npc.dict_skill[‘Friend/Anger’] = npc.dict_skill[‘Friend/Anger’] + 3
    # Исследованность нпс увеличивается
    $ npc.dict_skill[‘Exploration’] = npc.dict_skill[‘Exploration’] + 3
    char_GG ‘- What is up.’
    char_npc ‘- OK.’
    talker ‘A little friendly conversation is always good.’
    play sound “sounds/level_UP.mp3”
    ‘{color=#5fe624}Friend/Anger: 3 {p=0}Exploration: + 3{/color}’

    Press F3 and continue the same process of scrolling a little bit and changing the values

    In v3.35 i had to change 4 out of 4 code snippets from the search.

    now you have removed the grind for “Friend/Anger” and “Exploration” stat.

    save and continue.

    * search for “npc.dict_skill[‘Depravity/Modesty’] = npc.dict_skill[‘Depravity/Modesty’]”

    you get the following code

    label end_touching_actions(npc):

    play sound “sounds/level_UP.mp3”
    $ npc.dict_skill[‘Submission’] = npc.dict_skill[‘Submission’] + 0.04
    $ npc.dict_skill[‘Depravity/Modesty’] = npc.dict_skill[‘Depravity/Modesty’] + 0.04
    talker ‘{color=#5fe624}Submission: +0.04 {p=0}Depravity: +0.04 {/color}’

    Change all 0.04(remember 0.04 is just an example it can be any number) to 5. you get the following

    label end_touching_actions(npc):

    play sound “sounds/level_UP.mp3”
    $ npc.dict_skill[‘Submission’] = npc.dict_skill[‘Submission’] + 5
    $ npc.dict_skill[‘Depravity/Modesty’] = npc.dict_skill[‘Depravity/Modesty’] + 5
    talker ‘{color=#5fe624}Submission: +5 {p=0}Depravity: +5 {/color}’

    click F3 and change the values. Dont forget to scroll up and down a little bit if you dont find the value.

    In v3.35 I changed 3 out of 3 Code snippets from search. In the last search result there is no submission value to change .

    now you have removed grind for ‘Submission’ and ‘Depravity/Modesty’.

    Reply
    • In talk option, talk about friendship and romantic topics to increase love ,friend, and exploration stat.

      Pat on the head to increase depravity and submission

      Reply

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

Lost Password

Please enter your username or email address. You will receive a link to create a new password via email.