de en es fr
Let the machine help
Light teasing, exhibition, BDSM, sissyfication, watersports... with sounds and pictures


Post new topic Reply to topic  [ 145 posts ]  Go to page Previous  1 ... 6, 7, 8, 9, 10
Author Message
 Re: Toy
PostPosted: Mon Jun 20, 2022 1:06 am 
Offline
Shy
Thank you so much!
It's working perfectly now.


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Thu Jun 23, 2022 10:04 pm 
Offline
Newcomer
Hey, at the beginning after the bell. The lady tells me to wait and there is an error from the attachment.


Attachments:
error.png
error.png [ 8.01 KiB | Viewed 8073 times ]
Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Wed Dec 21, 2022 12:25 pm 
Offline
Regular
This is a great script, I like the concept and content a lot! Since I'm a sucker for slender fetish ladies, I've compiled a picture pack with Emily Marylin which you can find on this site and use with the script.

To change the owner after downloading, as written before, open the file data.properties in a text editor, and look for the line
Code:
toy.owner=[...]

There, put
Code:
toy.owner=emily


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Thu Dec 29, 2022 2:41 am 
Offline
Addict
Glad you're enjoy it... and great work on the picture packs :-) Thanks for contributing!


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Sat Jan 21, 2023 5:39 pm 
Offline
Shy
Hi, when I was checking out your toy script, a wiindow with various error messages popped up. (my config: Win 10, current version of groovyscripts, Java 7 (32-bit )
First, I tried out Java 8 (64-bit), but groovyscripts won't find Java then. I think the reason is
that sexscripts/groovyscripts is a 32-bit application and therefore expects Java to be 32-bit, too.
I think the script errors have nothing to do with java 32 or 64-bit in general, or could it be your script expects a specific java version installed, earlier or later than 7.?

Here's the error window:
Error: startup failed:
script16737273475111736403317.groovy: 162:unable to resolve class java.util.function.Function
@ line 162, column 2.
final java.util.function.Function<String, Boolean> loadB = this.&loadBoolean;
^

the same..... 163: unable to resolve ... the same
@line 163, column 2
final java.util.function.Function<String Integer> loadl = this.&loadInteger;
^

the same..... 164: unable to resolve ... the same
@line 164, column 2
final java.util.function.Function<String; String> loadS = this.&loadString;
^

the same..... 126: unable to resolve class.java.time.LocalDateTime
@line 126, column 2
java.time.LocalDateTime localTimeOf(int s) (

the same..... 147: unable to resolve class java.util.function.Function
@line 147, column 2
public <T>T getPropString i,java.util.function.Function<String, T>f,T d = null) {
^
5 errors

I hope you can fix the erros.


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Sun Feb 05, 2023 12:33 pm 
Offline
Regular
2 minor things I have noticed;

when she says, stroke to the edge, there is no stroking sound.

after she have instructed you to take out your gag, the last confirm option is in gag speak which by that point you can talk normal :P

looking forward to see this script grow~

<3


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Sun Sep 10, 2023 2:48 pm 
Offline
Regular
excellent pack, I would also like to add the changeability of mistresses, put all the packs so that they are built-in and so that all mistresses have their own character and there is no need to switch it all using notepad in data.properties!!!!


tinyinsect wrote:
This is a great script, I like the concept and content a lot! Since I'm a sucker for slender fetish ladies, I've compiled a picture pack with Emily Marylin which you can find on this site and use with the script.

To change the owner after downloading, as written before, open the file data.properties in a text editor, and look for the line
Code:
toy.owner=[...]

There, put
Code:
toy.owner=emily


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Sun Sep 10, 2023 2:51 pm 
Offline
Regular
rascalDan wrote:
Glad you're enjoy it... and great work on the picture packs :-) Thanks for contributing!



Thank you for your work and for the wonderful script! and you will finish the calendar events, maybe add a transfer from one mistress to another in some event? they say she came drunk and lost you at cards))))


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Tue Jan 02, 2024 12:13 am 
Offline
Newcomer
I seem to be going through basically the same CBT session every time. is this just a punishment for something or is this a bug? is there anything I can do to change this? like decreasing the likelihood of it being a CBT session?


Top
 Profile Send private message 
 
 Re: Toy
PostPosted: Thu Apr 04, 2024 12:17 am 
Offline
Regular
dmas wrote:
Hey, at the beginning after the bell. The lady tells me to wait and there is an error from the attachment.



I might figured out a solution to this:
-Open the file scripts/toy/play.groovy with your favorite editor.
-Find the two lines (roughly line 100):
Code:
final probabilities = sessions.withIndex().collect { s, idx -> [idx] * s.probability }.sum();
final session = sessions[probabilities[getRandom(probabilities.size)]];

and replace them with this:
Code:
final probabilities = sessions.collect { s -> s.probability }; // Collect probabilities
final totalProbability = probabilities.sum(); // Calculate total probability
def cumulativeProbability = 0;
final cumulativeProbabilities = probabilities.collect { // Calculate cumulative probabilities
    cumulativeProbability += it;
    cumulativeProbability;
};
final randomValue = Math.random() * totalProbability; // Generate random value
final selectedSessionIndex = cumulativeProbabilities.findIndexValues { it >= randomValue }.first(); // Find index of selected session
final session = sessions[selectedSessionIndex]; // Retrieve selected session


(Yes the credits go to chatgpt)
I can't promise anything but it should work now.


Top
 Profile Send private message 
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 145 posts ]  Go to page Previous  1 ... 6, 7, 8, 9, 10

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
Maroon Fusion theme created by Oxydo
Software, theme modifications, phpBB modification by Doti 2010 - 2020
This website uses session cookies only.