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


Post new topic Reply to topic  [ 18 posts ]  Go to page Previous  1, 2
Author Message
 Re: Submissive Challanges
PostPosted: Tue May 12, 2020 10:47 pm 
Offline
Regular
SomeGuy22006 wrote:
If you already are on level 5 I clearly made level 4 too tame.

With the current state of the world, I've had a bit too much spare time on my hands :). I didn't complete all of the tasks on level 4 simply because some weren't necessarily to my taste, but I did meet the minimum required to go up a level. I think that's a great idea you had to require the completion of at least some challenges from each category, and then a minimum number of total completed challenges. Perhaps the current total could also be shown on the main menu page?

SomeGuy22006 wrote:
Would be interested if you have any suggested tasks for myself or others.

I'll certainly have a good think about this; I already have some ideas.

SomeGuy22006 wrote:
(note, well done for figuring out my code well enough to improve it. I wrote the main mechanics ages ago and its not the tidiest example of coding ever)

It's great the effort that you and other authors are providing for free to the community, it doesn't need to be tidy! Anyway, your code's fine! ;)


Top
 Profile Send private message 
 
 Re: Submissive Challanges
PostPosted: Fri May 15, 2020 9:06 pm 
Offline
Veteran
I took a little look in your code and found two things for little code improvements for better reading:

make this:
Code:
if (word[word.length() - 1] == "." || word[word.length() - 1] == ",") {
    word = word.substring(0, word.length() - 1)
}
to this to make it easy to understand:
Code:
word.replaceAll("\\.|,", "")


make this:
Code:
if (word == "handcuffs" || word == "cuffs" || word == "handcuffed" || word == "cuffed") {
to this with a list:
Code:
if (word in ["handcuffs", "cuffs", "handcuffed", "cuffed"]) {

Or put that block of code in a map and loop over the map.
Code:
Map posspicWordMap = [
   "handcuffs":["handcuffs", "cuffs", "handcuffed", "cuffed"],
   // more posspic words here
]

posspicWordMap.each { it -> ... }


Top
 Profile Send private message 
 
 Re: Submissive Challanges
PostPosted: Tue Jun 30, 2020 3:03 pm 
Offline
Veteran
After not having played for a long time some scripts here, I got back a few weeks ago.
Very nice and surprised to find some good new scripts here and I absolutely love this one! It's very well written and done.
Love (and hate) all the challenges. Specially the sexscripts challenges at level three were a nice surprise!
They made me replay some scripts I actually forgot about. Even made me return and visiting my discipline clinic again. ;)
Until now, I tried to do at least one challenge a day and finally made it today to level 4.
Sure, it's becoming harder and harder and I doubt I will succeed this level but I'm also very curious and eager to make more progress.
How challenging! Very well done! Thank you for creating it, SomeGuy22006!


Top
 Profile Send private message 
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 18 posts ]  Go to page Previous  1, 2

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 9 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.