VioneT

joined 2 years ago
MODERATOR OF
[–] VioneT 1 points 1 day ago
[–] VioneT 1 points 1 day ago (1 children)

The lore entries (and memories) are 'embedded' and are represented with an array of floats. The search queries are also embedded, and both search query and the entries are computed with a dot product to get the score. If the search query generated have the other character's name, it might score the lore entries from that character more likely.

[–] VioneT 1 points 2 days ago

Here's a guide from a fellow user from Reddit that might be useful.

Upon skimming the posts, I think the TLDR of that is to 'write' how you want the character to reply (in dialog form and inner thoughts/decision making etc) on their Role Description, then add the 'character descriptors' after those dialog/inner thoughts. Topmost info would have more weight than those at the bottom, based on their findings.

[–] VioneT 1 points 2 days ago (3 children)

Does this mean that it ignores Lore URLs in other characters’ Lore entry box (won’t load them), or appends those URLs as well into the main character’s Lore?

It ignores the Lore URLs in the invited characters.

However, my best understanding of how Lore is used is that when a user message is formed and sent to the AI LLM, the ACC will (always? occasionally?) select one (or more?) Lore entries at random to help flavor the AI response.

  1. The AI generates a query, three information searching sentences, that would be used for the Lore/Memories search.
  2. The query is then compared to the information in the list of Lore/Memories.
  3. Most-related lore/memories (those that exceeded the 'score' threshold) are used for generating the response.
  4. Best way to monitor it is by clicking the brain icon on the bottom right of the message bubble to see which lore/memories were used.
  5. Another way is to open Dev Tools before the prompting the AI and the query and scores and lores/memories used are logged in the console.

I think this means that if other characters’ Lore is mixed in to a single “pool” of Lore entries under the main character, then for a Tim character reply, the Lore sent over to the LLM could be random picks of from the pool that contains “Mike” lore and “Tim” lore, etc. In other words, flavoring the “Tim” reply with unrelated Lore facts about Mike.

Yes. The best way is to relate which character is which using proper nouns and seldom use pronouns when referring to someone. E.g. "He is his best friend" compared to "Tim is Mike's best friend".

[–] VioneT 1 points 2 days ago* (last edited 2 days ago)

One of the quirks in Perchance is that [listname] isn't a reference to the variable, meaning it doesn't return the whole list, it would only return a random item from that list.

Thus, on the line output.selectOne.selectUnique(1,2,3) here is what happens:

  1. output.selectOne would select an item from the output. For example, it would return [Object1] since the dropdown is set to 'Zero'.
  2. Doing .selectUnique(1,2,3) would randomize the number of selection, however since the returned item is [Object1] and not Object1 itself, it would not return unique values since you only have [Object1] as the item and not all Good, hood, Bood.

Best thing you could do is to create a variable and set that variable to the list to be used like so:

output
  [list = Object1] ^[Level == "Zero"]
  [list = Object2] ^[Level == "One"]
  [list = Object3] ^[Level == "Two"]

GroupSelectPrompt
  You find [pack] [output.evaluateItem, list.selectUnique(1,2,3).joinItems(" and ")]

We use output.evaluateItem to 'run' the function in the square bracket on the selected item, which would set the value of list to the actual list that we need. Then we use the list and use .selectUnique to it to get the unique items.

Another way is to use the random-select-plugin like so:

GroupSelectPrompt
  You find [pack] [select(Object1, Object2, Object3, null, Level == "Zero", Level == "One", Level == "Two").selectUnique(1,2,3).joinItems(" and ")]
[–] VioneT 1 points 4 days ago (2 children)

Each perchance page has its own local storage, which is by having a different domain. See this previous post. Then, each page is embedded on the main page, which is the top frame. By going to the Dev Console and setting the local storage there, it would be reflected on the top frame.

You can test by adding this to the HTML panel (bottom right panel after clicking 'edit') then clicking 'reload' on the bottom of the preview:

<script>
  localStorage.setItem("TEST", "a")
</script>

On one page and another, and it would be reflected to their respective domains on the local storage, instead of the top domain perchance.

I guess the purpose of saving the data is for ease of access and convenience for sharing instead of downloading the data - clicking import - selecting import file - confirm. Maybe the solution is to just add a 'download' button instead of creating a share link so the data is downloaded locally, but again, the steps of download - import - select file - confirm might be inconvenient for others.

As long as you don't share the link or the file id. No one should be able to access the data from it.

@perchance - I'll ping the dev again just in case.

[–] VioneT 1 points 4 days ago (1 children)

Is it using the t2i-framework-plugin-v2? sadly, you can't group the options there. You could probably create a dummy value to separate each options.

[–] VioneT 1 points 4 days ago

Hi, I think i've answered a similar question in the https://perchance.org/hub#learn, but I'll reiterate here a way of creating an importable stylesheet perchance generator: perchance.org/importable-stylesheet-template

[–] VioneT 1 points 5 days ago

If you are trying to embed a Perchance generator that is powered by AI, it isn't possible since there is no location for the Advertisement to be placed that is for sustaining AI models. Which is why it is only set to same origin i.e. only on the Perchance domain.

[–] VioneT 1 points 5 days ago (5 children)

Local storage is origin specific, meaning the local storage in /ai-text-to-image-generator is different from /ai-character-chat and there isn't a way to pass data from one local storage to another. There are ways to pass data, but it involves using iframes and post messages.

[–] VioneT 1 points 6 days ago* (last edited 6 days ago)

Its working fine on my end. Can you show what is the error on the bottom right? Did you clear your browser data/cache recently? If you open the Developer Tools (F12 or Ctrl+Shift+J), then navigate to the 'Storage' or 'Application' then 'IndexedDB' do you see content on the 'chatbot-ui-v1'?

Please also check this somewhat related thread: https://lemmy.world/post/22528003

[–] VioneT 1 points 6 days ago (7 children)

@[email protected] - I'll ping the dev for other insights. But here's what I think.

In the scenario I describe, the results of the prompt, additional input from the user (assuming they edit the character), and the image are all saved to the server and done so in a public and indefinite manner.

When creating a share link, the data of the character that you want to chat with is saved to the server, so that when going to another generator, that generator can retrieve the same data it needs to be. But only the required data (that is a JSON object compressed in gz) is the thing that is saved on the server. You can check the file that is generated through this URL: https://user-uploads.perchance.org/file/<FileID> and on the character link like https://perchance.org/ai-character-chat?data=King_Spectrara~b28c24b93bf726eb1f850e12ee3f5d99.gz the file id is b28c24b93bf726eb1f850e12ee3f5d99.gz.

One, the user’s privacy is not protected, if for example, their browser history is compromised–whoever sees their browser history also sees all their characters and the data therein (yes I know they shouldn’t have put personal information in them).

Yes, if you navigate to the share link that is created, then that link is stored in the browser's history and if anyone can get your browser history, can access the link. If you really want to be sure that your history isn't accessed through the internet this option https://lemmy.world/comment/14698327 might be used. If you've added any sensitive/personal info on the character, then I think that would be on you. As long as no-one else knows the link or the fileID of the uploaded item, it wouldn't be possible to retrieve the data saved on the server.

Two, there isn’t any peer review process for the characters that are created. So an individual could create questionable characters/images and host a page linking to the perchance URLs of these characters.

Yes, the uploading of the details to the server is automated and almost anyone can create share links to characters.

4
submitted 1 month ago* (last edited 1 month ago) by VioneT to c/perchance
 

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 2 months ago* (last edited 1 month ago) by VioneT to c/casual_perchance
 

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~12345.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~3260f5989a4dba3bd45ec1a59d6ea014.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~36d004505ae8414a6c18b0f1c430423f.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~79eea561b431295c56cd41cc40a3b76e.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.
//

2
submitted 4 months ago by VioneT to c/perchance
 

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 4 months ago* (last edited 3 months ago) by VioneT to c/casual_perchance
 

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.
//

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

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.

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

Unexplored Wilderness

Create generators that invoke the wilderness (nature, danger), curiosity (discovery, documentation), and adventure (heading into the unknown, trailblazing), be it fictional or non-fiction.

Make generators with the lines of an odyssey to unexplored regions, mapping the vast reaches of the galaxy, or looking deep within oneself.

When: August 7, 2024 12:00PM UTC to August 28, 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 = Unexplored Wilderness
  description = Create generators that invoke the wilderness (nature, danger), curiosity (discovery, documentation), and adventure (heading into the unknown, trailblazing), be it fictional or non-fiction.
  type = Generator Jam
  image
    https://lemmy.world/pictrs/image/f3889aca-b153-49a9-a9b0-2079eba7dce3.png
    // Can be multiple pictures to randomize the banner image :)
  start = 07 August 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 = 28 August 2024 12:00:00 UTC+0000
  color = linear-gradient(77deg, #386945, #30aa34)
  rules = Make generators with the lines of an odyssey to unexplored regions, mapping the vast reaches of the galaxy, or looking deep within oneself.

// For Generator Jams with Perchance URL
generators
  // The generator's $metadata is also parsed
  immerse-in-senses
    author = Vionet20
    type = Text
// For Image Events
images		

// You can request a format of other events just ask on the forum!
// Banner Info:
// Generator Used: text2image-generator
// Prompt: a behind the character shot of a small group on high elevation overlooking an unexplored forest region, exploration, adventure, high fantasy, concept art
// Negative Prompt: \[mountains, mountain ranges, high mountains, columns of rocks:0.05\]
// Resolution: 768x512
// Art Style: [Vionet20-Styles] Comic/Manga Illustration

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

Update 4: Fixed
Update 3: It seems that changing the 'src' of the iframe of the embedded seems to apply the changes. Clicking on the 'Go to Event' buttons on the home tab seems to revert the page to its previous versions. A video recording of the problem.
Update 2: Can confirm that the changes are reflected after a couple of minutes, for now.
Update: The embedded page has now reflected the changes. Will monitor if any other changes are immediately (or at least after a little bit of time) reflected.

I'm posting again to re-open a previous bug.

Previous Post: https://lemmy.world/post/15639946

Currently, the /hub where the /hub-events is embedded to, doesn't have the updated /hub-events page.

I've updated the code in the /hub-events last July 25. But currently, the change to it isn't reflected on the embedded /hub-events on the /hub at the Events tab.

Last time, it updated itself after a few minutes, but now two days have passed it hasn't updated yet.

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

What Came Before?

Ever wondered what is the past of your characters? What happened to the world before? Or you just want to time travel the past?

Generator Jam for July would be about the past! Create generators that generate backstories, alternate history, travelling to the past, and others!

When: July 8, 2024 12:00PM UTC to July 29, 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 = What Came Before?
  description = Generator Jam for July - What Came Before? Create generators that generate backstories, alternate history, travelling to the past, and others!
  type = Generator Jam
  image
    https://lemmy.world/pictrs/image/9688ee6a-de53-4c57-925f-0473df2cbda2.png
    // Can be multiple pictures to randomize the banner image :)
  start = 8 July 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 = 29 July 2024 12:00:00 UTC+0000
  color = linear-gradient(157deg, #03355b, #ecdb96)
  rules = Create Generators that are about the Past!

// For Generator Jams with Perchance URL
generators
  // The generator's $metadata is also parsed
  past-10-points
    author = Vionet20
    type = Text
  historic-people
    author = Allo
    type = Text

// For Image Events
images		

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

 

There seems to be a overflow issue on the comments-plugin's settings and fullscreen buttons.

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

Importables

Do you have ideas for lists, plugins, or templates that can be used by others? Now is the time to create it! 'Importables' Generator Jam!

Useful Generators, Plugins, HTML Widgets, CSS Styles. Generators that can be imported to other generators!

When: June 10, 2024 12:00PM UTC to June 28, 2024 12:00PM UTC

Thank you NecoBridge for the theme suggestion!

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 = Importables
  description = Do you have ideas for lists, plugins, or templates that can be used by others? Now is the time to create it! 'Importables' Generator Jam!
  type = Generator Jam
  image
    https://lemmy.world/pictrs/image/e5a38895-65b6-468e-80f7-e2a1fa609c30.png
    // Can be multiple pictures to randomize the banner image :)
  start = 10 June 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 = 28 June 2024 12:00:00 UTC+0000
  color = linear-gradient(231deg, hsl(127 0% 61%), hsl(201 17% 31%))
  rules = Create Generators that can be imported! Plugins, Lists, HTML Templater, CSS Styles

// For Generator Jams with Perchance URL
generators
  // The generator's $metadata is also parsed
  simple-toc-plugin
    author = Vionet20
    type = plugin
  rainbow-plugin2
    author = thatOnePerchanceGuy
    type = plugin
  no-reason-js
    author = thatOnePerchanceGuy
    type = plugin

  power-rain-plugin
    author = Bluepower
    type = plugin
  perchance-author
    author = Eatham
    type = plugin

// For Image Events
images		
	

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

view more: next ›