4.60 star(s) 45 Votes

Radnor

Member
Game Developer
Nov 9, 2021
365
943
any idea how long till you will be getting more quests and lore into the game?? personally i would love them sooner rather than later.
I make this game as hobby project, on free time, so can't promise any schedule.
I think i will focus on mc/bot personality system next. Might add some content along with it too. If all goes well might be near end of month, start of Feb.
 

Squib2187

Member
Aug 1, 2017
265
271
Had a play with the modding still tinkering with it but this is what I've got thus far
Code:
{
  "mod_id": "Diadek mod 1",
  "mod_description": "Adds new bots from the Diadek corporation specialists in the mid high tier market",
  "asset_packs":[
  ("bots DiadekQJ940","mod_bots DiadekQJ940"),
  ("bots DiadekGV270","mod_bots DiadekGV270"),
  ],
  "bot_models":[{
    "do_not_register": false,
    "model_id": "DiadekQJ940",
    "model_name": "Diadek QJ940",
    "model_description": "A pleasure model targeted at the upper middle class domestic market. Diadek succeeded in creating an affordable high end sex bot at the cost of reduced duribility.",
    "name_variants": "european_names",
    "gender": "female",
    "rate": "B",
    "price_mult": 1.5,
    "psychocore_stability_decay_mult": 1.0,
    "part_damage_mult": 1.0,
    "default_traits": [],
    "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target chances": {
    
    },
    "list_target_tag_chances":{
    "all": 50,
    "cheap": 10,
    "nice": 50,
    },
    "generate_bot_mind_table": "default",
  }],
  "bot_models":[{
  "do_not_register": false,
  "model_id": "DiadekGV270",
  "model_name": "Diadek GV270",
  "model_description": "Last generations GV series of sex bots from Diadek has a solid track reckord in domestic use applications",
  "name_variants": "european_names",
  "gender": "female",
  "rate": "B",
  "price_mult": 1.3,
  "psychocore_stability_decay_mult": 1.0,
  "part_damage_mult": 1.0,
  "default_traits": [],
  "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target_chances":{
    
    },
    "list_target_tag_chances": {
     "all": 50,
     "cheap": 10,
     "nice": 50,
    },
    "generate_bot_mind_table": "default",
  }],
}
simple mod adds 2 new bot models (still W.I.P while i figure out tag chances and price / damage multipliers), still fiddling with it and it would be nice to have a master list of parts that can be referenced when writing these things. (what they're called in game may not be how to call them in the code)

as for images I sourced some from pronstar subreddits no shortage or pics and videos there (although I have to change the mp4's to webms with hand break. and you will need to put them in a folder following this order

game/mods/assets/images/mod_bots/DiadekGV270

or

game/mods/assets/images/mod_bots/DiadekQJ940

as for the preview image that the game needs you can get it but using vlc up the top hit the video tab and click "take snapshot"

Now I'm gonna try figure out how to add more parts, cheers for the update you legend.
 
  • Like
Reactions: Radnor

Radnor

Member
Game Developer
Nov 9, 2021
365
943
Had a play with the modding still tinkering with it but this is what I've got thus far
Code:
{
  "mod_id": "Diadek mod 1",
  "mod_description": "Adds new bots from the Diadek corporation specialists in the mid high tier market",
  "asset_packs":[
  ("bots DiadekQJ940","mod_bots DiadekQJ940"),
  ("bots DiadekGV270","mod_bots DiadekGV270"),
  ],
  "bot_models":[{
    "do_not_register": false,
    "model_id": "DiadekQJ940",
    "model_name": "Diadek QJ940",
    "model_description": "A pleasure model targeted at the upper middle class domestic market. Diadek succeeded in creating an affordable high end sex bot at the cost of reduced duribility.",
    "name_variants": "european_names",
    "gender": "female",
    "rate": "B",
    "price_mult": 1.5,
    "psychocore_stability_decay_mult": 1.0,
    "part_damage_mult": 1.0,
    "default_traits": [],
    "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target chances": {
   
    },
    "list_target_tag_chances":{
    "all": 50,
    "cheap": 10,
    "nice": 50,
    },
    "generate_bot_mind_table": "default",
  }],
  "bot_models":[{
  "do_not_register": false,
  "model_id": "DiadekGV270",
  "model_name": "Diadek GV270",
  "model_description": "Last generations GV series of sex bots from Diadek has a solid track reckord in domestic use applications",
  "name_variants": "european_names",
  "gender": "female",
  "rate": "B",
  "price_mult": 1.3,
  "psychocore_stability_decay_mult": 1.0,
  "part_damage_mult": 1.0,
  "default_traits": [],
  "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target_chances":{
   
    },
    "list_target_tag_chances": {
     "all": 50,
     "cheap": 10,
     "nice": 50,
    },
    "generate_bot_mind_table": "default",
  }],
}
simple mod adds 2 new bot models (still W.I.P while i figure out tag chances and price / damage multipliers), still fiddling with it and it would be nice to have a master list of parts that can be referenced when writing these things. (what they're called in game may not be how to call them in the code)

as for images I sourced some from pronstar subreddits no shortage or pics and videos there (although I have to change the mp4's to webms with hand break. and you will need to put them in a folder following this order

game/mods/assets/images/mod_bots/DiadekGV270

or

game/mods/assets/images/mod_bots/DiadekQJ940

as for the preview image that the game needs you can get it but using vlc up the top hit the video tab and click "take snapshot"

Now I'm gonna try figure out how to add more parts, cheers for the update you legend.
You don't need
Code:
do_not_register=false
, if not present it will be false by default.
Should combine these bots into single bot_models list or first bot will be overridden by second one.
 

Squib2187

Member
Aug 1, 2017
265
271
You don't need
Code:
do_not_register=false
, if not present it will be false by default.
Should combine these bots into single bot_models list or first bot will be overridden by second one.
but do you mean like?
JSON:
{
  "mod_id": "Diadek mod 1",
  "mod_description": "Adds new bot Diadek QJ940",
  "asset_packs":[
  ("bots DiadekQJ940","mod_bots DiadekQJ940"),
  ("bots DiadekGV270","mod_bots DiadekGV270"),
  ],
  "bot_models":[{
    "model_id": "DiadekQJ940",
    "model_name": "Diadek QJ940",
    "model_description": "A pleasure model targeted at the upper middle class domestic market. Diadek succeeded in creating an affordable high end sex bot at the cost of reduced duribility.",
    "name_variants": "european_names",
    "gender": "female",
    "rate": "B",
    "price_mult": 1.5,
    "psychocore_stability_decay_mult": 1.0,
    "part_damage_mult": 1.0,
    "default_traits": [],
    "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target chances": {
    
    },
    "list_target_tag_chances":{
    "all": 50,
    "cheap": 10,
    "nice": 50,
    },
    "generate_bot_mind_table": "default",
  },[
    "model_id": "DiadekGV270",
    "model_name": "Diadek GV270",
    "model_description": "Last generations GV series of sex bots from Diadek has a solid track reckord in domestic use applications",
    "name_variants": "european_names",
    "gender": "female",
    "rate": "B",
    "price_mult": 1.3,
    "psychocore_stability_decay_mult": 1.0,
    "part_damage_mult": 1.0,
    "default_traits": [],
    "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target_chances":{
    
    },
    "list_target_tag_chances": {
     "all": 50,
     "cheap": 10,
     "nice": 50,
    },
    "generate_bot_mind_table": "default",
  }],
],
}
 

Radnor

Member
Game Developer
Nov 9, 2021
365
943
but do you mean like?
JSON:
{
  "mod_id": "Diadek mod 1",
  "mod_description": "Adds new bot Diadek QJ940",
  "asset_packs":[
  ("bots DiadekQJ940","mod_bots DiadekQJ940"),
  ("bots DiadekGV270","mod_bots DiadekGV270"),
  ],
  "bot_models":[{
    "model_id": "DiadekQJ940",
    "model_name": "Diadek QJ940",
    "model_description": "A pleasure model targeted at the upper middle class domestic market. Diadek succeeded in creating an affordable high end sex bot at the cost of reduced duribility.",
    "name_variants": "european_names",
    "gender": "female",
    "rate": "B",
    "price_mult": 1.5,
    "psychocore_stability_decay_mult": 1.0,
    "part_damage_mult": 1.0,
    "default_traits": [],
    "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target chances": {
   
    },
    "list_target_tag_chances":{
    "all": 50,
    "cheap": 10,
    "nice": 50,
    },
    "generate_bot_mind_table": "default",
  },[
    "model_id": "DiadekGV270",
    "model_name": "Diadek GV270",
    "model_description": "Last generations GV series of sex bots from Diadek has a solid track reckord in domestic use applications",
    "name_variants": "european_names",
    "gender": "female",
    "rate": "B",
    "price_mult": 1.3,
    "psychocore_stability_decay_mult": 1.0,
    "part_damage_mult": 1.0,
    "default_traits": [],
    "default_parts":{
    "skin": "ecoskin",
    "cpu": "neurotech4",
    "eyes": "irida",
    "vocoder": "invox",
    "powercore": "nova",
    "arms": "arms_plastan",
    "legs": "legs_plastan",
    },
    "list_target_chances":{
   
    },
    "list_target_tag_chances": {
     "all": 50,
     "cheap": 10,
     "nice": 50,
    },
    "generate_bot_mind_table": "default",
  }],
],
}
Code:
{
  "mod_id": "Diadek mod 1",
  "mod_description": "Adds new bot Diadek QJ940",

  "asset_packs": [
    ("bots DiadekQJ940","mod_bots DiadekQJ940"),
    ("bots DiadekGV270","mod_bots DiadekGV270"),
  ],

  "bot_models": [
    {
      "model_id": "DiadekQJ940",
      "model_name": "Diadek QJ940",
      "model_description": "A pleasure model targeted at the upper middle class domestic market. Diadek succeeded in creating an affordable high end sex bot at the cost of reduced duribility.",
      "name_variants": "european_names",
      "gender": "female",
      "rate": "B",
      "price_mult": 1.5,
      "psychocore_stability_decay_mult": 1.0,
      "part_damage_mult": 1.0,
      "default_traits": [],
      "default_parts":{
        "skin": "ecoskin",
        "cpu": "neurotech4",
        "eyes": "irida",
        "vocoder": "invox",
        "powercore": "nova",
        "arms": "arms_plastan",
        "legs": "legs_plastan",
      },
      "list_target chances": {
      },
      "list_target_tag_chances": {
        "all": 50,
        "cheap": 10,
        "nice": 50,
      },
      "generate_bot_mind_table": "default",
    },
    {
      "model_id": "DiadekGV270",
      "model_name": "Diadek GV270",
      "model_description": "Last generations GV series of sex bots from Diadek has a solid track reckord in domestic use applications",
      "name_variants": "european_names",
      "gender": "female",
      "rate": "B",
      "price_mult": 1.3,
      "psychocore_stability_decay_mult": 1.0,
      "part_damage_mult": 1.0,
      "default_traits": [],
      "default_parts": {
        "skin": "ecoskin",
        "cpu": "neurotech4",
        "eyes": "irida",
        "vocoder": "invox",
        "powercore": "nova",
        "arms": "arms_plastan",
        "legs": "legs_plastan",
      },
      "list_target_chances": {
      },
      "list_target_tag_chances": {
        "all": 50,
        "cheap": 10,
        "nice": 50,
      },
      "generate_bot_mind_table": "default",
    },
  ],
}
Something like i guess, seems to load, no errors, not tested if bots appear as you want them.
 

Squib2187

Member
Aug 1, 2017
265
271
Code:
{
  "mod_id": "Diadek mod 1",
  "mod_description": "Adds new bot Diadek QJ940",

  "asset_packs": [
    ("bots DiadekQJ940","mod_bots DiadekQJ940"),
    ("bots DiadekGV270","mod_bots DiadekGV270"),
  ],

  "bot_models": [
    {
      "model_id": "DiadekQJ940",
      "model_name": "Diadek QJ940",
      "model_description": "A pleasure model targeted at the upper middle class domestic market. Diadek succeeded in creating an affordable high end sex bot at the cost of reduced duribility.",
      "name_variants": "european_names",
      "gender": "female",
      "rate": "B",
      "price_mult": 1.5,
      "psychocore_stability_decay_mult": 1.0,
      "part_damage_mult": 1.0,
      "default_traits": [],
      "default_parts":{
        "skin": "ecoskin",
        "cpu": "neurotech4",
        "eyes": "irida",
        "vocoder": "invox",
        "powercore": "nova",
        "arms": "arms_plastan",
        "legs": "legs_plastan",
      },
      "list_target chances": {
      },
      "list_target_tag_chances": {
        "all": 50,
        "cheap": 10,
        "nice": 50,
      },
      "generate_bot_mind_table": "default",
    },
    {
      "model_id": "DiadekGV270",
      "model_name": "Diadek GV270",
      "model_description": "Last generations GV series of sex bots from Diadek has a solid track reckord in domestic use applications",
      "name_variants": "european_names",
      "gender": "female",
      "rate": "B",
      "price_mult": 1.3,
      "psychocore_stability_decay_mult": 1.0,
      "part_damage_mult": 1.0,
      "default_traits": [],
      "default_parts": {
        "skin": "ecoskin",
        "cpu": "neurotech4",
        "eyes": "irida",
        "vocoder": "invox",
        "powercore": "nova",
        "arms": "arms_plastan",
        "legs": "legs_plastan",
      },
      "list_target_chances": {
      },
      "list_target_tag_chances": {
        "all": 50,
        "cheap": 10,
        "nice": 50,
      },
      "generate_bot_mind_table": "default",
    },
  ],
}
Something like i guess, seems to load, no errors, not tested if bots appear as you want them.
I just tested the one I put up above and yeah it works fine, can confirm that both bot models appear, now i need to make some b tier parts to fit with the theme.

JSON:
{
  "mod_id": "Sendai Components",
  "mod_description": "Adds components from Sendai Components 3rd party bot part specialists",
 
  "bot_parts":[{
    "id": "EE4",
    "name": "Sendai Optics Eagle Eye 4",
    "description": "Featuring 32K resolution per eye and the ability to view light in the visible, ultra violet and infrared spectrum, Sendai Optics is proud to bring you the bleeding edge in robot optics",
    "rate": "S",
    "price_mult": 3.0,
    "slot": "bot_eyes",
    "damage_mult": 3.0,
    "possible_defects": [],
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computer", 10),
    ],
    "difficulty": 4.0,
    "list_target_chances":{100},
    "list_target_tag_chances":{
    ("all", 100),
    },
  }],
  }
Thats what i've got for now on a test run and its spitting out 'malformed string' error. I'll keep chasing it down.
 

Radnor

Member
Game Developer
Nov 9, 2021
365
943
I just tested the one I put up above and yeah it works fine, can confirm that both bot models appear, now i need to make some b tier parts to fit with the theme.

JSON:
{
  "mod_id": "Sendai Components",
  "mod_description": "Adds components from Sendai Components 3rd party bot part specialists",

  "bot_parts":[{
    "id": "EE4",
    "name": "Sendai Optics Eagle Eye 4",
    "description": "Featuring 32K resolution per eye and the ability to view light in the visible, ultra violet and infrared spectrum, Sendai Optics is proud to bring you the bleeding edge in robot optics",
    "rate": "S",
    "price_mult": 3.0,
    "slot": "bot_eyes",
    "damage_mult": 3.0,
    "possible_defects": [],
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computer", 10),
    ],
    "difficulty": 4.0,
    "list_target_chances":{100},
    "list_target_tag_chances":{
    ("all", 100),
    },
  }],
  }
Thats what i've got for now on a test run and its spitting out 'malformed string' error. I'll keep chasing it down.
Code:
    "list_target_chances":{}, ## you don't need 100 here, it's for specific events, "dump_site_scavenge": 20 and such
    "list_target_tag_chances":{
      "all": 100, ## this is dict, use key: value format
    },
 

DrLizardman

Member
Apr 28, 2021
366
115
im guessing this is due to the game still being worked on... but there does not seem to be a way to get by when the best option for money pays 50k and my expenses are 50k a month
 

Squib2187

Member
Aug 1, 2017
265
271
Code:
    "list_target_chances":{}, ## you don't need 100 here, it's for specific events, "dump_site_scavenge": 20 and such
    "list_target_tag_chances":{
      "all": 100, ## this is dict, use key: value format
    },
Heeeeeyyy that did it, subtract the 100 and its all good.
 
  • Like
Reactions: Radnor

Radnor

Member
Game Developer
Nov 9, 2021
365
943
im guessing this is due to the game still being worked on... but there does not seem to be a way to get by when the best option for money pays 50k and my expenses are 50k a month
You can earn more than 50k per week. At start focus on training skills and getting expertise, plus try to get AGp-Val bot soon, or unlock tech smart trait in another. Repairing defects in installed parts are probably best xp.
Also you can sell parts, CPU and Powercore are easy money.
Generally when testing i was able to make 70k+ per week on hard.

And yes, game is still being worked on, better options will be added.
 

DrLizardman

Member
Apr 28, 2021
366
115
You can earn more than 50k per week. At start focus on training skills and getting expertise, plus try to get AGp-Val bot soon, or unlock tech smart trait in another. Repairing defects in installed parts are probably best xp.
Also you can sell parts, CPU and Powercore are easy money.
Generally when testing i was able to make 70k+ per week on hard.

And yes, game is still being worked on, better options will be added.
thanks for the quick reply. and yeah I had just been training and selling to the club, but I guess some bots may be better sold for parts.. hopefully there will be a use for combat stats later as I specced into that when i made my character thinking I could fight the debt collectors or something
 
  • Like
Reactions: Radnor

Squib2187

Member
Aug 1, 2017
265
271
now that i've figured out bot parts i'll share,

this mod adds S, A and B rank eyes.

its unbalanced as I dont know the calls for eye defects to put them in for a chance of occuring

JSON:
{
  "mod_id": "Sendai Components",
  "mod_description": "Adds components from Sendai Components 3rd party bot part specialists",

  "bot_parts":[{
    "id": "EE4",
    "name": "Eagle Eye 4",
    "description": "Featuring 32K resolution per eye and the ability to view light in the visible, ultra violet and infrared spectrum, Sendai Optics is proud to bring you the bleeding edge in robot optics",
    "rate": "S",
    "price_mult": 3.0,
    "slot": "bot_eyes",
    "damage_mult": 3.0,
    "possible_defects": [],
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computers", 10),
    ],
    "difficulty": 4.0,
    "list_target_chances":{},
    "list_target_tag_chances":{
    "all": 5,
    },
  },
  {
    "id": "FE2",
    "name": "Falcon Eye 2",
    "description": "Featuring 32k resolution per eye in a mil spec frame the Falcon Eye 2 by Sendai is the choice for those who like to live dangerously",
    "rate" : "A",
    "price_mult": 2,
    "slot": "bot_eyes",
    "damage_mult": 0.5,
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computers", 10),
    ],
    "difficulty": 3,
    "list_target_chances":{},
    "list_target_tag_chances":{
    "all": 10,
    },
  },
  {
    "id": "HE7",
    "name": "Hawk Eye 7",
    "description": "Featuring 16k resolution per eye as well as night vision mode the Sendai Components Hawk Eye series is a great product for the enthusiast with a budget",
    "rate": "B",
    "price_mult": 1.8,
    "slot": "bot_eyes",
    "damage_mult": 1.6,
    "possible_defects": [],
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computers", 10),
    ],
    "difficulty": 2.0,
    "list_target_chances":{
    },
    "list_target_tag_chances":{
    "all": 20,
    },
  }]
  }
 
Last edited:

Radnor

Member
Game Developer
Nov 9, 2021
365
943
now that i've figured out bot parts i'll share,

this mod adds S, A and B rank eyes.

its unbalanced as I dont know the calls for eye defects to put them in for a chance of occuring

JSON:
{
  "mod_id": "Sendai Components",
  "mod_description": "Adds components from Sendai Components 3rd party bot part specialists",

  "bot_parts":[{
    "id": "EE4",
    "name": "Eagle Eye 4",
    "description": "Featuring 32K resolution per eye and the ability to view light in the visible, ultra violet and infrared spectrum, Sendai Optics is proud to bring you the bleeding edge in robot optics",
    "rate": "S",
    "price_mult": 3.0,
    "slot": "bot_eyes",
    "damage_mult": 3.0,
    "possible_defects": [],
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computer", 10),
    ],
    "difficulty": 4.0,
    "list_target_chances":{},
    "list_target_tag_chances":{
    "all": 5,
    },
  },
  {
    "id": "FE2",
    "name": "Falcon Eye 2",
    "description": "Featuring 32k resolution per eye in a mil spec frame the Falcon Eye 2 by Sendai is the choice for those who like to live dangerously",
    "rate" : "A",
    "price_mult": 2,
    "slot": "bot_eyes",
    "damage_mult": 0.5,
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computer", 10),
    ],
    "difficulty": 3,
    "list_target_chances":{},
    "list_target_tag_chances":{
    "all": 10,
    },
  },
  {
    "id": "HE7",
    "name": "Hawk Eye 7",
    "description": "Featuring 16k resolution per eye as well as night vision mode the Sendai Components Hawk Eye series is a great product for the enthusiast with a budget",
    "rate": "B",
    "price_mult": 1.8,
    "slot": "bot_eyes",
    "damage_mult": 1.6,
    "possible_defects": [],
    "repair_skills": [
    ("mechanics", 30),
    ("electronics", 60),
    ("computer", 10),
    ],
    "difficulty": 2.0,
    "list_target_chances":{
    },
    "list_target_tag_chances":{
    "all": 20,
    },
  }]
  }
Change "computer" to "computers", i had left typo in template comments, sorry about that.
 
  • Like
Reactions: Squib2187

Erik1986

Member
Jul 5, 2017
477
747
Tried this out yesterday, and i must say it's been fun to play. The quick save/quick load can be used to save scum for parts or bots on the dump and other places, but i wouldn't bother fixing that as the ability to quick save is a valuable option. Some things i noticed were a bit odd. Like how you spent 1ap just to leave your home, and then another 1ap for any actions after that like scavenging the dump or visiting the flee-market. While those last two ap costs are fine, i would probably drop the ap cost for just leaving the home so that people can if they want reconsider and return home to do something else without losing that 1ap point because of it.

The idea of having replaceable parts is a nice touch, and adds to the desire to find and repair said parts so you can upgrade your bots. Currently have two permanent bots (a JKB-12 and a AGp-Val) that help with repair, mood and sales/work. This is a nice touch to make it more then just another slave trainer game where the rate of going through slaves is high. Looking forward to seeing more story introduced, maybe some added adversity from your former employees trying to increase your debt at times.

I generally dislike the mechanics of increasing the debt repayment value on a weekly basis, mostly due to it often snowballing into unpayable proportions. But with how much you can earn if your lucky, or save scum, its easy for now to keep up. It also has a adverse effect in case you can pay it, which is that you are able to get out of the debt pretty fast with payment upwards of 25k to 50k, this means in the future probably some event are needed to increase the debt to keep thee game interesting.

Overall you have a solid and enjoyable game here, with some great potential. Good luck and i am definitly keeping a watch out for future updates.
 
  • Like
Reactions: Radnor

whynotagain07

Newbie
Mar 6, 2019
54
31
NGL. I don't like your renders they look very meh, not mentioning they are not animated, i hope they are in they early form and you will improve them as they are big turnoff for me now. Perhaps investing in some kind of illusion sex sim would be better but i really miss RP scenes- i understand that sourcing them is a pain but they where much more immersive for me.

i like the improvments from the changelog.
i hope that you will continue work on that project
 
  • Like
Reactions: Radnor

luffyboy

Newbie
Aug 25, 2016
25
29
yea the renders arent good for a number of reasons

Different poses and different clothings just gives it a very mismatch vibe.

Would prefer something a lot more standardize, something like czech casting photos when the models all take the same poses.

Something like this

it gives a more commercial feel as if how one would grade a bot chassis should be done
 
  • Like
Reactions: whynotagain07

exter

Active Member
May 29, 2017
778
841
I think I preferred the game with the tag of real porn...
Real porn pic and movies are much better than the static images from the 0.2.1 version.
For now, you can get the real porn stuff from the first version back by following this post:

Oh, and in case anyone miss tech demo girls, here is restoration mod made by some random internet degenerate.
For best results save when there is no bot scene images shown, unzip mod to /game/mods/ folder, launch game and check "game mods" screen to be sure it is loaded.
Otherwise, i guess real porn enthusiasts have to wait for modders or mod that themselfs.
 

Daedalron

Member
Oct 19, 2018
151
125
Trying to make a bot model mod, and I was wondering what the ranges are for the skills. From the other bots, I assume 75000 is for S rank 100%?
Any idea what the ranges are for the other ranks?

And I'm afraid I don't quite understand the "list_target_chances" and "list_target_tag_chances" values, and what they represent...

By the way, if I want multiple bots to share the same images, I can list them like this, right?

Code:
  "asset_packs": [
    ("bots model_id1","mod_bots model_id1"),
    ("bots model_id2","mod_bots model_id1"),
    ("bots model_id3","mod_bots model_id1"),
  ],
With a single directory of game\mods\assets\images\mod_bots\model_id1 ?
I'm trying to see if I can create a single model variants, with different skills / parts, but with the same images.
 
4.60 star(s) 45 Votes