ski23 wrote: Mon Jun 12, 2017 11:58 pm
Anyone know of a good scripting environment for tease ai. I saw one specifically for it but it looks like the download link was removed. Specifically, I'd like to see something where I can search for all calls to a script. For example I could get all calls for (@commandNameHere).
Also, does anyone know how to alter or use the behavior of the domme mood. I know about the @dommehapy neutral and angry moods or whatever but, how does the range play into it that you define. Can you check what number her mood is. For example if I put her mood to 1-10, can/how do I check for her current mood number?
the first one, I just use the windows search inside a folder.
The second, to change the Domme mood you use the commands @MoodUp and @MoodDown, and I think you can put number there now, and there is a specific command to put the level at the min or the max.
And, I am almost sure we have a command to show the mood, but I am not on my PC with TeaseAI right now. Did you tried the command guide inside TeaseAI?
tigrotto wrote: Wed Aug 09, 2017 5:21 pm
My idea is that the domme chooses "Path1" if, at least, X hours have passed since last orgasm(ruined or not), "Path2" if not.
The problem is that there's not a command that can do this and I don't have any variable or flag to help me with this.
There is a command to check time, I think, but I never used. You can use that with a flag to get what you want. Like:
- User orgasm/ruined - @SetFlag(UserOrgasm) and probably something like @SetDate=0 (I am guessing that command here) too.
- When you need to choose the path, something like that:
@Flag(UserOrgasm) @Goto(CheckDate)
@Goto(Path 2)
(CheckDate)
@If Date >10 Then(Path 1)
@If Date <10 Then(Path 2)
I am guessing all the commands about date, I need to check other scripts to know the correct one. I am almost sure Spyci or MissBlue use something like this.
And I just remembered 1885 implemented something like @UpdateOrgasm or @UpdateRuined commands, for when you allow the user to cum/ruin outside the end script. Probably there is a @CheckOrgasm command or something like that.
I can see that later, but you can find some commands here:
https://github.com/TeaseAI/Tease-AI/blo ... /README.md
EDIT:
Just found this on the command guide:
@CheckDate(SYS_LastOrgasm, 1 Month) I love knowing that you haven't cum in over a month #Grin
When specifying time intervals, you may use Seconds, Minutes, Hours, Days, Weeks, Months and Years. Pluralization and capitalization do not matter.
Take a look at the command guide, I think TeaseAI have what you need already.