Page 10 of 50
Re: [Tease AI] Miss Blue v1.07
Posted: Tue Feb 20, 2018 6:07 pm
by tigrotto
I found a bug in the interrupt 24-7.

It's pretty stupid but it prevents to start a new session once you do, on the first day you activate 24-7 control, all the session decided by your Mistress.

Trying to fix it...
EDIT Ok, I'm done for today. It's almost dinner time here

so I'll relax a bit watching TV now.
It seems you're doing a good work with that chastitybox so far!
Bye G3!
Re: [Tease AI] Miss Blue v1.07
Posted: Wed Feb 21, 2018 8:10 pm
by markus
Hi G3General !
Chastity can be fun and frustrating but lets face it, even though the domme is the keyholder, there are ways to cheat around that fact. I already did twice.
[...]
Scenario:
Domme: You have been a good boy @slavename, im ggoing to let you out of chastity. What is your keynumber?
You: 1111
Domme then reads the number from a notepad keysheet and gives you the digital key to open the box with the key to your chastity device.
I have a notepad doc with 50 random 4 digit numbers in the first column and the "keys" in the second column. These same numbers are also stored on the arduino.
[...]
Also if its possible to "scramble" or hide the keysheet so you cant cheat by finding the documents in the sys files?
Any thoughts?
I am not a fan of preventing a user of cheating, ... there are too many ways to cheat anyway that it is much too complicated to prevent it (i.e. how should one should stop you from destroying you lockbox?

)
I can think of a way to 'scramble' / encrypt some text, but even then, if you would google enough you'd find a way around that, too.
BUT, ... (I don't know if that helps you for your lockbox), ... I have made some thoughts of sending simple strings to the arduino, I have one myself.
You could then send any kind of string to the arduino from a TAI-Script (if it's connected via usb to your pc), ... in example @SendToCom(unlock), then you'd have to watch your arduino with Serial.Read for 'unlock' and let do the arduino-sketch do the rest, ... would that be any kind of help to you?
(And of course, there would be no cheat-safety since such a unlock command would be in the scripts of TAI)
Best greetings
Re: [Tease AI] Miss Blue v1.07
Posted: Thu Feb 22, 2018 6:19 pm
by tigrotto
Small update on the 24/7 script.
I changed the structure of the Interrupt 24-7 because it was wrong. So I changed from this:
Code: Select all
(Monday)
@NullResponse @RapidCodeOn
@NullResponse @NotFlag(24-7_number_of_sessions_set) @SetFlag(24-7_number_of_sessions_set) @SetVar[24-7_number_of_sessions]=[#Random(#Var[24-7_min_number_of_sessions], #Var[24-7_max_number_of_sessions])]
@NullResponse @Flag(24-7_work_on_Tuesday, 24-7_NO_sessions_during_sleep) @CheckDate(24-7_go_to_sleep_working_day, Stop session) @SetVar[24-7_time_before_going_to_sleep]=[#DateDifference(24-7_go_to_sleep_working_day, minutes)]
@NullResponse @Flag(24-7_work_on_Tuesday, 24-7_NO_sessions_during_sleep) @Variable[24-7_time_before_going_to_sleep]<[0] @ChangeVar[24-7_time_before_going_to_sleep]=[24-7_time_before_going_to_sleep]*[-1]
@NullResponse @Flag(24-7_work_on_Tuesday, 24-7_NO_sessions_during_sleep) @If[24-7_time_before_going_to_sleep]>[24-7_max_session_length]Then(Start session)
@NullResponse @NotFlag(24-7_work_on_Tuesday) @Flag(24-7_NO_sessions_during_sleep) @CheckDate(24-7_go_to_sleep_not_working_day, Stop session) @SetVar[24-7_time_before_going_to_sleep]=[#DateDifference(24-7_go_to_sleep_not_working_day, minutes)]
@NullResponse @NotFlag(24-7_work_on_Tuesday) @Flag(24-7_NO_sessions_during_sleep) @Variable[24-7_time_before_going_to_sleep]<[0] @ChangeVar[24-7_time_before_going_to_sleep]=[24-7_time_before_going_to_sleep]*[-1]
@NullResponse @NotFlag(24-7_work_on_Tuesday) @Flag(24-7_NO_sessions_during_sleep) @If[24-7_time_before_going_to_sleep]>[24-7_max_session_length]Then(Start session)
@NullResponse @Goto(Start session)
@NullResponse @RapidCodeOff
to this:
Code: Select all
(Monday)
@NullResponse @RapidCodeOn
@NullResponse @Flag(24-7_different_range, 24-7_work_on_monday) @NotFlag(24-7_monday_number_of_sessions_set) @SetFlag(24-7_monday_number_of_sessions_set) @DeleteFlag(24-7_tuesday_number_of_sessions_set) @SetVar[24-7_number_of_sessions]=[#Random(#Var[24-7_min_number_of_sessions_working_day], #Var[24-7_max_number_of_sessions_working_day])]
@NullResponse @Flag(24-7_different_range) @NotFlag(24-7_monday_number_of_sessions_set, 24-7_work_on_monday) @SetFlag(24-7_monday_number_of_sessions_set) @DeleteFlag(24-7_tuesday_number_of_sessions_set) @SetVar[24-7_number_of_sessions]=[#Random(#Var[24-7_min_number_of_sessions_not_working_day], #Var[24-7_max_number_of_sessions_not_working_day])]
@NullResponse @NotFlag(24-7_different_range, 24-7_monday_number_of_sessions_set) @SetFlag(24-7_monday_number_of_sessions_set) @DeleteFlag(24-7_tuesday_number_of_sessions_set) @SetVar[24-7_number_of_sessions]=[#Random(#Var[24-7_min_number_of_sessions], #Var[24-7_max_number_of_sessions])]
@NullResponse @Flag(24-7_work_on_monday) @If[#DateDifference(24-7_go_to_work,minutes)]>=[0]And[#DateDifference(24-7_come_home,minutes)]<=[0]Then(Monday_Sub is at work)
@NullResponse @Flag(24-7_work_on_monday) @If[#DateDifference(24-7_go_to_work,minutes)]<[0]Or[#DateDifference(24-7_come_home,minutes)]>[0]Then(Monday_Sub is at home)
@NullResponse @NotFlag(24-7_work_on_monday) @Goto(Monday_Sub is at home)
@NullResponse @RapidCodeOff
(Monday_Sub is at work)
@NullResponse @RapidCodeOn
@NullResponse @SetVar[24-7_time_until_sub_gets_home]=[#DateDifference(24-7_come_home,minutes)]
@NullResponse @Variable[24-7_time_until_sub_gets_home]<[0] @ChangeVar[24-7_time_until_sub_gets_home]=[24-7_time_until_sub_gets_home]*[-1]
@NullResponse @Wait(#Var[24-7_time_until_sub_gets_home] minutes)
@NullResponse @DeleteVar[24-7_time_until_sub_gets_home] @Goto(Find day of the week)
@NullResponse @RapidCodeOff
(Monday_Sub is at home)
@NullResponse @RapidCodeOn
@NullResponse @Flag(24-7_work_on_monday, 24-7_work_on_tuesday) @If[#DateDifference(24-7_wake_up_working_day,minutes)]<=[0]Or[#DateDifference(24-7_go_to_sleep_working_day,minutes)]>=[0]Then(Monday_Sub is sleeping)
@NullResponse @NotFlag(24-7_work_on_monday, 24-7_work_on_tuesday) @If[#DateDifference(24-7_wake_up_not_working_day,minutes)]<=[0]Or[#DateDifference(24-7_go_to_sleep_not_working_day,minutes)]>=[0]Then(Monday_Sub is sleeping)
@NullResponse @Flag(24-7_work_on_monday) @NotFlag(24-7_work_on_tuesday) @If[#DateDifference(24-7_wake_up_working_day,minutes)]<=[0]Or[24-7_go_to_sleep_not_working_day,minutes]>=[0]Then(Monday_Sub is sleeping)
@NullResponse @Flag(24-7_work_on_tuesday) @NotFlag(24-7_work_on_monday) @If[#DateDifference(24-7_wake_up_not_working_day,minutes)]<=[0]Or[#DateDifference(24-7_go_to_sleep_working_day,minutes)]>=[0]Then(Monday_Sub is sleeping)
@NullResponse @Goto(Monday_Sub is awake)
@NullResponse @RapidCodeOff
(Monday_Sub is sleeping)
@NullResponse @RapidCodeOn
@NullResponse @NotFlag(24-7_NO_sessions_during_sleep) @Goto(Start session)
@NullResponse @Flag(24-7_work_on_tuesday) @SetVar[24-7_time_until_sub_awakes]=[#DateDifference(24-7_wake_up_working_day,minutes)]
@NullResponse @NotFlag(24-7_work_on_tuesday) @SetVar[24-7_time_until_sub_awakes]=[#DateDifference(24-7_wake_up_not_working_day,minutes)]
@NullResponse @Variable[24-7_time_until_sub_awakes]<[0] @ChangeVar[24-7_time_until_sub_awakes]=[24-7_time_until_sub_awakes]*[-1]
@NullResponse @Wait(#Var[24-7_time_until_sub_awakes] minutes)
@NullResponse @DeleteVar[24-7_time_until_sub_awakes] @Goto(Find day of the week)
@NullResponse @RapidCodeOff
(Monday_Sub is awake)
@NullResponse @RapidCodeOn
@NullResponse @NotFlag(24-7_NO_sessions_during_sleep) @Goto(Start session)
@NullResponse @Flag(24-7_work_on_monday) @Variable[#DateDifference(24-7_go_to_work,minutes)]<=[0] @SetVar[24-7_time_before_going_to_work]=[#DateDifference(24-7_go_to_work,minutes)]
@NullResponse @Flag(24-7_work_on_monday) @Variable[#DateDifference(24-7_go_to_work,minutes)]<=[0] @ChangeVar[24-7_time_before_going_to_work]=[24-7_time_before_going_to_work]*[-1]
@NullResponse @Flag(24-7_work_on_monday) @If[24-7_time_before_going_to_work]>=[24-7_max_session_length]Then(Start session)
@NullResponse @Flag(24-7_work_on_monday) @Variable[24-7_time_before_going_to_work]>=[24-7_min_session_length]And[24-7_time_before_going_to_work]<=[24-7_maximum_interval] @SetFlag(Reduced session) @Goto(Start session)
@NullResponse @Flag(24-7_work_on_tuesday, 24-7_NO_sessions_during_sleep) @If[#DateDifference(24-7_go_to_sleep_working_day,minutes)]>=[24-7_maximum_interval]Then(Start session)
@NullResponse @NotFlag(24-7_work_on_tuesday) @Flag(24-7_NO_sessions_during_sleep) @If[#DateDifference(24-7_go_to_sleep_not_working_day,minutes)]>=[24-7_maximum_interval]Then(Start session)
@NullResponse @Flag(24-7_work_on_tuesday, 24-7_NO_sessions_during_sleep) @Variable[#DateDifference(24-7_go_to_sleep_working_day,minutes)]>=[24-7_min_session_length]And[#DateDifference(24-7_go_to_sleep_working_day,minutes)]<=[24-7_max_session_length] @SetFlag(Reduced session) @Goto(Start session)
@NullResponse @NotFlag(24-7_work_on_tuesday) @Flag(24-7_NO_sessions_during_sleep) @If[#DateDifference(24-7_go_to_sleep_not_working_day,minutes)]>=[24-7_min_session_length]And[#DateDifference(24-7_go_to_sleep_working_day,minutes)]<=[24-7_max_session_length] @SetFlag(Reduced session) @Goto(Start session)
@NullResponse @RapidCodeOff
The difference in the new version is that now your Mistress will now if you're at work or at home, if you're sleeping or if you're awake and if you're going to work or to sleep, while previously this didn't happen.
I also added the possibility to set a different range for the number of sessions per day depending on if you have to work on that day or you're at home all day. This way you can play more sessions on weekend for example.
Since with this version of the script I'm working
against the logic of TeaseAI(you have to leave your pc on 24/7 with TeaseAI Always on, TeaseAI will never end the session forcing you to delete the temporary flags manually to avoid bugs) I'm thinking to create another version to work
with TeaseAI. The difference is that with this new version will be that you don't have to leave your pc on all the time and TeaseAI will be able to end the session and you won't have to delete the temporary flags at the "end" of the session. With this version you will have to check if it's time to start a new session while previously your Mistress called you when it was time to start a new session.
Bye!

Re: [Tease AI] Miss Blue v1.07
Posted: Thu Feb 22, 2018 8:54 pm
by G3General
markus wrote: Wed Feb 21, 2018 8:10 pm
I am not a fan of preventing a user of cheating, ... there are too many ways to cheat anyway that it is much too complicated to prevent it (i.e. how should one should stop you from destroying you lockbox? )
Of course its easy to cheat. But I generally dont, because that would ruin the tease. But regarding the chastity device its a little different. I will take it of for a couple of hours if it gets uncomfertable for example, or if i need to scratch my balls. I just want it to be a "little" harder to do that. My box is made of cardboard, so easily destroyed. But it took a while to make, that will therefore be the incentive not to break it. Kind of like the rules to self bondage. Have a secure fast way of escaping b4 the alloted time, but its gonna cost you etc
My box is finished and oh man what a monstrosity :) but it works!
Front. Key is locked.
https://www.dropbox.com/s/5743agyciodws ... 8.JPG?dl=0
Side. Key"house" with å motor that blocks access to a screw with the key on it.
https://www.dropbox.com/s/g7d1a5lypxjnp ... 9.JPG?dl=0
(couldnt get the [/img][/img] to work
Now to get into some scripting to see if I can make it work with the programme.
Re: [Tease AI] Miss Blue v1.07
Posted: Thu Feb 22, 2018 9:46 pm
by meaculpa_uk
I don't mean to be a pain, but could this thread be kept 'clean' for posts relating to Miss Blue.
Thanks,
Mea
Re: [Tease AI] Miss Blue v1.07
Posted: Sat Feb 24, 2018 6:35 pm
by YouSeeMyDick
Hello,
is there any thread out there where i can see how to set everything up with all sources and pictures..
also is there something where i only have to download the pictures and set the folder?
So i dont have to set up everything? Thanks in advice
Re: [Tease AI] Miss Blue v1.07
Posted: Mon Feb 26, 2018 3:06 pm
by tigrotto
YouSeeMyDick wrote: Sat Feb 24, 2018 6:35 pm
Hello,
is there any thread out there where i can see how to set everything up with all sources and pictures..
also is there something where i only have to download the pictures and set the folder?
So i dont have to set up everything? Thanks in advice
Maybe you could start reading the
Getting started guide written by malaru.
Here you can find a list of additional information and resources collected by avatarbr.
Hope this may help you.
Bye!

Re: [Tease AI] Miss Blue v1.07
Posted: Mon Feb 26, 2018 4:35 pm
by smargerbarg
Hi I have a question about the unofficial patch for Miss Blue, do I need to have teaseAI downloaded twice one with the official patch to run say house of tease and a second with the unofficial patch to run Miss Blue. I ask because I have not downloaded the unofficial patch yet and have experienced some problems with Miss Blue.
One such problem is she just introduced anal (which was a pleasant surprise) when she did any pictures she tried to show brought up a erro message with invalid image path. Is this because I don’t have the unofficial patch or because I am missing images in a folder.
By the way absolutely amazing work!!!! She is so real! It is so easy to think your talking to a real person!!
Re: [Tease AI] Miss Blue v1.07
Posted: Tue Feb 27, 2018 10:28 am
by tigrotto
Hi!
I wrote a script for Miss Blue based on
G3General's idea.
Description:
G3 wanted to create a script so that, after you end the session, your Domme goes offline for a random amount of time and then she wakes up to start another session.
Basically, if you activate this script, your Domme will control you 24/7; she will decide how many sessions per day you're going to do, when you're going to start a new session, how much time between two sessions you will be given...
If you're interested download the script
here.(read the instruction first!

)
Bye!
EDIT: I found a bug in the script so I uploaded the new version. Please re-download the script files.
Thanks and sorry!
EDIT 03/03/2018 Markus released the
Unofficial Patch 55.5. This will fix the bug in filter @DayOfWeek and my 24/7 control script will work as expected. So, please download and install it.
Re: [Tease AI] Miss Blue v1.07
Posted: Tue Mar 06, 2018 10:17 pm
by Asteroth
Few things (or maybe a lot, please don't take offense, you are doing an amazing job with this personality and I want to help to my abilities), first I updated miss blue by copying files of version 0.7 over files from 0.5 and I keep getting problems with responses:
me: I'm leaking precum
miss: ERROR: Tease AI did not return a valid Response line from file xxx\vocabulary\responses\drippingprecum.txt
me: you gave me blue balls:
miss: ERROR: xxxx\haveblueballs.txt
orther phrases:
you're cruel
I see it on a few phrases so if I spot it elsewhere I'll also post the problematic phrases.
By the way, how is the "domme decides" solved regarding orgasm chances?
Second thing, a suggestions:
Is it possible to add more tasks for MissBlue? Tasks that have to be completed before the next session, like the edging task I got once, but some being more cruel and\or time consuming often making them impossible to do on the following day to force you to either report failure and face punishment or wait a few days for another session.
Ideas for tasks (I am more than happy to write them, but I have no idea how to script them so I can only write texts)
1 - self bondage - tie yourself as much as you safely can and spend 3 hours with each session being no shorter than 1h. You'll set up an alarm clock and blindfold yourself - just lie there and contemplate what a pathetic slave you are.
2 - self bondage - strip naked, put a plug in your tight innocent ass and tie your hands in front of you so you can't reach the plug with your hands - now you will [pick one random -clean the house/suck a dildo till you gag on it n times/more options?]
3 - spanking - spank your ass n [can be a lot]times with a belt on each side - and don't come back until you do
4 - spend 24 hours naked and collared [obviously will give a long delay] if the slave reports task done, ask if he remembered no socks and no shoes - good chance the slave will have forgotten and to reset the task
more options regarding orgasm:
right now I'm scared to mention anything that's not obvious begging. She should ask for confirmation before jumping to conclusion I came.
milking - that would need to ensure the denial was already long, maybe make sure domme is in bad mood AND that cock is locked in a chastity cage - she will instruct to do anal until the cum oozes out. This needs taunts about making it the only way to cum slave will ever have, making the chastity permanent as there's no need to remove the cage, basically anything to make the locked guy really miserable.
collaring - so far it's super rare and she never accepts my offer to wear a collar.
some self bondage - some of my favourite teases on Milovana involved ropes or even chains ;)
Finally - begging NOT to cum - most wicked would be to make slave beg not to cum and afterwards tell him she was going to let him but since he begged so nicely she'll cancel that orgasm... and perhaps the next one too.
Re: [Tease AI] Miss Blue v1.07
Posted: Sat Mar 10, 2018 11:51 am
by dmas964
Hey, tigrotto I know it's lots of work but will be great if you created a script in which Mistress invites (without warning
) your secret crush and tell her everything about you, humiliate you in front of her and allows her dominate you so she leads a session when for example Mistress not have time or she just want humiliate you.
Sorry for my English I hope you understand.
Re: [Tease AI] Miss Blue v1.07
Posted: Sat Mar 10, 2018 5:44 pm
by korminjin
Are you a virgin?
I answered the question incorrectly.
Can not edit it?
And when I lose control and cum or ruin
Can I tell her that?
I was actually ruin in the past.
But there was no way to tell her.
Re: [Tease AI] Miss Blue v1.07
Posted: Sat Mar 10, 2018 6:49 pm
by tigrotto
dmas964 wrote: Sat Mar 10, 2018 11:51 am
Hey, tigrotto I know it's lots of work but will be great if you created a script in which Mistress invites (without warning
) your secret crush and tell her everything about you, humiliate you in front of her and allows her dominate you so she leads a session when for example Mistress not have time or she just want humiliate you.
Sorry for my English I hope you understand.
Hi dmas
It's actually not a bad idea for a script but I can't work on it at the moment.

Yesterday I finished working on
this script(shameless self-promotion, I know...

) but now I want to focus on my personality, so I don't think I'll write other scripts for quite some time.
So, to make up for it, I'll tell you how I would write this script, in case you or someone else want to create it.
Mistress invites your secret crush
- Spoiler: show
Look who is here #SubName!
Secret crush enters the chat
That's what you've always dreamed of, right?
You and name_of_secret_crush in the same room!
It's a shame that she has to see you in this condition!
Naked... <<<you must be naked when you arrive at this point!
Hands on your cock...
Stroking that piece of meat between your legs like a pervert...
hey! hey! hey! What are you doing?
Don't try to hide yourself from her!
Keep your hands off your cock!
Now, stand up. Arms by your side!
Slowly turn around. Let name_of_secret_crush give you a good look
If she liked you the way you like her
What will she think of you now, huh?
Sit down
Luckily you don't have to worry about that #SubName, right name_of_secret_crush?
Right #DomName
What are you saying?
Why do I know name_of_secret_crush? Really, have I never told you?
name_of_secret_crush and I are close friends <<<I don't know if this is in contrast with other script, I've never played with Miss Blue so far
your secret crush explains how your domme and her became friends
When you first showed me the picture of your secret crush I was thinking: "Nooo, it can't be her! I have to tell her everything about him"
And that's what I did!
Thanks to #DomName's daily reports I know what a submissive slave you are!
I know that you like to be told when and how to stroke
To be denied
To be forced to eat your own cum <<<this line should display only if you actually eat your cum
Well, I must say that it's a bit gross... <<<this line should display only if you actually eat your cum
And that's not all name_of_secret_crush:
Can you believe that he asked me to control when he can cum<<<only if you've asked her to control your orgasms
And now he's currently been denied<<<I know there's a long denial script. I don't know how it works but this line should be displayed only if you're in long denial
...other things here...
...other things here...
You've told me he will obey to every your command is that true?
Yes. Let me show you
#SubName edge for name_of_secret_crush @Edge(NoHold)
Wow that's really Amazing
Can I make him do this myself?
Sure!
#SubName edge for me @Edge(NoHold)
#LetTheEdgeFade
Edge again @Edge(NoHold)
I'll leave you alone for a while
#SubName do everything name_of_secret_crush orders you to do
Domme leaves the chat
Domme plays with you <<<edge, edge and hold, CBT...
after some time your Domme returns
Are you havung fun name_of_secret_crush?
Yes. You trained him really well
I didn't have to do much
He craves to obey our orders. It's in his nature
I have to go now #DomName
But I'd like to play again with #SubName if it's possible
Sure name_of_secret_crush. Come whenever you prefer
I'll be more than happy to hand it over to you
He seems to respond quite well to your orders
And he seems to be more obedient than usual
Probably he's trying to impress you
Since he cannot be with you the way he imagined it
He'll stay with you in the way that you imagined it
I have to leave now #DomName
Bye name_of_secret_crush. I'll call you in a few days, so we can prepare everything for a session only you and #SubName
Do you like the idea?
I love it! I look forward to that day!
Bye!
name_of_secret_crush leaves the chat
End of the script
This is just a first idea for when you meet your secret crush; if you want to use it feel free to do it. Fill the gaps, change something...
Then you'd have to create some scripts for when you play with your secret crush: you could write script only with you and your secret crush, a threesome with your domme, maybe also with the three Glitter and your crush(one of the Glitter could explain that your Domme lets her friends play with you. To the eyes of your crush you would be a little slut that everyone can play with...).
If you want to make your Domme humiliate you in front of your crush she could make you wear lingerie, write things with a marker on your body, edge multiple times and ruin after the last edge. Then eat your ruined orgasm...
Use your imagination and I'm sure you'll come up with a good script!
EDIT: If you need ideas for your Domme to humiliate you
read here.
Re: [Tease AI] Miss Blue v1.07
Posted: Sun Mar 11, 2018 5:04 pm
by smargerbarg
every time I start a session with Mistress, she says "It's been far too long since I last saw you, I can barely remember our last session, actually..." even if it was only a day. and then she will say I reset my orgasm chances. can anyone offer some help?
Re: [Tease AI] Miss Blue v1.07
Posted: Tue Mar 27, 2018 8:33 pm
by Asteroth
I've found a bug in
pvIn_WantAnalDildo.txt
Line 214
#EmoteMoan
I want you to stroke to the edge now as you keep fucking ourself @EdgeNoHold
#LetTheEdgeFade
The problem is missing condition check to ensure sub is not locked up in chastity, but checking for it when trying to report an edge. So even if you manage to edge from anal, she won't acknowledge it leading to a lock that can only be stopped with the safeword.
EDIT:
Please make it possible to simply do anal while locked up to avoid bothering Miss Blue with constant locking and unlocking ;)