VioneT

joined 1 year ago
MODERATOR OF
[โ€“] VioneT 1 points 1 month ago

The link of your generator is the URL of your page: https://perchance.org/your-url-page

[โ€“] VioneT 3 points 1 month ago

Thanks ๐Ÿ™!

[โ€“] VioneT 2 points 1 month ago* (last edited 1 month ago)

I haven't really had a long conversation and multiple topics in one bot, so I don't have much experience in manipulating the bot's behavior.

I would suggest adding a reminder on the character's Reminder Message to steer the AI's response. Another would be using the /ai <reply instruction> method in which you instruct what the AI would reply. You could also probably try to edit the Memories and summaries that the AI generated that it uses in generating the reply and you could check the memory that pushes the AI to reply that way by clicking the brain icon that show up upon hover in the message on the bottom right.

There are a lot more people knowledgeable in telling the AI what to do in the #ai-character-chat channel in Perchance Discord.

[โ€“] VioneT 3 points 1 month ago* (last edited 1 month ago) (4 children)

Nebula and Forest

Image Details

generator: text2image-generator
style: No Style
prompt: nebula in clear night sky framed by forest leaves in a clearing, detailed, soft lighting, rtx, uhd, anime style, featured in pixiv, WLOP, ross tran, artgerm
negativePrompt: \[3d render, vibrant, child, low contrast, cel shade BREAK hard shadow, unclear features, incorrect anatomy, deformed body, bad drawing, poor illustration, worse quality, cellphone:0.1\] 
resolution: 768x512
guidanceScale: 7
seed: 187151457

[โ€“] VioneT 1 points 1 month ago (2 children)

@[email protected] - pinging dev for other info that I've probably missed.

[โ€“] VioneT 1 points 1 month ago (1 children)

Possibly missing ending quotations?

Before the "negative", you didn't close the quotation then you used a dot instead of a comma in transitioning to the negative

...
"Style Name":{
  "prompt": "...",
  "negative": "..."
},
...
[โ€“] VioneT 1 points 1 month ago

If you are trying to run the 'ai-character-chat' on glitch, you wouldn't be able to do so. Since AI plugins doesn't work in other domains, only in Perchance. I suggest looking into the OpenCharacters which is Perchance based off of.

[โ€“] VioneT 2 points 1 month ago (3 children)

I tested it, and it seemed to be working properly, possibly something on the AI's response inside the <image> tag that borked the code?

[โ€“] VioneT 2 points 1 month ago

AI Celebrations Quiz

https://perchance.org/ai-celebrations-quiz

An AI Powered Multiple Choice Question about Celebrations in the world.

[โ€“] VioneT 2 points 1 month ago* (last edited 1 month ago) (5 children)

Can you send me the character link again. I would assume that you do not have [input.description] on the prompt or [input.negative] on negative on the pasted style like so:

  ...
  "Professional Photo": {
    // When adding a new prompt, you need to add [input.description] to help the code know what would be the prefix and suffix of the prompt. [input.negative] is not as required.
    prompt:
      "[input.description], {sharp|soft} focus, depth of field, 8k photo, HDR, professional lighting, taken with Canon EOS R5, 75mm lens",
    negative:
      "[input.negative], worst quality, bad lighting, cropped, blurry, low-quality, deformed, text, poorly drawn, bad art, bad angle, boring, low-resolution, worst quality, bad composition, terrible lighting, bad anatomy",
  },
  ...

[โ€“] VioneT 2 points 1 month ago* (last edited 1 month ago) (1 children)

I think frequency of access, and maybe a habit of turning to the resources page to look for the plugins/templates.

I think that the resources page is an 'all-in-one' page for a lot of things related to Perchance that isn't on the 'tutorial'. I'll ping @[email protected] for other opinions.

While we're at it, maybe also create a 'notice/terms and conditions' regarding the use of AI on the platform. A lot of people are also asking for this, although I just redirect them to the AI FAQ that I compiled and directly on the plugin pages. Maybe an official one so it is compiled and in one place.

Also, maybe a very long shot, and may be breaking for the user/account data (or maybe just tie it to local storage). An option to customize the navbar through account settings? Like we only want the 'generators', and 'hub' to button to show on the navigation as well as hiding the 'ai helper' permanently on the HTML panel than just minimizing it.

[โ€“] VioneT 2 points 1 month ago (7 children)

Not sure, I don't really dabble on the NSFW content, so I won't know lmao.

 

Suppose we have the following list:

createInstance = {import:create-instance-plugin}

person
  name = [this.nameList]
  nameList
    Salman
    Manny
    Rhian
  age = {31-49}
  child = [this.child_obj]
  child_obj
    name = [this.nameList]
    nameList
      Anne
      Arram
      Amelia
    age = {3-17}

If we output:

[p = createInstance(person, "deep"), p.name] [p.age] [p.name] [p.age]

We can see that it has fixed the name and the age property on the instance. However, if we output:

[p = createInstance(person, "deep"), p.child.name] [p.child.age] [p.child.name] [p.child.age]

It would throw undefined. Now looking at similar list:

person
  name = {Salman|Manny|Rhian}
  age = {31-49}
  child = [this.child_obj]
  child_obj
    name = {Anne|Arram|Amelia}
    age = {3-17}

output
  [p = createInstance(person, "deep"), p.child.name] [p.child.age] [p.child.name] [p.child.age]

This would have the values fixed and working.

Looking at the code of the create-instance-plugin, it would only allow the 'deep' fixing of properties if there isn't any items/lists in it. What that means is the following:

child_obj
  name = [this.nameList]
  nameList
    Anne
    Arram
    Amelia
  age = {3-17}

This object/list, has a list ( nameList) within it as well as properties (name and age), while:

child_obj
  name = {Anne|Arram|Amelia}
  age = {3-17}

Only has properties. and based on Line 22 of the create-instance-plugin:

...
} else if(propValue.getPropertyKeys && propValue.getPropertyKeys.length > 0 && propValue.getLength === 0) {
...

If the list to be fixed has a list within it other than the properties i.e. propValue.getLength is not zero, then it wouldn't fix the properties within it.

The first child_obj has a nameList with it, and upon calling propValue.getLength it would have 1 while the second child_obj will return a propValue.getLength of 0 since it doesn't have any lists.

Thus, the solution for the problem is just removing the propValue.getLength === 0 check OR create another check without it.


TLDR; propValue.getLength === 0 at Line 22 of the create-instance-plugin can be removed to allow properties that rely on same level lists to be fixed. Here is the demo of the problem with a 'remixed' create instance plugin with the fix.

4
VTT Token Style Discussion (self.casual_perchance)
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

This post is about helping @[email protected] in creating a Perchance style for Virtual Tabletop tokens. (From this Perchance forum post)

Generator used is x2x's text2image-generator

Here are my prompts and images in my current testing:

Japanese Token

style: No Style
prompt: (3d model in top down view:1.1), (from above:1.3), from behind, plain background, person with a katana, edo style
n_prompt: soft shadows, hard shadows, reflections
res: 512x512
seed: random

Thief in white Clothing

style: No Style
prompt: (3d model in top down view:1.1), (from above:1.3), from behind, plain background BREAK a male thief with white clothes knife in hand, fantasy d&d style
n_prompt: soft shadows, hard shadows, reflections, disc
res: 512x512
seed: random


We can probably increase more emphasis on the from above or at the 3d model in top down view, but any higher than 1.5 is muddy.

Essentially adding:

(3d model in top down view:1.1), (from above:1.3), from behind, plain background

Before your actual prompt will make the image like it is from top down.

4
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/perchance
 

I've been made aware that the code I've written to access text-to-speech from ElevenLabs API is no longer working.

I've tested it and it seems that the CORS-Proxy that is being used in ai-character-chat currently doens't allow POST methods (which is being used to 'post' the text to be 'spoken' in ElevenLabs).

Not a major/priority issue but might be nice to be fixed. I also wonder how many are using text to speech (even just using the Speech Synthesis code) in the ai-character-chat....

7
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/perchance
 

Found out about this possible improvement to the URL Params Plugin in which you currently cannot pass through URL params in the null.perchance domain in an <iframe> i.e. it doesn't parse the passed through parameters.

I was able to pass through parameters in an iframe in the normal perchance domain, but without the null part, it has the navigation bar and seems to mess up the CSS. I'm currently applying it to 'navigate' from the 'Home' tab of the hub to the 'Events' tab, then select the appropriate events page using the URL params.

3
[Community Event] Beat the Heat (Ended) (user-uploads.perchance.org)
submitted 6 months ago* (last edited 5 months ago) by VioneT to c/casual_perchance
 

Beat the Heat

Get ready for Summer and 'Beat the Heat'! Summer Themed Generator Jam!

Create Summer Themed Pages! A beach volleyball game? Sure, A tropical drink generator? That sounds nice..., A beach name generator? You got it!

When: May 6, 2024 12:00PM UTC to May 27, 2024 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 = Beat the Heat
  description = Create generators/templates to combat the heat! Summer Themed Generator Jam!
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/fb98711889289ebbe3bcfb5d4f27603c.webp
    https://user-uploads.perchance.org/file/b61e74db6545e942ff7c8be7b5acffc9.webp
    https://user-uploads.perchance.org/file/b663dfe7ef90b2d159883605b0682fb9.webp
    https://user-uploads.perchance.org/file/c03db8a5c737dade999a97cddcf247a0.webp
    https://user-uploads.perchance.org/file/c3e7005097f3fdad94bb003c300e6865.webp
    // Can be multiple pictures to randomize the banner image :)
  start =6 May 2024 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 = 27 May 2024 12:00:00 UTC+0000
  color = linear-gradient(45deg, #e4f6b9 33%, #a0ecfb, #5e08f6 95%)
  rules = Create Generators that are with the theme 'Beat the Heat'.

// For Generator Jams with Perchance URL
generators
  // The generator's $metadata is also parsed
  a-trip-to-the-beach-vn
    author = Vionet20
    type = Game
  the-magic-oasis
    author = Allo
    type = Community
  watermelon-summer
    author = Eaba
    type = Game
  spa-e-island
    author = NecoBridge
    type = Game

// For Image Events
images		
	

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

spoiler


3
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

Mad Science

Create Generators that is not a Text Generator! Channel your Inner Mad Scientist with the Generator Jam: Mad Science! When: Feb 5, 2024 12:00PM UTC to Feb 19, 2024 12:00PM UTC

Submissions

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 = Mad Science
  description = Create Generators that is not a Text Generator! Channel your Inner Mad Scientist with the Generator Jam: Mad Science!
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/e4d28f04cfe9da2e9c60bf25980f2f80.webp
    https://user-uploads.perchance.org/file/2212805d1b9b5bb793a8d78b077c9a63.webp
    https://user-uploads.perchance.org/file/b54bcf91663ec20f51be9c157605e5cd.webp
    https://user-uploads.perchance.org/file/3598d6bb6ffb5a35f5591af82e60a1a9.webp
    https://user-uploads.perchance.org/file/ae00f635b8c133404cae71de7e77ff0f.webp
    // Can be multiple pictures to randomize the banner image :)
  start = 5 Feb 2024 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 = 19 Feb 2024 12:00:00 UTC+0000
  color = linear-gradient(45deg, hsl(171 58% 87% / 0.8), hsl(131 29% 52% / 0.3)), linear-gradient(135deg, hsl(171 57% 15% / 0.4), hsl(150 54% 49%/ 0.8))
  rules = Create Generators that are using Perchance Syntax but not for Text Generation!

// For Generator Jams with Perchance URL
generators 	
  random-chess-position-generator
    author = Vionet20
    type = Experiment
  loveandlight
    author = Allo
    type = Image
  buble-wrap
    author = Neco Bridge
    type = Experiment

    // The generator's $metadata is also parsed

// For Image Events
images		

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

3
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

New Beginnings

Create and Contribute to Generators about New Beginnings
When: Jan 8, 2024 12:00PM UTC to Jan 22, 2024 12:00PM UTC

Submissions

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 = New Beginnings
  description = Create Generators about New Beginnings! The first 'Contribute to a Generator'! This is an event where people will create generators that is based on the given theme and allow other people to contribute to their generator by suggesting items the generator might generate, additional features/controls, improvements/refactoring codes!
  type = Contribute to a Generator
  image
    https://user-uploads.perchance.org/file/0e5c1bd99f906ec6fc3c7bcb983ef28f.jpeg
    https://user-uploads.perchance.org/file/27691cf46fc8750b2eb0843dc2b7e7a1.jpeg
    https://user-uploads.perchance.org/file/1d8f93d42cb6860807cb881a5d138978.jpeg
    https://user-uploads.perchance.org/file/2c4efeed94bf5c3259392f5f5e3fbd16.jpeg
    // Can be multiple pictures to randomize the banner image :)
  start = 8 Jan 2024 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 = 22 Jan 2024 12:00:00 UTC+0000
  color = linear-gradient(45deg, #f7cd1730, #0eb23830), linear-gradient(135deg, #f7cd1730, #0eb23830);
  rules = Here is a link to a Published Google Docs that shows the rules/criteria (old) (https://docs.google.com/document/d/e/2PACX-1vQhcXza2WbbXiLDLr2dZYmkmlCO5nR09vKOJGiI9Lql2OaPy-e5gNVKmDlq9X32Ivs6Pa9HtxMavCJB/pub)

// For Generator Jams with Perchance URL
generators 	
  nationstates-flag-generator
    author = Shyshaeia 
    type = Image
  icebreaker-generator
    author = Vionet20
    type = Text
    // The generator's $metadata is also parsed

// For Image Events
images		
	

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

4
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

Food Delights

Create Scrumptious, Delicious, and Savory Generators with the theme Food Delights
When: Nov 6, 2023 12:00PM UTC to Nov 26, 2023 12:00PM UTC

Submissions

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 = Food Delights
  description = Create Scrumptious, Delicious, and Savory Generators with the theme Food Delights  
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/4e0334d1a51b3253f741f1f055b44589.jpeg
    https://user-uploads.perchance.org/file/e41571fb0aca23046d783ca429f1477a.jpeg
    https://user-uploads.perchance.org/file/e6688918465e44381a21d11e28a093de.jpeg
    https://user-uploads.perchance.org/file/1c392b6ebfd3a56f3415e32b9bfe122c.jpeg
    // Can be multiple pictures to randomize the banner image :)
  start = 6 Nov 2023 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 = 26 Nov 2023 12:00:00 UTC+0000
  color = linear-gradient(45deg, #35409b30, #ffffffa0, #d3237a80), linear-gradient(135deg, #35409b80, #d3237a30)
  rules = Here is a link to a Published Google Docs that shows the rules/criteria (old)(https://docs.google.com/document/d/e/2PACX-1vQhcXza2WbbXiLDLr2dZYmkmlCO5nR09vKOJGiI9Lql2OaPy-e5gNVKmDlq9X32Ivs6Pa9HtxMavCJB/pub)

// For Generator Jams with Perchance URL
generators 	
  yummiest-generator
    author = Abigblueworld 
    type = Text
  intergalactic-foods
    author = Vionet20
    type = Text
  recipe-website-story
    author = alliterator
    type = Text
    // The generator's $metadata is also parsed

// For Image Events
images		
	

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

3
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

Space Exploration

Explore the Space by Creating Generators about Space Exploration
The first Ever Perchance Generator Jam!
When: Aug 7, 2023 12:00PM UTC to Sept 7, 2023 12:00PM UTC

Submissions

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 = Space Exploration
  description = Explore the Space by Creating Generators about Space Exploration. The first Ever Perchance Generator Jam!  
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/aac7653d82e73d3f52667b5beb6c778c.webp
    // Can be multiple pictures to randomize the banner image :)
  start = 7 Aug 2023 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 = 7 Sept 2023 12:00:00 UTC+0000
  color = linear-gradient(118deg, #fd3399, #02647e, #dba5b4)
  rules = Here is a link to a Published Google Docs that shows the rules/criteria (old)(https://docs.google.com/document/d/e/2PACX-1vQhcXza2WbbXiLDLr2dZYmkmlCO5nR09vKOJGiI9Lql2OaPy-e5gNVKmDlq9X32Ivs6Pa9HtxMavCJB/pub)

// For Generator Jams with Perchance URL
generators 	
  terraforming-mission-reports
    author = Vionet20
    type = Text
  constellation-generator
    author = CrystalDragon
    type = Text
  stellar-odyssey-space-exploration
    author = CatGecko
    type = Text
  space-exploration-ryebread
    author = Ryebread
    type = Text
    // The generator's $metadata is also parsed

// For Image Events
images		
	

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

3
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

Halloween!

Create Spooky Creepy Halloween Themed Generators
When: Oct 1, 2023 12:00PM UTC to Oct 22, 2023 12:00PM UTC

Submissions

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!
  description = Create Spooky Creepy Halloween Themed Generators
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/3924a0649ee99486724604724bd75c6f.jpeg
    https://user-uploads.perchance.org/file/3091c98d74068828a585b4562f8a8d69.jpeg
    https://user-uploads.perchance.org/file/759f313f5c2a62d3da4234a92fbb79b6.jpeg
    https://user-uploads.perchance.org/file/d6ad5a57ea3cc54dc9e22e73e85a5884.jpeg
    https://user-uploads.perchance.org/file/69399e7406f328b21f926adc2ab62761.jpeg
    // Can be multiple pictures to randomize the banner image :)
  start = 1 Oct 2023 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 = 22 Oct 2023 12:00:00 UTC+0000
  color = linear-gradient(276deg, #00000080, #e47d2e70, #00000080), linear-gradient(150deg, #00000080, #e47d2eFF, #00000080)
  rules = Here is a link to a Published Google Docs that shows the rules/criteria (old) https://docs.google.com/document/d/e/2PACX-1vQhcXza2WbbXiLDLr2dZYmkmlCO5nR09vKOJGiI9Lql2OaPy-e5gNVKmDlq9X32Ivs6Pa9HtxMavCJB/pub

// For Generator Jams with Perchance URL
generators 	
  vdeo-game-monster-maker-
    author = ~Bebe~/~Bee~
    type = Image
  halloween-day
    author = Abigblueworld
    type = Text
  black-cats-pumpkin-patch
    author = Tabby
    type = Image
  adventure-z
    author = VioneT20
    type = Game
  book-of-sweet-shadows
    author = Kaden_Winters (aka Kokonoro)
    type = Text
  goosebumps-generator
    author = alliterator
    type = Text
  halloweenstories
    author = Epiphany
    type = Text
    // The generator's $metadata is also parsed

// For Image Events
images		
	

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

2
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

Button? Button?! Buttons!

Create Generators with many Buttons!
When: Apr 8, 2024 12:00PM UTC to Apr 22, 2024 12:00PM UTC

Submissions

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 = Button? Button?! Buttons!
  description = Create Generators with many Buttons!
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/599abb6eaf680b7c8d1cfa546834a2af.webp
    https://user-uploads.perchance.org/file/39c3a70b897bde28731f60b06fb54201.webp
    https://user-uploads.perchance.org/file/35fee35b16b5202809b07e3011b92f35.webp
    https://user-uploads.perchance.org/file/b00cfce5eb6db7440cfad04c4f2e777f.webp
    https://user-uploads.perchance.org/file/34a3025e1413dca3ad2f0a9085c1ea2b.webp
    // Can be multiple pictures to randomize the banner image :)
  start = 11 Mar 2024 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 = 31 Mar 2024 12:00:00 UTC+0000
  color = linear-gradient(45deg, hsl(328 100% 56% / 0.8), hsl(28 99% 59% / 0.5)), linear-gradient(135deg, hsl(28 100% 56% / 0.8), hsl(328 99% 59% / 0.3))
  rules = The only rule is to create a generator that has many buttons!

// For Generator Jams with Perchance URL
generators 	
  ki-create
    author = Allo
    type = Experiment
  what-blank-are-you-template
    author = VioneT
    type = Template
  too-many-buttons // perchance.org/generator-url only the `generator-url`
    author = Neco Bridge
    type = Text
    // The generator's $metadata is also parsed

// For Image Events
images		
		

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

3
submitted 6 months ago* (last edited 6 months ago) by VioneT to c/casual_perchance
 

Fun and Games

Create Generators that are Games!
Visual Novel, Point and Click, Text Adventures, Gacha, etc.
When: Apr 8, 2024 12:00PM UTC to Apr 22, 2024 12:00PM UTC

Submissions

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 = Fun and Games
  description = Create Generators that are Games!
  type = Generator Jam
  image
    https://user-uploads.perchance.org/file/0e44e7035286b216c7ef4fe0eb5960a3.webp
    https://user-uploads.perchance.org/file/2a44c062edefe594845012dafe1e24a0.webp
    https://user-uploads.perchance.org/file/ce99bd039e8995836c20d1585a8c3f36.webp
    https://user-uploads.perchance.org/file/19722709a566786da33fefde470bb418.webp
    https://user-uploads.perchance.org/file/51474877afd1d2983204974cba8e9551.webp
    // Can be multiple pictures to randomize the banner image :)
  start = 8 Apr 2024 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 = 22 Apr 2024 12:00:00 UTC+0000
  color = linear-gradient(158deg, #4733ff80, #2ef0f580, #ae45eb80, #e7881780)
  rules = The only rule is to create a game! Visual Novel, Point and Click, Text Adventures, Gacha, etc.

// For Generator Jams with Perchance URL
generators 	
  robot-battler-gamejam
    author = Blake Ernst
    type = Game
  mod-e-world-crystal
    author = Neco Bridge
    type = Game
  complete-the-number-blocktrains // perchance.org/generator-url only the `generator-url`
    author = BluePower
    type = Game
    // The generator's $metadata is also parsed

// For Image Events
images		
		

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

view more: โ€น prev next โ€บ