[-] VioneT@lemmy.world 3 points 9 months ago

You can have each of the suits into a single list, then control that parent list. E.g.

Uniform
  https://user.uploads.dev/file/53321b33603b8f9f386fb870db73ad65.png
  [Top] ^[camera.includes("top") && actor != "dryad"]
  [Mid] ^[camera.includes("mid") && actor != "angel"]
  [Low] ^[camera.includes("low") && !["mermaid", "minotaur"].includes(actor)]
  [Rear] ^[camera.includes("rear") && actor != "angel"]
  [TopMidLow] ^[["top", "mid", "low"].some(a => camera.includes(a))]


Top
  batman mask ^[specificCostume == "batman"]
  ...

Mid
  batman suit with batman logo on the chest, batman gloves, batman belt ^[specificCostume == "batman"]
  ...
[-] VioneT@lemmy.world 3 points 10 months ago

There should be no problem with linking the defaultCommentOptions on JavaScript, it would be on this part of your code on the HTML:

    ...
    let othersChatDiv = document.createElement('div');
    othersChatDiv.id = 'others-chat-container';
    othersChatDiv.style.display = 'none'; // Hide others chat by default
    
    let mainChatOptions = defaultCommentOptions.createClone;
    mainChatOptions.channel = "qine-main-chat";
    mainChatOptions.commentPlaceholderText = "Casual talk, memes, fun — all here!";
    mainChatOptions.onComment = function (comment) {
      // Handle new comments in Main Chat
      console.log("New comment in Main Chat:", comment);
    }
    let mainChatPlugin = commentsPlugin(mainChatOptions);
    ...

The problem is bannedUsersList is not in the generator, so it gives errors. Removing that from the defaultCommentOptions makes it work.

[-] VioneT@lemmy.world 3 points 10 months ago* (last edited 10 months ago)

Since it doesn't use the previous prompting, then it wouldn't work anymore. Anything in the prompt is taken into account in generating the image. I also don't think there is any Flux prompting shenanigans (or hidden/secret annotations) included in the new model that can hide hidden messages on the prompt (as far as I'm aware).

[-] VioneT@lemmy.world 4 points 10 months ago

Best way is to set up the image generation locally. You can use Automatic1111 since it was the basis of the API before, where (( tag )) emphasis syntax is based on.

[-] VioneT@lemmy.world 4 points 10 months ago* (last edited 10 months ago)

Okay, so since you used a 'Style', it would essentially add additional text/prompt to your input prompt to 'steer' the image to the selected style.

Here is how the prompt is set up using the 'Fantasy Portrait' style on the t2i-framework-plugin generators like ai-text-to-image-generator:

, d&d, fantasy, highly detailed, digital painting, artstation, sharp focus, fantasy art, character art, illustration, 8k, art by artgerm and greg rutkowski. It's an absolute world-class masterpiece artwork. It's an aesthetically pleasing artwork with impeccable attention to detail and impressive composition.

So, with the prompt adding 'greg rutkowski' (and artstation) it would add some kind of signature (or watermark) with it. You can view what the styles are adding on this styles import page.

[-] VioneT@lemmy.world 4 points 11 months ago

Thanks for the heads-up 💯

[-] VioneT@lemmy.world 4 points 11 months ago

If you have any questions regarding the AI, a lot of it has been answered here: https://rentry.org/perchance-ai-faq

You can also just ask the questions here if it is related on the platform itself, unless it is regarding on how the server is set up and such.

[-] VioneT@lemmy.world 4 points 11 months ago
[-] VioneT@lemmy.world 3 points 1 year ago

First of all, I'm not the Dev of the site, just a regular user/helper.

As for the NetworkError if the response is taking long enough, it might timeout which may cause the network error. Or a lot of users are using it, in which case the server is getting a lot of requests.

As for contributing, finding bugs/errors helps as well as sharing the pages/generators you've made. Also note that AI tools are sustained by advertisements (not sure about the AI Helper, how it is sustained since the AI Text Plugin and Text to Image adds an advertisement on the bottom of the page).

[-] VioneT@lemmy.world 3 points 1 year ago

Can you provide more info?
What device + browser are you using? Are you using incognito/private browsing? Does your browser has auto-delete cache/browser data?

[-] VioneT@lemmy.world 4 points 1 year ago* (last edited 1 year ago)

@perchance@lemmy.world pinging dev. The problem is in the line 3269 on setting the usageStats.

...
// line 3269
    if(result.exportUserData === "no") {
      json.data.data.find(d => d.tableName === "usageStats").rows = []; // Throws error here
    } else {
      let usageStats = json.data.data.find(d => d.tableName === "usageStats");
      if(usageStats) {
        usageStats.rows = usageStats.rows.filter(entry => keepThreadCheck(entry.threadId) && keepCharacterCheck(entry.characterId));
      }
    }
...

Seems like on the DB Schema (line 2813), usageStats is no longer used, so maybe just removing them in the export fixes them.

4
submitted 1 year ago* (last edited 1 year ago) by VioneT@lemmy.world to c/perchance@lemmy.world

Test your prompts in the different styles with ease! You can also import your own {import:styles} to test.

https://perchance.org/multiple-style-tester

1
submitted 2 years ago* (last edited 2 years ago) by VioneT@lemmy.world to c/perchance@lemmy.world

If you are importing a generator that imports a AI-Powered Plugin (i.e. ai-text-plugin or text-to-image-plugin or both).

Please note that it would add Advertisements in your generator, even if you aren't using the AI-Powered Plugin from the imported generator. This is due to the AI-Powered Plugins being sustained by advertisements.

1
submitted 2 years ago* (last edited 2 years ago) by VioneT@lemmy.world to c/perchance@lemmy.world

Just a suggestion for the links in the navbar to be a revamped on mobile since currently the navbar on mobile looks something like this:

In which we cannot access the 'community', 'tutorial', 'hub' or 'generators'. Maybe a dropdown upon clicking the 'perchance' button or a side menu popup. Thanks!

@perchance@lemmy.world

25
submitted 2 years ago* (last edited 2 years ago) by VioneT@lemmy.world to c/perchance@lemmy.world

Welcome to the Perchance Community!

Perchance.org is a platform for sharing and creating random text generators.

This Lemmy community is for:

  • Asking for help with problems, issues, or requests about generators in Perchance
  • Sharing and showcasing your created generators, templates, plugins, or pages in Perchance
  • Starting friendly discussions about topics related to Perchance
If it is your first time in using Lemmy, please check out this message from Lemmy.World and the Support Page from Lemmy.World to get started on using Lemmy.

Posting from Mastodon

Feel free to checkout this post to know how to post in this Lemmy Community through Mastodon.

Other Community Links

Rules

Here are some rules in this community:

  • Please follow the lemmy.world instance rules.
  • Be kind and friendly.
    • Please be kind to others on this community (and also in general), and remember that for many people Perchance is their first experience with coding. We have members for whom English is not their first language, so please be take that into account too :)
  • Be thankful to those who try to help you.
    • If you ask a question and someone has made an effort to help you out, please remember to be thankful! Even if they don't manage to help you solve your problem - remember that they're spending time out of their day to try to help a stranger :)
  • Only post about stuff related to perchance.
    • Please only post about perchance related stuff like generators on it, bugs, and the site.
  • Search through the Community Before Posting
    • Please Search through the Community Posts here (and on Reddit) before posting to see if what you will post has similar post/already been posted.

Posting

Here are some optional tags to add in your title to categorize the posts. These are merely tags, you still need to title your post effectively.

  • [Bug] - if you think you find any bug in Perchance, use this tag.
  • [Question] or [Help] - this is to denote that your post is a question or requesting for help
  • [Suggestion] - for any suggestions in Perchance
  • [Feedback] or [Appreciation] - for any feedback or appreciation to any generator or to Perchance in general.
  • [{Generator Category}] - Used to share any generator with the specified category
    • Text, Image, Template, Hub, Plugin, Preprocessor, Community/RP, Game, Experiment, Useful Generator
  • [Fluff] or [Non-Generator] - Non-generator posts but about Perchance
  • [Tutorial] or [Guide] - for any Perchance related tutorials or guides to help others

AI Plugins Posts

Here is a FAQ for the AI tools in Perchance.

We would like to ask to refrain from posting here needing help specifically with prompting/achieving certain results with the AI plugins (text-to-image-plugin and ai-text-plugin) e.g. "What is the good prompt for X?", "How to achieve X with Y generator?"

There are guides, tutorials, and resources on the internet that can be applied when prompting in the AI tools in Perchance.

We will still be helping/answering questions about the plugins as long as it is related to building generators with them.

If you need help in prompting, please post on the 'sister' forum at Casual Perchance

Getting Started with Perchance

To get started with Perchance, check out the Perchance Tutorial or the Beginner Tutorial at the Perchance Hub Learn Tab to get to know the website.

Asking for help

Feel free to ask for help but please check out these tips on searching for an answer:

  • Check the following pages, to see if your question has already been answered or talked about or a plugin has been made for it. We recommend using the browser's search function (ctrl+f) and searching for similar keywords to your question/problem.
  • If you didn't find anything about your problem there, feel free to search through the posts/articles here:
  • If you can't still find anything related to your problem, feel free to post a thread here.
    • Please title your post effectively.
    • Please provide a link to your generator with your attempts of solving the problem.
    • Try to explain what you want it to do and what example output it should be doing.
1
submitted 2 years ago* (last edited 2 years ago) by VioneT@lemmy.world to c/perchance@lemmy.world

Feel free to use the Lemmy Community @ perchance@lemmy.world like Reddit where you can ask for help, share your generators, and start friendly discussions at your leisure :)

view more: next ›

VioneT

0 post score
0 comment score
joined 2 years ago
MODERATOR OF