Page 9 of 33
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Fri May 20, 2022 8:28 am
by genome231
Hi
I am looking to completely update/overhaul sessions. Right now they are kinda basic.
If you have great ideas and/or feedback about what works and doesn't etc.
Please write me a PM!
I care a lot about feedback and often include ideas and make changes based on it
Best regards
Genome
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Fri May 20, 2022 3:56 pm
by TanyaHumble
when asked to change lines during punishment is still not working. Changing the numbers changes nothing. ( when asked to change the max lines during service it worked )
got this after typing stop on snakes and ladders when I typed stop. ( game ended and wasn't responding for a long time )
Code: Select all
ERROR: Exception occured finding GotoLabel "(Stopped)" in file "F:\Spel\lewds\Tease AI Open Beta\Scripts\Masturbatrix\Custom\Start_And_Misc\Base.txt"
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Sun May 22, 2022 3:33 pm
by TanyaHumble
So I had 4 new sessions, first day I did snakes&ladders and the second day I did Simulator so one would assume that there are 2 sessions left but when I logged in today my sessions are 4/4 and I have to wait a week.
Am I misunderstanding something / is it intentional or is it a bug?
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Sun May 22, 2022 9:09 pm
by modnar
Couple of errors in:
Custom\Punishment\P3.txt
I was stuck in a loop because #SubWritingTaskMin,#SubWritingTaskMax are the current GUI settings.
- Spoiler: show
-
Code: Select all
Line26:
Under the Sub tab, in the lower right corner update your line range to be minimum #SubWritingTaskMin to maximum #SubWritingTaskMax #DT @Wait(10)
Line 36:
Under the Sub tab, in the lower right corner update your line range to be #SubWritingTaskMin to #SubWritingTaskMax #DT @Wait(10)
------------------------------------------------------------------------------------------------------------------------------------------------------
I updated to the following:
Line 26:
Under the Sub tab, in the lower right corner update your line range to be minimum #Var[ModLinesMin] maximum #Var[ModLinesMax] #DT @Wait(10)
Line36:
Under the Sub tab, in the lower right corner update your maximum line range #SubWritingTaskMax to be #Var[ModLinesMax] #DT @Wait(10)
------------------------------------------------------------------------------------------------------------------------------------------------------
Also, there seems to be a problem inside (TestLines2) because of the calculation.
I could only progress by using this:
(TestLines2)
@Variable[ModLinesMin]!=[#SubWritingTaskMin] @NullResponse @Goto(UpdateMin2)
@Variable[ModLinesMax]!=[#SubWritingTaskMax] @NullResponse @Goto(UpdateMax2)
That would also mean Lines 8,9 are incorrect?
The same issue occurs in P3A.txt
Vocabulary\#WritingAssignment.txt"
- Spoiler: show
Code: Select all
(10):I am too pathetic to be considdered a man.
Spelling mistake
(10):I am too pathetic to be considered a man.
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Mon May 23, 2022 8:38 am
by genome231
Hi
Thanks for the reports!
- Linewriting punishment should be fixed now!
- The Snake and Ladders stop I will need some time to investigate, not what is happening there
- No that is not intended, found the problem. Should be fixed!
- Fixed spelling error, please keep these coming - they are quick and easy to fix and provides a better experience!
Version 1.03D is now ready
I am currently working on version 1.10.
I should soon have some details to share about what is coming, it will be a big upgrade to the current Masturbatrix.
Cheers
Genome
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Mon May 23, 2022 11:53 am
by TanyaHumble
got this on startup , version 1.03c
Code: Select all
WARNING: No available lines in vocabulary file: "#TributeSystem
looking forward to try the new version! Keep up the good work!
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Tue May 24, 2022 1:58 am
by modnar
Just checked, v1.03D I feel it's broken functionality now in P3.txt
According to the logic now, I could even just set min/max to lower numbers and it'll take me directly to the task.
Also, the "warning" message is showing the min/max in the settings GUI, and not the requested min/max from ModLinesMin/ModLinesMax
Here's my working version:
- Spoiler: show
Code: Select all
@Flag(First_LineWriting) @NullResponse @Goto(TestLines)
This is your first line writing punishment #DT
You will be typing lines until I am happy #DT @SetFlag(First_LineWriting)
(TestLines)
@NullResponse @SetVar[Save]=[0]
@NullResponse @ChangeVar[Save]=[Save]+[60]
@NullResponse @ChangeVar[Save]=[Save]*[#Random(#Var[PMin],#Var[PMax])]
@Variable[#SubWritingTaskMin]!=[ModLinesMin] @NullResponse @Goto(UpdateMin)
@Variable[#SubWritingTaskMax]!=[ModLinesMax] @NullResponse @Goto(UpdateMax)
@NullResponse @SetVar[Counting]=[0]
@NullResponse @CountVar[Counting]
(Return)
Okay #DT
Lets get you started on your writing assignment #DT
(Task)
@WritingTaskRandom(#WritingAssignment)
@Variable[Counting]>=[Save] @NullResponse @Goto(Complete)
@NullResponse @Goto(Task)
(UpdateMin2)
Liar! #DT #Punish
I expect you to do as told! #DT #MeritsDown
(UpdateMin)
You need to update your minimum line range #SlaveName #DT
Go into settings in the lower right corner #DT
Under the Sub tab, in the lower right corner update your line range to be minimum #Var[ModLinesMin] maximum #Var[ModLinesMax] #DT @Wait(10)
Are you done? #DT
[yes] @NullResponse @Goto(TestLines2)
@DifferentAnswer Just say "yes" when you're done #DT
(UpdateMax2)
Liar! #DT #Punish
I expect you to do as told! #DT #MeritsDown
(UpdateMax)
You need to update your maximum line range #SlaveName #DT
Go into settings in the lower right corner #DT
Under the Sub tab, in the lower right corner update your maximum line range #SubWritingTaskMax to be #Var[ModLinesMax] #DT @Wait(10)
Are you done? #DT
[yes] @NullResponse @Goto(TestLines2)
@DifferentAnswer Just say "yes" when you're done #DT
(Failed Writing Task)
You failed your task #SlaveName #DT
However no worries, we can repeat it all day until you get it right #Grin #DT @Goto(Task)
(TestLines2)
@Variable[ModLinesMin]!=[#SubWritingTaskMin] @NullResponse @Goto(UpdateMin2)
@Variable[ModLinesMax]!=[#SubWritingTaskMax] @NullResponse @Goto(UpdateMax2)
@NullResponse @Goto(Return)
(Complete)
@NullResponse @ChangeVar[Punishment]=[Punishment]-[1]
@End
Re: Masturbatrix - Tease-AI - BETA ver 1.03C
Posted: Tue May 24, 2022 9:53 am
by genome231
Hi,
1.03E uploaded - thanks!
@TanyaHumble
Let me know if the error persists, think I fixed it.
@modnar
Yes I was lazy! My focus right now is on version 1.10, so I made a quickfix and added it to the to-do list for 1.10
I have implemented your solution! Thanks, much appreciated!
/Genome
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Wed May 25, 2022 5:06 pm
by genome231
Hi
Lots of interesting stuff going on at the moment.
One of those is Masturbatrix version 1.10 which I am currently working on.
If you're curious about what is coming simply jump to the second post in this thread.
I have included a changelog for version 1.10.
Here you can see what has been written and implemented. Not planned, but something which is actually included right now.
I have decided not to write about what I plan to do, I dont want to disappoint in case I change my mind.
As I write and implement stuff this list will grow.
Also this list only mentions big changes, not the tons of minor changes I make.
As of now I dont know when version 1.10 releases.
Best regards
Genome
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Fri May 27, 2022 12:29 pm
by TanyaHumble
When drawing a blue bead,
Code: Select all
Aww, that is such a borring and frustrating bead *grin*
Should be boring.
My typical usage of Masturbatrix is,
Do sessions ( first time didn't know about the limit so burnt my 4 sessions really quick, second week it bugged? and I only got 2 sessions. )
Try the games, they all feel ok.
Do Service -> was also ok but a little repetitive. Then the line writing got bumped and I stopped doing service ( I like and HATE line writing x.x )
Every other day? get task, do task.
It seems there is no way currently to get out of chastity unless during a session which is a little more then I feel comfortable with. The solution seems to be a reinstall and change the starting parameters >.>
I was under the impression that the MODS where going to change? is it monthly or a coming feature maybe?
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Fri May 27, 2022 9:38 pm
by Gud4
Just getting into this program and I think you're doing a wonderful job over all. I have a couple questions/ suggestions that may have already been covered.
Is there a way to view your current card status? I had some glitching and had to restart the first interaction. the program remembered my selections from last time but I did not.
I am unsure if I am supposed to be placed back in chastity after a session. was told to put it on initially, then off to start a session. when that session was over I was not told to put it back on. When i did my next session I was told to remove chastity, which i did not know i was supposed to be wearing.
What are merits? Mine have been dropping every log in, is this normal?
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Sat May 28, 2022 12:15 pm
by genome231
Hi
@TanyaHumble
- Fixed spelling for version 1.10
- Can you elaborate on the repetitive for service? How quickly did it get repetitive? What happened to you specifically? What would you like to see to make it less repetitive?
- What are you trying to say about tasks?
- Chastity: If you choose full time at setup, the only way out is through sessions.
- The mods should change after 3-4 weeks. How long have you been running Masturbatrix?
@Gud4
"current card status?" Are you refering to Mods? If so there is currently no way to view it. However that is a good idea, added to the to-do list.
- Chastity doesn't work great in version 1.03. It should be heavily improved with 1.10.
- Merits is a measure of how "happy" the Domme is with you. If you find that your merits keep lowering, she aint too happy with you

There are a number of things that can trigger this. For instance when given a command you need to respond with "yes". If she is being kind or hard on you dont forget to thank her. etc etc.
In general I do a bad job of explaining a lot of stuff in Masturbatrix. Working on fixing that too
Cheers
Genome
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Sat May 28, 2022 1:49 pm
by Gud4
Thanks for getting back so quickly!
Just saw that the merits is fluctuating not necessarily dropping, so that makes sense.
By cards I did mean Mods.
A general "what is my status?" display would probably be a good place to display mods, chastity status, more things I cant think of.
A list of useful inputs and examples would be good too. Cant use the program to it's fullest if I don't know the keywords.
Really appreciate all your work!
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Sat May 28, 2022 2:24 pm
by TanyaHumble
I think I did about 1 hour service sessions and if I got the drink one glas of water and wait to go to toilet I would extend it to that hour ( else it feels like cheating to me ) getting a second glas of water to extend it further was a bit of a challenge I liked though.
I'll try and do some more service and see if I can elaborate some more , just gonna get over the fear of the writing task
But during this time it's quite clear that you get called about every 3rd minute and the pool of activities gets rehashed quite quick. Maybe have a wider range of time from 3-15min? or have a few guaranteed 20min breaks to catch the user off guard.
Just mentioning Tasks as part of a regular day usage, a side note. I have no thoughts on it at the moment.
I should be on my 3 week soon so looking forward to changing the MODS if that happens.
Re: Masturbatrix - Tease-AI - BETA ver 1.03E
Posted: Tue May 31, 2022 9:21 pm
by TanyaHumble
Doing the JOI session and got to choose a video, length 20ish min, type in 1300, confirm that it is 1300s and prompts me to play the video.
The video I chose had a random chance and I lost so can't ask for permission to come ( since I need it from both ).
Time goes by and I have now waited for 1 hour to hear the bell but script seems stuck at,
Code: Select all
::: TYPO :::
::: FileText = F:\Spel\lewds\Tease AI Open Beta\Scripts\Masturbatrix\Custom\Session\Session_JOI.txt ::: LineVal = 76
::: TauntText = ::: LineVal = 0
::: ResponseFile = ::: LineVal = 0
Well all I had to do was ask for permission to continue...

I'm tired is my defence!
