3.70 star(s) 22 Votes

pandabweer

Member
Modder
Oct 11, 2017
226
950
what's the sugarcube variable for werms and the colored variants?
I can give you general location but unless you know what you are doing you can't simply add werms since each werm has it's own variables so the games makes an array per object, numering them inside a dict.

JavaScript:
SugarCube.State.active.variables.people.pc.parasites
 

pandabweer

Member
Modder
Oct 11, 2017
226
950
no simple line of code to add blue or red werms?
Unfortunatly no, you need to use the debug menu from the author.
They are object based so there is no way to increment it i guess i can make a console command for it but you'd need to manually edit the command each time you execute it.
 

pandabweer

Member
Modder
Oct 11, 2017
226
950
Okay after some digging and learning i made this:
Should create 100 of werm, blue_werm and red_werm

JavaScript:
var dict = {"werm": [], "blue_werm": [], "red_werm": []};
var keys = ["werm", "blue_werm", "red_werm"];

for(var i = 0; i < 3; i += 1) {
    for(var c = 1; c < 101; c += 1) {
        dict[keys[i]].push({[c]: {
            "name": "Werm",
            "type": "werm",
            "merged": false,
            "removable": true,
            "stage": "mature",
            "infest": 1,
            "pheromone": 0,
            "offspring": 0,
            "family": "werm",
            "birth": false,
            "reproduction": {
                "rate": 1,
                "lvl": 0,
                "max": 10
            },
            "guid": "b800f4e8-cb10-376c-72a1-d1b9e3be213e",
            "space": {
                "id": "inv-mouth-1",
                "part": "mouth",
                "slot": "1"
            }
        }})
    }
}

SugarCube.State.active.variables.people.pc.parasites.mature = dict
I know you wanted to keep it "simple" buit this is the fastest way trough console.
Warning: this overrides anything else you got in your inventory
 

Yddip

New Member
Aug 11, 2021
1
0
So looking on the wiki for this game, only the white werms, blue/red starfish, blue/red choker, blue/white/red canal have a use at the moment? Is that info up to date?

Lore-wise I feel like purple werms in the neck-chokers should provide like, protection from mindfucking while letting the character be themselves still? It is marked as the 'consentual' variant on the wiki.

Would we be able to get a code that has a hundred of each of those variants?
 

bob80506

New Member
Jun 2, 2017
10
0
does anyone know hoe to fix the chocker image, it keeps getting in the road of being able to interact with the npcs
 

PregKing

Member
Aug 13, 2019
146
134
Parasite Infection r1.03

cheat code from pandabweer still works when entered into console command.

SugarCube.State.active.variables.i4ata = true


PC


Android


You don't have permission to view the spoiler content. Log in or register now.
 
Last edited:

DuneRocky

Newbie
Aug 27, 2017
18
25
Okay after some digging and learning i made this:
Should create 100 of werm, blue_werm and red_werm

JavaScript:
var dict = {"werm": [], "blue_werm": [], "red_werm": []};
var keys = ["werm", "blue_werm", "red_werm"];

for(var i = 0; i < 3; i += 1) {
    for(var c = 1; c < 101; c += 1) {
        dict[keys[i]].push({[c]: {
            "name": "Werm",
            "type": "werm",
            "merged": false,
            "removable": true,
            "stage": "mature",
            "infest": 1,
            "pheromone": 0,
            "offspring": 0,
            "family": "werm",
            "birth": false,
            "reproduction": {
                "rate": 1,
                "lvl": 0,
                "max": 10
            },
            "guid": "b800f4e8-cb10-376c-72a1-d1b9e3be213e",
            "space": {
                "id": "inv-mouth-1",
                "part": "mouth",
                "slot": "1"
            }
        }})
    }
}

SugarCube.State.active.variables.people.pc.parasites.mature = dict
I know you wanted to keep it "simple" buit this is the fastest way trough console.
Warning: this overrides anything else you got in your inventory
Hello pandabweer,
getting this messages after having used your commands to get the 100 red and blue werms and if I try to infest myself with the werm:
Error: cannot execute macro <<infest>>: can't access property "undefined", window.parasites[parasite.type] is undefined

Any idea how to solve this issue?
 

fudejoranek

Newbie
Oct 30, 2018
84
88
Hello pandabweer,
getting this messages after having used your commands to get the 100 red and blue werms and if I try to infest myself with the werm:
Error: cannot execute macro <<infest>>: can't access property "undefined", window.parasites[parasite.type] is undefined

Any idea how to solve this issue?
JavaScript:
for(item in parasites)for(i=0;i<100;i++)parasite_store(SugarCube.State.active.variables.people.pc, new_parasite(item))
Here's a version for r1.03 that gives all parasites
 
Last edited:
  • Love
Reactions: DuneRocky

CaptainBipto

Active Member
Sep 20, 2018
715
700
is it possible to continue passed becoming a werm and choosing a new host/ rechosing your original host?
As far as I am aware, that is where it ends at. If you restart a new game, you can select the option to skip ahead to Ch4 or Ch5.

I wouldn't recommend trying Ch4, it is rather broken right now. Ch5 seems to work pretty well though and it has some interesting mechanics, it is still incomplete though.
 
Jul 10, 2020
42
12
As far as I am aware, that is where it ends at. If you restart a new game, you can select the option to skip ahead to Ch4 or Ch5.

I wouldn't recommend trying Ch4, it is rather broken right now. Ch5 seems to work pretty well though and it has some interesting mechanics, it is still incomplete though.
Ah ok, i saw changelog and some comments discussion Ch4 and Ch5 and wasn't sure if i'd missed something. Guess i'll just wait for a new update. this one was a pleasant surprise so hopefully itll keep getting better.
 

cocomiel1

Active Member
Jun 18, 2018
766
702
weell. i kinda like the game but i dont understand s*it about it. is there a guide or something? mechanics are kinda confusing. for what im seeing a lot of pple having the same issue.
how can i create another kind of werm and wtf are the suits? i dont see anything different xd
 

CaptainBipto

Active Member
Sep 20, 2018
715
700
weell. i kinda like the game but i dont understand s*it about it. is there a guide or something? mechanics are kinda confusing. for what im seeing a lot of pple having the same issue.
how can i create another kind of werm and wtf are the suits? i dont see anything different xd
Adding spoilers to prevent walls of text assaulting your eyes. This isn't really a walk through, more of just general notes I have discovered, I hope this helps out some.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
 

cocomiel1

Active Member
Jun 18, 2018
766
702
Adding spoilers to prevent walls of text assaulting your eyes. This isn't really a walk through, more of just general notes I have discovered, I hope this helps out some.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.

You don't have permission to view the spoiler content. Log in or register now.
dude thx for answering that large! now i understand i didnt take the better options.
very grateful that you share that information
 
Oct 27, 2019
36
19
Can we add this to the link at the summary page?
"Open your Developer Tools on your Browser(F12 for chrome), and go on the Console Tab. Type:
SugarCube.State.variables.debug_mode = true "
 
3.70 star(s) 22 Votes