Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I hate to bother you again but finished the game awesome so far can not wait for 1.50 now so hyped.
I like playing with the bot lab is there a store.batlab console command for parts like the shells and stuff you can give me? I tried to figure it out and failed legendarily lol...

(+1)

The botlab items cannot be simply added. They are instantiated with random stats and separate IDs from template items.

In theory you could do it with (example for Gen 3 legs) GAME.lab.parts.append(GAME.sbPartsData["SBPLegs3"].clone())

The template item codes you can find in one of the sexbot_lab rpy files.

One typo though and you might nuke all you Botlab Parts or corrupt your game so i recommend against it unless you really know what you are doing and have some python basic syntactical knowledge.

thanks will try it out on a testing save, really only want to use it for the shell items though to have my arcade with 1 bot in every shell version so I need to clone/cheat in the infiltrator's shell.  

(1 edit)

Wait, wait, wait!

So are you saying that the bot parts are actually different from each other? I was pretty sure that two, say "Legs - Gen 3, Military Grade" (at 100%), were identical, so one can swap them freely without any consequences?

I understand that some of the things in the parts storage - like the Addons - are unique. But the bot parts, too?

(1 edit)

You can swap them freely but they still may have specific properties (repair state, special bonuses, ...). At least I prepared them for that. Not sure whether I let the game actually roll those properties already... 

Ah, all right. Thanks for clearing that up.

If you dig for the parts list (I used SaveEditor Online) you can find the item codes to add things to the bot lab. If you use SEO, search for GAME > sbPartsData > and that will list the code to use for each part type.


For example, GAME.lab.parts.append(GAME.sbPartsData["SBPShell3TypeX"].clone()) will give you a basic Galaxina Shell. Nimhe still can't learn it, but you can then build your own Galaxina bot for shits and giggles.