Its in the Developer Console F12 or right click inspect then click the console tab.
Using breed.selectOne
would only select norm
, desliz
, sdsw
, and arcdst
, which would then evaluate upon display. If you want to select an item under them, you need to select multiple times (breed.selectOne.selectOne
) or use the select-leaf-plugin
. Using the select-leaf-plugin
would still apply the dynamic odds applied to each item.
Have you tried other browsers or on other devices? On the developer console, you should be able to see this to indicate that it loaded fully:
Can you open the Dev Console (through F12) on the ai-character-chat
page and see if there are any errors?
I would like to figure our a way to have a number you input multiply your chances by a specific increment, (ex: if luck = 0, 25% chance to land, if luck = 2, 50% chance to land)
You could use Dynamic Odds by having a variable to multiply the odds e.g.:
output
Nice ^[25 + (luck * 12.5)]
// luck = 0, odds = 25 + (0 * 12.5) = 25
// luck = 1, odds = 25 + (1 * 12.5) = 37.5
// luck = 2, odds = 25 + (2 * 12.5) = 50
Sad ^75
Save/reset system I would like for the user to have their values automatically saved upon exit, so they will stay when they return. This also makes room for a reset system, where you can automatically revert to the default values.
You could check out remember-plugin for this. It would save in your browser's local storage (so the data would be device bound).
For the third one, you could probably give an example 'emoji list' with mana, then an example scenario that uses them.
What device do you access it with, and what browser? Do you have any ad-block/vpn on? Can you access https://perchance.org/ai-text-plugin and resolves the verification or is it stuck in verifying?
Can you explain/show what an 'ai chat button' is?
What do you aim to backup to plain text? What AI Chat are you using i.e. https://perchance.org/ai-chat or https://perchance.org/ai-character-chat ?
Salt Flats Impressionism Painting
Image Details
- Generator:
perchance.org/text2image-generator
- Style:
[ Vionet20 ] Anime-Impressionism Paintings
- Prompt:
landscape, salt flats, after rain, reflecting the sky, symmetrical
- Neg:
\[frame, people, signature: 0.1\]
- Res:
768x512
- Seed:
1051470324
- Guidance Scale:
7
Similar problem has been reported on Reddit.
Accessing on Google Chrome Mobile. Also happening on create-instance-plugin (? based on a comment there)
I've checked the code and on the button on the
approve
list, you need to increment the click and set thecontinue
variable before updating. It needs double update since you 'update' it first then set the appropriate values to the variables.