I make generators on Perchance.org and do a bunch of other cool things.

Links:

  • 37 Posts
  • 104 Comments
Joined 8 months ago
cake
Cake day: March 24th, 2024

help-circle








  • Are you planning on signing out every time you want to work on a version? And making a new version?

    No, I would instead create a whole separate browser profile, so I don’t have to log out every single time on my primary browser profile.

    What I do while working on a new version is, I work on a private/unlisted copy of the generator.

    Hmm… I could do that, however I’ve had a fear that the supposedly private generator would go out in the generators page immediately before I quickly set it to private, and that someone would be able to click the link through that page, so I thought creating a separate generator and saving it while not logging in would be a better option, since Perchance will un-list them right after, albeit still being publicly accessible. I know that this phenomenon is very unlikely to happen, but I’m just afraid that it would happen at all.








  • You can’t assign variables in the middle of a list, instead you would move this part to the output assignment so it would actually create the variable that could be evaluated by the ..., r = recipies.selectOne, r.name] instance:

    [f=createInstance(ingredients.flour.selectOne), createInstance(b=ingredients.flour.selectOne)]
    

    Like this:

    Why does this happen?

    Perchance recognizes and evaluates the f variable assignment block I’ve mentioned before as the child of the list pie which is a child of the list recipies, making it unusable when called it directly within the variable’s name. To fix this you’d need to execute that assignment before the recipies list is evaluated (as I’ve said before).