VioneT

joined 2 years ago
MODERATOR OF
[–] [email protected] 1 points 4 days ago
There is no "Image to Image" or "AI Image Editor" working in Perchance.

Looking at the code, it is generated through the AI code helper in which there are these sections:

  // AI Remove Object
  removeBtn.addEventListener('click', async function() {
    showLoading('Removing objects with AI...');
    
    // Simulate AI processing
    setTimeout(() => {
      if (selectedArea.isActive && selectedArea.width !== 0 && selectedArea.height !== 0) {
        // For demo: fill selection with a gradient (simulating AI inpainting)
        const gradient = ctx.createLinearGradient(
          selectedArea.x, selectedArea.y, 
          selectedArea.x + selectedArea.width, selectedArea.y + selectedArea.height
        );
  ...
  // Simulate AI object extraction
    setTimeout(() => {
      const img = new Image();
      img.onload = function() {
        // Scale the image

Which is why it doesn't work.

[–] [email protected] 1 points 4 days ago

You can set the href through your code, not directly on the HTML e.g.:

// function generateMisquote()
  ...
  // Select quote from array if necessary
  const original = selectQuote(quoteEntry.original);
  const misquoted = selectQuote(quoteEntry.misquoted);
  const source = selectQuote(quoteEntry.source);
  const url = quoteEntry.url // get the url link
  ...
  // Update after a short delay for the fade-out effect
  setTimeout(function() {
    // Display the misquoted quote and source
    quoteTextEl.textContent = misquoted.text;
    quoteSourceEl.textContent = `— ${source.text}`;
    quoteSourceEl.href = url; // set the href based on the url link
  ...
[–] [email protected] 2 points 1 week ago* (last edited 1 week ago) (1 children)

What you can do is this:

// Lists Editor
movieTitlePrompt
  instruction = Make a title for a [g = genre.selectOne] movie with a length of [l = length.selectOne] and an age rating of [ar = ageRating.selectOne]. Only include the title, nothing else. No subtitle.

title
  [ai(movieTitlePrompt)]
//
***
// HTML
<p>Title: [title]</p>
<p>Genre: [g]</p>
<p>Length: [l]</p>
<p>Rating: [ar]</p>
[–] [email protected] 1 points 1 week ago

Having the generator 'private' only delists them from the /generators page. If someone else knows what the URL is (or has saved the URL before you've privated the generator), they can access it. The gallery is also quite buggy in which some images aren't saved, and some images just pop up of nowhere. Can't really tell what problem is occurring there.

[–] [email protected] 2 points 1 week ago* (last edited 1 week ago)

Well, the purpose of the showFeedback property is to 'show' the actual comments sent on the feedback comments section, not to 'hide' the button. On the fork that you mentioned, the feedback button is deliberately commented out, which is why it is hidden.

[–] [email protected] 2 points 1 week ago

Almost all AI Text on Perchance uses the same model. Some are calling other through external API. But based on both that you've linked, yes, they are using the same LLM. From what we know from the plugin page ai-text-plugin it is a LLaMa based model, but the specific model is unknown.

[–] [email protected] 2 points 1 week ago (2 children)

On the edit generator screen, you can click the 'settings' on the top right, and you can change the URL. Images are bound to the URL of the page, meaning if you change the URL, then those images are also gone, but you can revert the URL back to get back the images.

By private gallery do you mean the gallery below the generator (I'm assuming that you are using a generator using the t2i-framework-plugin-v2 based generator like ai-text-to-image-generator), then it isn't a private gallery, it is the public gallery. If you changed the gallery destination, into a different name (other than public), there might be a case in which other people are also using the same gallery e.g. even if you changed the gallery name into private it wouldn't be private, it would just be sent to the gallery named private.

You cannot perma delete images from the gallery by yourself, you need to block and have other people block that specific poster for their images to not display on the public gallery (see this related thread).

I would recommend using the actual 'private' gallery option that saves the data in your local storage. This is enabled with by adding the following on your settings (assuming you are using the t2i-framework):

settings // This is the main settings list that is passed to `t2i-framework-plugin-v2` to generate the interface.
  ...
  imageButtons
    personality = true
    privateSave = true // Make sure to have this line.

Then you can click the 🛡️💾 to save it locally on your browser.

[–] [email protected] 3 points 1 week ago (1 children)

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"]
  ...
[–] [email protected] 1 points 1 week ago (1 children)

If you are using HTML inputs, you can easily access their values like checkbox.checked for checkboxes and radio buttons, textinput.value for input values and select dropdowns, in which you can also set their default values for each one natively, unless the function that you've made is for 'resetting' to default values.

I would also go with the way that you have a single global object for all of your variables, just for organizing and ease of access.

[–] [email protected] 3 points 1 week ago* (last edited 1 week ago) (4 children)

You should select the actor first, to filter the clothes that it can wear. Then, select the camera to further filter the clothes that would be displayed that depends on the framing.

EDIT: Here is a test gen for it: https://perchance.org/ho5e2n0vwt

[–] [email protected] 2 points 1 week ago (3 children)

I think I see the idea you have. What is the scope of the variable you are trying to set it to? You currently have it as:

  for (const [key, value] of Object.entries(variablesMapping)) {
    if (this[key] === undefined || this[key] === null) {
      this[key] = value;
    }
  }

You are using this, which refers to the function. It should probably be set into what you have your initial variables, e.g. if you have your variables as properties in a variable called inputs, then it should be:

  for (const [key, value] of Object.entries(variablesMapping)) {
    if (inputs[key] === undefined || inputs[key] === null) {
      inputs[key] = value;
    }
  }

So that if you use it like inputs.charNum, it would be set to the default that you have set with the defining() method.

 

Brambleroot Academy

Link to Events in Perchance Hub

Sixth Character Jam. Create and share characters for the ai-character-chat that is within the given theme/scenario.

Scenario: A magical academy hidden within the depths of a mystical forest. Here, young witches and wizards hone their abilities under the tutelage of ancient beings.

Brambleroot Academy is a secluded haven for young witches and wizards, where sprawling roots and ancient magic entwine beneath the shelter of a colossal, enchanted tree deep within the forest.

When: 7 July 2025 12:00:00 GMT to 4 August 2025 12:00:00 GMT

Rules

  • Limit NSFW Characters
  • Preferably OC Characters

Submission Comment Format:

# Character Name - by Author
Description...
[Character Chat Link](https://perchance.org/ai-character-chat...)

You can also now directly submit on the comments plugin on the event page @ Perchance Hub.

Perchance Metadata

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = Brambleroot Academy
  description = Sixth Character Jam. Create and share characters for the `ai-character-chat` that is within the given theme/scenario. Scenario: A magical academy hidden within the depths of a mystical forest. Here, young witches and wizards hone their abilities under the tutelage of ancient beings.
  type = Character Jam
  image
    https://lemmy.world/pictrs/image/de34b9e0-a2fe-4e8e-9c18-6299e34d0616.png
    // Can be multiple pictures to randomize the banner image :)
  start = Mon, 07 Jul 2025 12:00:00 GMT
  end = Mon, 04 Aug 2025 12:00:00 GMT
  color = linear-gradient(102deg, hsl(65 52% 74%), hsl(108 81% 62%), hsl(140 73% 44%))	
  rules
    Limit NSFW Characters
    Preferably OC Characters
    
  commentOptions
    adminPasswordHash = cd3bce589c429d57ccea830700cd0141ce7b799a4682c3f5428f8d2b07d9ec9b
    // Other comments options here...

chars
  // Character Name
    // link = https://perchance.org/ai-character-chat?data=CharName%7E12345.gz // ai-character-chat share link
    // avatar = https://image-url.png/ // or any valid image format
    // author = Author
    // description = Description

Want to host your own Community Event? Check out this related post!

4
submitted 1 month ago* (last edited 1 week ago) by [email protected] to c/[email protected]
 

The Piracy of GSC-1020

Link to Events in Perchance Hub

Fifth Character Jam. Create and share characters for the ai-character-chat that is within the given theme/scenario. Under the Galilean Shipping Consortium, the GSC-1020 aka "Milky Way Mule", is an interstellar cargo ship for long and slow cargo, currently passing through the Gliese Strait.

Scenario: An interstellar cargo ship is intercepted by space pirates.

When: 11 June 2025 12:00:00 GMT to 02 July 2025 12:00:00 GMT

Rules

  • Limit NSFW Characters
  • Preferably OC Characters

Submission Comment Format:

# Character Name - by Author
Description...
[Character Chat Link](https://perchance.org/ai-character-chat...)

You can also now directly submit on the comments plugin on the event page @ Perchance Hub.

Perchance Metadata

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = The Piracy of GSC-1020
  description = Fifth Character Jam. Create and share characters for the `ai-character-chat` that is within the given theme/scenario. Scenario: An interstellar cargo ship is intercepted by space pirates. Under the Galilean Shipping Consortium, the GSC-1020 aka "Milky Way Mule", is an interstellar cargo ship for long and slow cargo, currently passing through the Gliese Strait.
  type = Character Jam
  image
    https://user.uploads.dev/file/d451b9337ef34c41ed38212cb7174884.webp
    // Can be multiple pictures to randomize the banner image :)
  start = Wed, 11 Jun 2025 12:00:00 GMT
  end = Wed, 02 Jul 2025 12:00:00 GMT
  color = linear-gradient(127deg, hsl(340 94% 30%), hsl(237 65% 18%), hsl(185 47% 15%))	
  rules
    Limit NSFW Characters
    Preferably OC Characters
    
  commentOptions
    adminPasswordHash = cd3bce589c429d57ccea830700cd0141ce7b799a4682c3f5428f8d2b07d9ec9b
    // Other comments options here...

chars
  Jiggle Da Butt
    link = https://perchance.org/ai-character-chat?data=Jiggle%7E5ae34975ed0a861b452e1a1f1d3f8b91.gz
    author = BELF13
    nsfw = true
    description = Cunning and intelligent; uses strategic thinking in negotiations and combat situations. Ruthless pragmatist who values profit over sentiment or honor. Uses charm and intimidation to manipulate others into doing his bidding. Has a unique sense of humor that often involves wordplay on his own name
  // Character Name
    // link = https://perchance.org/ai-character-chat?data=CharName%7E12345.gz // ai-character-chat share link
    // avatar = https://image-url.png/ // or any valid image format
    // author = Author
    // description = Description

Want to host your own Community Event? Check out this related post!

5
submitted 2 months ago* (last edited 4 weeks ago) by [email protected] to c/[email protected]
 

The World of Tynta

Link to Events in Perchance Hub

Fourth Character Jam. Create and share characters for the ai-character-chat that is within the given theme/scenario.

Scenario: A world where tattoos give people superpowers.

Please see the accompanying collaborative Lore Book. Feel free to collaborate with others with the Lore of the world!

Next Month's Scenario and Collaborative Lore Book.

When: 09 May 2025 12:00:00 GMT to 06 Jun 2025 12:00:00 GMT

Rules

  • Limit NSFW Characters
  • Preferably OC Characters
  • Please see the Linked Collaborative Lore Book for inspiration of characters.

Submission Comment Format:

# Character Name - by Author
Description...
[Character Chat Link](https://perchance.org/ai-character-chat...)

You can also now directly submit on the comments plugin on the event page @ Perchance Hub.

Perchance Metadata

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = The World of Tynta
  description = Fourth Character Jam. Create and share characters for the `ai-character-chat` that is within the given theme/scenario. Scenario: A world where tattoos give people superpowers. <p>Please see the <a href="https://perchance.org/may-charjam-collab-lorebook" target="_blank">Collaborative Lore Book</a> for inspiration of characters.</p>Next Month's <a href="https://perchance.org/june-charjam-collab-lorebook" target="_blank">Scenario and Collaborative Lore Book</a>.

  type = Character Jam
  image
    https://user-uploads.perchance.org/file/906cacc3e35d662810d32ca9403c5c9a.webp
    // Can be multiple pictures to randomize the banner image :)
  start = Fri, 09 May 2025 12:00:00 GMT
  end = Fri, 06 Jun 2025 12:00:00 GMT
  color = linear-gradient(324deg, hsl(209 80% 10%), hsl(257 24% 77%))	
  rules
    Limit NSFW Characters
    Preferably OC Characters
    
  commentOptions
    adminPasswordHash = cd3bce589c429d57ccea830700cd0141ce7b799a4682c3f5428f8d2b07d9ec9b
    // Other comments options here...

chars
  // Character Name
    // link = https://perchance.org/ai-character-chat?data=CharName%7E12345.gz // ai-character-chat share link
    // avatar = https://image-url.png/ // or any valid image format
    // author = Author
    // description = Description

Want to host your own Community Event? Check out this related post!

5
submitted 3 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]
 

The Xorijin Station

Link to Events in Perchance Hub

Third Character Jam. Create and share characters for the ai-character-chat that is within the given theme/scenario.

Scenario: A bustling intergalactic space station is the setting for an annual diplomatic summit. Various species from across the cosmos gather to discuss peace treaties and trade agreements.

Helpful Lore

Feel free to adapt these to your own character. These details aren't mandatory.

  1. The space station, known as "The Xorijin" is the crown jewel of the Galactic Coalition, a neutral space constructed by an ancient alliance of civilizations to facilitate interspecies diplomacy.
  2. The Xorijin is a marvel of ancient and modern technology, with a self-sustaining ecosystem and gravity fields that allow for a comfortable experience for all species.
  3. Each delegation has its own custom-tailored habitat sector, ensuring that all participants can interact without the need for cumbersome environmental suits.
  4. The summit is organized by the Council of Elders, a group of revered individuals from various species, chosen for their wisdom and diplomatic acumen.
  5. Security is tight, with a combination of automated defense systems and a multidimensional police force, the StarGuard, who are stationed throughout the station.
  6. The space station's layout is a complex web of interconnected domes and corridors, with each section designed to be easily navigable despite the vast array of species present.
  7. The diplomatic meetings are held in the Central Conclave, a grand hall with a universal translator ensuring clear communication between species with different languages and modes of communication.
  8. The station is also home to a bustling marketplace where exotic goods and rare artifacts are traded, fostering cultural exchange and economic prosperity.
  9. The summit includes various social events and ceremonies that help build camaraderie between the different species, such as the Galactic Gala and the Unity Games.
  10. The Xorijin is not without its secrets, with rumors of hidden agendas and political intrigue lurking behind the scenes of the peaceful facade.

When: Apr 7, 2025 12:00PM UTC to May 5, 2025 12:00PM UTC

Rules

  • Limit NSFW Characters
  • Preferably OC Characters

Submission Comment Format:

# Character Name - by Author
![](https://avatar.png/)
Description...
[Character Chat Link](https://perchance.org/ai-character-chat...)

Perchance Data

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = The Xorijin Station
  description = <p>Scenario: A bustling intergalactic space station is the setting for an annual diplomatic summit. Various species from across the cosmos gather to discuss peace treaties and trade agreements.</p><p>Here is a <a href="https://perchance.org/may-charjam-collab-lorebook">collaborative Lorebook</a> for the next character jam!</p>

  type = Character Jam
  image
    https://user-uploads.perchance.org/file/80d863459935e70c160d652fb68c93dc.jpg
    // Can be multiple pictures to randomize the banner image :)
  start = Mon, 07 Apr 2025 12:00:00 GMT // strict data formats see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse#non-standard_date_strings
  end = Mon, 05 May 2025 12:00:00 GMT
  color = linear-gradient(70deg, hsl(308 28% 24%), hsl(187 84% 42%), hsl(280 91% 32%))
  rules
    Limit NSFW Characters
    Preferably OC Characters

chars
  Spirit of the Stars
    link = https://perchance.org/ai-character-chat?data=Spirit_of_the_Stars%7E737ed75aae31addc3802ea84a5a46b32.gz
    author=Spiritwhisker
  Spirit of the Night
    link = https://perchance.org/ai-character-chat?data=Spirit_of_the_Night%7Ed447236b71b7adc1000c94edea3dbbc9.gz
    author=Spiritwhisker
  Spirit of the Elements
    link = https://perchance.org/ai-character-chat?data=Spirit_of_the_Elements%7E9f351e39594e144411f1048ff1854422.gz
    author=Spiritwhisker
  Spirit of the Sun
    link = https://perchance.org/ai-character-chat?data=Spirit_of_the_Sun%7Ee5c535d4d737368b63cb9ac2f0638931.gz
    author=Spiritwhisker
  Spirit of the Earth
    link = https://perchance.org/ai-character-chat?data=Spirit_of_the_Earth%7Ec9a8882b6abdaa446b56f22363d5d8ce.gz
    author=Spiritwhisker
  Spirit of the Air
    link = https://perchance.org/ai-character-chat?data=Spirit_of_the_Air%7E8c9c50a5ad6ed4a2a2f49b52d6c2db3b.gz
    author=Spiritwhisker
  Spirit of Life and Death
    link = https://perchance.org/ai-character-chat?data=Spirit_of_Life_and_Death%7Eb187de7921fd33e7da5155105a7822d6.gz
    author=Spiritwhisker
  Spirit of Good, Evil, and the Will to Live.
    link = https://perchance.org/ai-character-chat?data=Spirit_of_Good%2C_Evil%2C_and_the_Will_to_Live%7E5acf04016e4e66f5bddd9b5bcc4b613c.gz
    author=Spiritwhisker
  Aharet Daller
    link = https://perchance.org/ai-character-chat?data=Aharet_Daller%7Eb5f500917c62c33012ef05601003965d.gz
    author = Vionet20
  Dipl-0-Matic
    author = Allo
    link = https://perchance.org/ai-character-chat?data=Dipl-0-Matic%7E75c585f79d6f421590532cc18560a161.gz
  Nahash
    author = Nahash
    link = https://perchance.org/ai-character-chat?data=Nahash%7E8d1393a1dba8204f19c996e471ede6f7.gz
  // Character Name
    // link = https://perchance.org/ai-character-chat?data=CharName%7E12345.gz // ai-character-chat share link
    // avatar = https://image-url.png/ // or any valid image format
    // author = Author
    // description = Description

// You can request a format of other events just ask on the forum!

Want to host your own Community Event? Check out this related post!

 

Character Jam - Scenario Theme Poll

A poll for selecting the next 10 monthly Character Jam theme/scenario. Feel free to also comment suggestions, changes, or improvements to the following prompts.

Options

  • 1 = Scenario 1: A bustling intergalactic space station is the setting for an annual diplomatic summit. Various species from across the cosmos gather to discuss peace treaties and trade agreements.
  • 2 = Scenario 2: A magical academy hidden within the depths of a mystical forest. Here, young witches and wizards hone their abilities under the tutelage of ancient beings.
  • 3 = Scenario 3: A bustling metropolis with a hidden network of street performers, each with a unique talent.
  • 4 = Scenario 4: A high school reunion that uncovers long-buried secrets.
  • 5 = Scenario 5: A group of survivors on a damaged spaceship seeking a new home.
  • 6 = Scenario 6: A high-security mental institution with a mysterious new patient.
  • 7 = Scenario 7: A space colony where interspecies relationships challenge societal norms.
  • 8 = Scenario 8: An interstellar cargo ship is intercepted by space pirates.
  • 9 = Scenario 9: A post-apocalyptic world where humanity now lives in the subterranean.
  • 10 = Scenario 10: A world where tattoos give superpowers to people.

Rules

  1. You can only vote once (actually probably twice one in the post, and one on the comments-plugin).
  2. Any consequent votes would override the previous vote.
  3. You can vote for multiple options.

See the results of the poll on Perchance Hub - Events.

To vote, your comment must start with the following:

[Vote: 1, 2, ... ] 
The rest of your comment...
// The option number. 
// Multiple options are separated with comma.

When: March 31, 2025 12:00PM UTC to April 5, 2025 12:00PM UTC

Perchance Data

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = Character Jam - Scenario Theme Poll
  description = A poll for selecting the next 10 monthly Character Jam theme/scenario. Feel free to also comment suggestions, changes, or improvements to the following prompts. To vote, your comment <b>must start</b> with: <pre>\[Vote: 1, 2, ... \]\n// The option number.\n// Multiple options are separated with comma.</pre>
  type = Poll
  image
    https://lemmy.world/pictrs/image/a53868c0-72b5-42eb-9258-ddf4dc79623f.png
    // Can be multiple pictures to randomize the banner image :)
  start = 31 March 2025 12:00:00 UTC+0000 // strict data formats see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse#non-standard_date_strings
  end = 5 April 2025 12:00:00 UTC+0000
  color = linear-gradient(0deg, hsl(0 0 70%), hsl(0 0 70%))
  rules
    You can only vote once (actually probably twice one in the post, and one on the comments-plugin).
    Any consequent votes would override the previous vote. 
    You can vote for multiple options.

// For Generator Jams with Perchance URL
poll
  options
    1 = Scenario 1: A bustling intergalactic space station is the setting for an annual diplomatic summit. Various species from across the cosmos gather to discuss peace treaties and trade agreements.
    2 = Scenario 2: A magical academy hidden within the depths of a mystical forest. Here, young witches and wizards hone their abilities under the tutelage of ancient beings.
    3 = Scenario 3: A bustling metropolis with a hidden network of street performers, each with a unique talent. 
    4 = Scenario 4: A high school reunion that uncovers long-buried secrets.
    5 = Scenario 5: A group of survivors on a damaged spaceship seeking a new home.
    6 = Scenario 6: A high-security mental institution with a mysterious new patient.
    7 = Scenario 7: A space colony where interspecies relationships challenge societal norms.
    8 = Scenario 8: An interstellar cargo ship is intercepted by space pirates.
    9 = Scenario 9: A post-apocalyptic world where humanity now lives in the subterranean.
    10 = Scenario 10: A world where tattoos give superpowers to people.
  commentOptions
    channel = character-jam-poll-03-30-2025
    adminPasswordHash = 15c27423f8da3ec87ad04c5dc72046240f2c3d7fa20c8299a0ffb7a28b7ca37c
    // Other comments options here...

// You can request a format of other events just ask on the forum!

Want to host your own Community Event? Check out this related post!

4
submitted 6 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]
 

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

5
submitted 7 months ago* (last edited 6 months ago) by [email protected] to c/[email protected]
 

The Winter Market

Link to Events in Perchance Hub

Second Character Jam. Create and share characters for the ai-character-chat that is within the given theme/scenario.

A quaint town square, transformed into a bustling winter market under the tender embrace of twilight. The cobblestone streets, lined with stalls aglow with warm lights, stand as a stark yet inviting contrast to the frosty air, beckoning all who pass by to indulge in the festive spirit that resonates within.

When: Dec 6, 2024 12:00PM UTC to Dec 31, 2024 12:00PM UTC

Rules

  • Limit NSFW Characters
  • Preferably OC Characters

Submission Comment Format:

# Character Name - by Author
![](https://avatar.png/)
Description...
[Character Chat Link](https://perchance.org/ai-character-chat...)

Perchance Data

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = The Winter Market
  description = A quaint town square, transformed into a bustling winter market under the tender embrace of twilight. The cobblestone streets, lined with stalls aglow with warm lights, stand as a stark yet inviting contrast to the frosty air, beckoning all who pass by to indulge in the festive spirit that resonates within.<br><br><i>The Winter Market</i> beckons you to bring life and warmth into the winter market. Bring to life characters who'll warm the chilly nights with their stories and interactions.
  type = Character Jam
  // Can be "Generator Jam", "Image Challenge", "Character Jam", etc.
  image
    // Can be multiple pictures to randomize the banner image :)
    // Must end with the '.png', '.webp', or any valid image format.
    https://lemmy.world/pictrs/image/108b7a1d-d99a-4366-9a85-ff67019ac818.png
  
  // strict data formats see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse#non-standard_date_strings
  start = 06 December 2024 12:00:00 UTC+0000 
  end = 31 December 2024 12:00:00 UTC+0000
  color = repeating-linear-gradient(45deg, #ff0000a0 0px, #ffffffa0 20px, #ff0000a0 20px, #008000a0 40px, #ffffffa0 40px, #008000a0 60px) // background color of the banners any valid CSS colors
  rules
    // Just some rules or constraints for the event
    // can just be one rule or a list of rules
    Limit NSFW Characters
    Preferably OC Characters

// For AI Character Chat (ACC) Character Jams
chars
  // Character Name
    // link = https://perchance.org/ai-character-chat?data=CharName%7E12345.gz // ai-character-chat share link
    // avatar = https://image-url.png/ // or any valid image format
    // author = Author
    // description = Description
  Chibimancer Laura
    link = https://perchance.org/ai-character-chat?data=Chibimancer_Laura%7E3260f5989a4dba3bd45ec1a59d6ea014.gz
    avatar = https://lemmy.world/pictrs/image/21fac4c4-6878-49f3-a7a1-00a23cecccda.jpeg
    author = Allo
    description = Chibimancer Laura is looking for a player for her new roleplaying adventure called "Chibis and UwUs" ~and that player is you!
  Tane-tan Jung
    link = https://perchance.org/ai-character-chat?data=Tane-tan_Jung%7E36d004505ae8414a6c18b0f1c430423f.gz
    avatar = https://lemmy.world/pictrs/image/6ea040c6-6d0f-407d-83b6-616ee813aade.png
    author = Vionet20
    description = You bump into Tane-tan Jung in a bustling Winter Market. She's busy tending to her taiyaki stall, but when she notices you, she offers a warm smile and a gesture of apology. Despite her inability to speak, she uses her expressive eyes and hands to ask if you're okay. You're drawn to her warmth and the delicious scent of her freshly baked taiyaki.
  Atonnau Kilierg
    link = https://perchance.org/ai-character-chat?data=Atonnau_Kilierg%7E79eea561b431295c56cd41cc40a3b76e.gz
    avatar = https://user-uploads.perchance.org/file/e89e1541fdae183f0577aff7aca8411a.jpeg
    author = Hop919
    description = As you look up and down the isles of the quaint bookstore, the charming old copy of a childrens book catches your eye! When you grab it, the quiet voice of the shop owner, Atonnau, calls out, "Ah 'Rudolph the Red-Nosed Reindeer'! A delightful children's tale with a powerful message of acceptance and inner strength. It's a classic for a reason. Have you read any other holiday-themed classics? Perhaps I could recommend a few more that you might enjoy."
//
// You can request a format of other events just ask on the forum!
// In your Lemmy Post, you must have the `[Community Event]` in the title.
//

 

On the editors, you can search/highlight with RegEx (Regular Expressions) however, the matches cannot be iterated, and you cannot replace them. The old editor allowed this (as far as I remember), as well as using the captured groups as replacement ( /(\d+)\.(.+)?/gm can be replaced with $1 - $2 to change the matches 1.Test to 1 - Test).

5
submitted 9 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]
 

Halloween Haunters

Link to Events in Perchance Hub

First Ever Character Jam. Create and share characters for the ai-character-chat that is within the given theme.

Unleash your creativity in the 'Halloween Haunters', a Halloween themed Character Jam where you'll conjure up spooky AI chat bots brimming with eerie charm and festive frights! 🎃👻💻.

When: Oct 7, 2024 12:00PM UTC to Oct 31, 2024 12:00PM UTC

Rules

  • Limit NSFW Characters
  • Preferably OC Characters

Submission Comment Format:

# Character Name - by Author
![](https://avatar.png)
Description...
[Character Chat Link](https://perchance.org/ai-character-chat...)

Perchance Data

// This Part is Required for the Perchance Hub
// This would be where the Event Organizer would change the data to update the Hub
// Remember to indent with two spaces!

// List About the Event to be displayed on the Hub
metadata
  title = Halloween Haunters
  description = Unleash your creativity in the 'Halloween Haunters' Character Jam, where you'll conjure up spooky AI chat bots brimming with eerie charm and festive frights! 🎃👻💻
  type = Character Jam
  // Can be "Generator Jam", "Image Challenge", "Character Jam", etc.
  image
    // Can be multiple pictures to randomize the banner image :)
    // Must end with the '.png', '.webp', or any valid image format.
    https://lemmy.world/pictrs/image/f7018edc-0720-4ec6-9a8f-fbbaf3b235b4.png
  
  // strict data formats see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse#non-standard_date_strings
  start = 07 October 2024 12:00:00 UTC+0000 
  end = 31 October 2024 12:00:00 UTC+0000
  color = linear-gradient(233deg, #73016ca0, #000000, #e91456a0) // background color of the banners any valid CSS colors
  rules
    // Just some rules or constraints for the event
    // can just be one rule or a list of rules
    Limit NSFW Characters
    Preferably OC Characters

// For AI Character Chat (ACC) Character Jams
chars
  // Character Name
    // link = https://perchance.org/ai-character-chat?data=CharName~12345.gz // ai-character-chat share link
    // avatar = https://image-url.png // or any valid image format
    // author = Author
    // description = Description
  Sararari Catteyon
    link = https://perchance.org/ai-character-chat?data=Sararari_Catteyon~f70e8c65ca806f584f8a03d22281aae2.gz
    avatar = https://user-uploads.perchance.org/file/93a43e231e1bffc517511d8f5b3262a6.webp
    author = Vionet20
    description = You and your group of friends stumble upon Sararari's lair, where she presents you with a grim ultimatum: eat her demonic offerings or watch each other starve. She observes with a chilling calm as you grapple with the horror of your predicament.
  Nordledonger
    link = https://perchance.org/ai-character-chat?data=Nordledonger~4ffecd31d877d8cb6011afc06d29dd5d.gz
    avatar = https://generated-images.perchance.org/image/3f106fc005e2221bec7b3ed4e2aed0f4669a820fff2a422c41814cb14c66cd28.jpeg
    author = Allo
    description = THE CREEPIEST ZEBRA MADE OF CHEESE THAT REQUIRES YOU FART DIRECTLY IN TO YOUR OWN MOUTH. MUAHAHAHAHAHAHAHA

//
// You can request a format of other events just ask on the forum!
// In your Lemmy Post, you must have the `[Community Event]` in the title.
//

 

There is a feature that was recently added which is the 'Edit Password' upon saving a generator that isn't yours (you are remixing another person's generator). It is for recovering/saving an edited generator without logging in (or those users that are having trouble with saving generators since the email verification is having problems).

Steps:

  1. Click edit in the generator you want to edit.
  2. Upon saving, and opt to create a generator (since you can't save a generator to an account since you are not logged in), it would then give out a 'edit password'. Remember/Save this generated string as well as the newly created URL (not the original one).
  3. Later on (as long as the local storage is not cleared) you can navigate again to that newly created page (while still not logged in into an account) then enter the edit password after clicking save to return back/apply your changes to the generator.
A video demo of how it works.
 

cross-posted from: https://lemmy.world/post/19286382

There has been a couple of Community Events in Casual Perchance since its implementation via Lemmy World posts.

What kind of events would you like to see or be part of?

Some of the old events were:

  • Generator Jam - like a Game Jam but with generators based on a theme
    • Plain - create a generator that fits the specified theme
    • Useful Generators - generators that can be imported/useful for other generators (i.e. importable lists or plugins etc.)
    • Mad Science - not generators but anything made with Perchance Syntax.
  • Contribute to a Generator - didn't get much traction, like a Generator Jam, but you allow others to give feedback/suggestions throughout the event to the generator you have submitted. (Might change this to just a Feedback/Suggestion Jam, submit your generators for feedback and suggestions and don't require to create a new generator)
  • Image Challenge - Mostly AI Images generated with Perchance text-to-image-plugin based on a theme.

Also, feel free to give any feedback or suggestions about the Community Events. Some more specific feedback/suggestion categories are:

  • Length of Events
  • Type/Content of Events
  • Engagement or Retainability of Participants

Note that you can host your own Community Events, see this post for an explanation.

 

There has been a couple of Community Events in Casual Perchance since its implementation via Lemmy World posts.

What kind of events would you like to see or be part of?

Some of the old events were:

  • Generator Jam - like a Game Jam but with generators based on a theme
    • Plain - create a generator that fits the specified theme
    • Useful Generators - generators that can be imported/useful for other generators (i.e. importable lists or plugins etc.)
    • Mad Science - not generators but anything made with Perchance Syntax.
  • Contribute to a Generator - didn't get much traction, like a Generator Jam, but you allow others to give feedback/suggestions throughout the event to the generator you have submitted. (Might change this to just a Feedback/Suggestion Jam, submit your generators for feedback and suggestions and don't require to create a new generator)
  • Image Challenge - Mostly AI Images generated with Perchance text-to-image-plugin based on a theme.

Also, feel free to give any feedback or suggestions about the Community Events. Some more specific feedback/suggestion categories are:

  • Length of Events
  • Type/Content of Events
  • Engagement or Retainability of Participants

Note that you can host your own Community Events, see this post for an explanation.

view more: next ›