But in the first dom session it startet with
- Spoiler: show
Moderator: 1885




I think you just wrote the wrong name into the "SubName" box. Because that's what's used here
No, there currently is sadly no way to do that. Maybe at some point in the future I can work on that.subsen wrote: Sun Jul 18, 2021 10:12 pm Really loving it so far!!
Is there a way to put the metronome sounds to the Tease AI none java version?
You could try "skip edge bug" in these situations. That could help. Was there like stroke training or endurance training before that?
Well in this case your JVM (java virtual machine just ran out of memory due to a gif being loaded apparently). Seing that the gif is quite big that could be the issue. Although obviously there should be more than enough RAM. How much RAM do you have?


If you don't want the edge training sessions, go into the Session/Special/SessionSpecial.js file and replace daysPassed*10 in line 71 with 0*10. That's it. "safeword red" should interrupt the session and you should be able to end the session early this way if you want to.Ingvald_Alex wrote: Tue Aug 03, 2021 10:40 am Can you do anything with edge training session? More then 40 edges... only edges... It is crazy. Safeword can't stop it.

this is a buildin feature of teaseAi there are at each session like 10 picture which repeat in this session so the next session have new pictures and you don't need much pictures from a person.markus wrote: Tue Aug 24, 2021 11:35 am Hello everyone!
I'm looking forward to play with Spicy alot, great project what I can tell so far, THX to everyone who is involved!
I had my first short session, but I have problems with my domme picture sets.
I am using the Quick-Start-Download-Version btw.
I have nearly 40000 pictures, 1 main folder and 68 subfolders.
But only a very few of these pictures are displayed, like 5-10 out of 40000.
They are all .jpg and are displayed when I tag them with TAIJ, but not showing up in the session.
I don't see what's the diffence between my pictures and those which are shown.
I have already tried:
- Converting them to not-progressive
- Converting them to bmp and back to jpg
- Renamed the pictures to numbers 1 2 3 and so on
- Renamed the folders to numbers 1 2 3 and so on
When I select that folder with the 40000 pictures it takes a little while till TAIJ responses again, which means I guess that there is some sort of checking TAIJ does.
Could anyone post here that checking part in the code?
Or has someone similar problems (solved)?
Any other ideas?
Best greetings,
Markus
Hi!Spielers wrote: Tue Aug 24, 2021 7:33 pm this is a buildin feature of teaseAi there are at each session like 10 picture which repeat in this session so the next session have new pictures and you don't need much pictures from a person.
Sorry, nope, ... private stuff.Can you share your Picturecollection of your dom?

It's definitely not a feature. Can you give some insight on how they are tagged?markus wrote: Tue Aug 24, 2021 8:10 pmHi!Spielers wrote: Tue Aug 24, 2021 7:33 pm this is a buildin feature of teaseAi there are at each session like 10 picture which repeat in this session so the next session have new pictures and you don't need much pictures from a person.
Among developers / programmers there is this old saying: 'It's not a bug, it's a feature!'![]()
Honestly, if this is actually a feature, then it's a bad one IMHO, but i doubt that it is a feature.
Let's say you play a session which lasts 2 hours, ... and only see the same 10 pictures all the time over and over again? ... Would be very boring and would also not make any sense to me,... why reduce the amount to 10 pictures when you have thousands to look at?
But I have tested it more than once,... like 10 times or such, ... and I saw always the same pictures,... everytime,... if you have 40000 pictures, run 10 sessions and there are always the same some pictures out of 40000 then there must be something wrong.
Sorry, nope, ... private stuff.Can you share your Picturecollection of your dom?
Best greatings,
Markus
It's late this evening and I did just a quick test and want to give just a quick response before I hit the bed.GodDragon wrote: Tue Aug 24, 2021 8:49 pm It's definitely not a feature. Can you give some insight on how they are tagged?
Right now I think I have set it so it only shows faces and fully dressed pictures. That might be a bit strange indeed. Dunno how that turned out to be like this. What you can try for now is to go into: Startup/PictureSelector.js and add // in front of this line:
" TeaseAI.application.getSession().getActivePersonality().setPictureSelector(new SpicyPictureSelector());". This should make it so the default TAJ selector is used and this should provide more diversity.

Well I hope you have an enjoyable experiencemarkus wrote: Tue Aug 24, 2021 9:42 pm Hi!
It's late this evening and I did just a quick test and want to give just a quick response before I hit the bed.GodDragon wrote: Tue Aug 24, 2021 8:49 pm It's definitely not a feature. Can you give some insight on how they are tagged?
Right now I think I have set it so it only shows faces and fully dressed pictures. That might be a bit strange indeed. Dunno how that turned out to be like this. What you can try for now is to go into: Startup/PictureSelector.js and add // in front of this line:
" TeaseAI.application.getSession().getActivePersonality().setPictureSelector(new SpicyPictureSelector());". This should make it so the default TAJ selector is used and this should provide more diversity.
Out commenting that line works! Pictures are now showing!![]()
I will test and give you more feedback/infos/taggedFile as soon as I find some time to play along and test and such.
Till then, ... a 1000 THX,... I guess a spicy princess is awaiting me tomorrow!
Best greetings,
Markus
Code: Select all
...
//Run a bigger taunt special instead of a normal taunt (1/20)
if(randInt <= 5 && getAllowedTauntCategories().length > 0) {
findTauntAndRun(getAllowedTauntCategories);
...
Code: Select all
...
//Run a bigger taunt special instead of a normal taunt (1/20)
if(randInt <= 5 && getAllowedTauntCategories().length > 0) {
let allowed = [];
allowed = getAllowedTauntCategories();
const category = randomInteger(0, allowed.length);
findTauntAndRun(allowed[category]);
...

I should've fixed all of these 3 issues now. Thanksleezer3 wrote: Wed Aug 25, 2021 4:08 pm Your newest taunts are a little broken
(I don't think this is version related)
Spicy\Stroking\Taunt\Stroke\BasicStrokingTaunt.js
The current code looks like this:This doesn't work, as findTauntAndRun expects a single category, not an array of categories.Code: Select all
... //Run a bigger taunt special instead of a normal taunt (1/20) if(randInt <= 5 && getAllowedTauntCategories().length > 0) { findTauntAndRun(getAllowedTauntCategories); ...
Quick and dirty patch:Not submitting this as a PR, as you really want a function which decides from the categories and mood.Code: Select all
... //Run a bigger taunt special instead of a normal taunt (1/20) if(randInt <= 5 && getAllowedTauntCategories().length > 0) { let allowed = []; allowed = getAllowedTauntCategories(); const category = randomInteger(0, allowed.length); findTauntAndRun(allowed[category]); ...
You may well have this already, but I'm not diving into moods at the minute or figuring that out- You're much more familiar with this than I am
Separate, I've got a small PR open to fix the cock destruction module, which seems to have been missed:
https://github.com/GodDragoner/Spicy-TA ... ty/pull/47