can you guys just put out a complete download, that I just have to unzip and start? :/
Spicy [Tease-AI] [Old thread]
Moderator: 1885
-
mangoman
- Explorer At Heart

- Posts: 355
- Joined: Tue Apr 27, 2010 9:12 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Slave
- Location: Krakosia
- Contact:
Re: [TEASE-AI - Personality] Spicy 3.00
I don't get how to set up Spicy at all.. nor pictures, videos and other stuff.. is there a guide out there that I've overlooked? I got it all downloaded but no idea what to do, even though I'm pretty good with computer stuff. 
can you guys just put out a complete download, that I just have to unzip and start? :/
can you guys just put out a complete download, that I just have to unzip and start? :/
- marspank
- Explorer At Heart

- Posts: 840
- Joined: Mon Sep 19, 2011 12:11 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: East Coast US
Re: [TEASE-AI - Personality] Spicy 3.00
In ChoreBase.txt, when checking how long it has been since you cleaned the bathroom, you have
@Variable[#DateDifference(BathroomSpecial,Days)]>=[7]
It should be
@Variable[#DateDifference(BathroomWash,Days)]>=[7]
In FirstChoreRun you set KitchenWash and KitchenSpecial as dates (no KitchenVacuum), and the same for Bathroom.
You then use the same variable name for the amount of time it takes to clean the sink/fridage (or toilet/shower).
Edit: Another suggestion is to set some of the dates to the past instead of all 0 so that you might actually run some of the cleaning chores before one week has passed.
@Variable[#DateDifference(BathroomSpecial,Days)]>=[7]
It should be
@Variable[#DateDifference(BathroomWash,Days)]>=[7]
In FirstChoreRun you set KitchenWash and KitchenSpecial as dates (no KitchenVacuum), and the same for Bathroom.
You then use the same variable name for the amount of time it takes to clean the sink/fridage (or toilet/shower).
Edit: Another suggestion is to set some of the dates to the past instead of all 0 so that you might actually run some of the cleaning chores before one week has passed.
Datta. Dayadhvam. Damyata.
- marspank
- Explorer At Heart

- Posts: 840
- Joined: Mon Sep 19, 2011 12:11 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: East Coast US
Re: [TEASE-AI - Personality] Spicy 3.00
Also in the room cleaning tasks, I don't see anywhere where you are told which room you are meant to be cleaning, and in all of the scripts for each room, you have "first time cleaning room 1" instead of the correct room number.
Datta. Dayadhvam. Damyata.
- marspank
- Explorer At Heart

- Posts: 840
- Joined: Mon Sep 19, 2011 12:11 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: East Coast US
Re: [TEASE-AI - Personality] Spicy 3.00
For the shop, you added the x) Return as an option, but didn't put any code into it in the file we received. 
You should also have @ShowImage[\GNMImages\Shop\Shop.jpg] on the line with the return option.
You should also have @ShowImage[\GNMImages\Shop\Shop.jpg] on the line with the return option.
Datta. Dayadhvam. Damyata.
- marspank
- Explorer At Heart

- Posts: 840
- Joined: Mon Sep 19, 2011 12:11 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
- Location: East Coast US
Re: [TEASE-AI - Personality] Spicy 3.00
For the settings menus, it really doesn't like x as an answer to the question (this is a Tease AI thing I am guessing), so for the x values, you should also make return a viable option.
Datta. Dayadhvam. Damyata.
-
mangoman
- Explorer At Heart

- Posts: 355
- Joined: Tue Apr 27, 2010 9:12 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Slave
- Location: Krakosia
- Contact:
Re: [TEASE-AI - Personality] Spicy 3.00
how do I even get the module to start? 
-
Daragorn
- Explorer At Heart

- Posts: 587
- Joined: Fri Nov 06, 2015 1:16 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
Re: [TEASE-AI - Personality] Spicy 3.00
Lots of missing vocabs still :D
#GNMHoldTheEdge
#Hot
#HolyShit
#Imagine
cinemastroke:
line32 and 216:
@NullResponse @ChangeVar[CardsChosen]=[CardsChosen]+[1] @If[CardsChosen]>=[12]Then(Guess) @Goto
need to be
@NullResponse @ChangeVar[CardsChosen]=[CardsChosen]+[1] @If[CardsChosen]>[12]Then(Guess) @Goto
lines401-402-404:
@Variable[CardChosen]=[CardValue] @SystemMessage <Font color="green">Correct!</Font> #DT @ChangeVar[Right]=[Right]+[1] @If[Right]>=[7]Then(Reward) @Wait(5) @Goto(Setup)
@Variable[CardChosen]<>[CardValue] @SystemMessage <Font color="red">Incorrect!</Font> #DT @ChangeVar[Wrong]=[Wrong]+[1] @If[Wrong]>=[7]Then(Punish) @Wait(5) @Goto(Setup)
(Failed)
@Variable[CardChosen]<>[CardValue] @SystemMessage <Font color="red">Too slow</Font> #DT @ChangeVar[Wrong]=[Wrong]+[1] @If[Wrong]>=[7]Then(Punish) @Wait(5) @Goto(Setup)
same as before, the @If[] checks need to be > and not >=
Moreover, here the Then(Punish) is wrong, it should be Then(Wrong)
Because the if is calculated before the changevar if it is on the same line (i told you about this via pm....commands are not executed in order on a line, the order has no meaning....if you want to be sure of having things happening in a specific order, then you have to split it in two lines)
cr/end/chastitytraining/exercisecheck:
lines46 to 51:
you need to remove the @Goto(End), you don't need it and it actually creates an infinite loop
#GNMHoldTheEdge
#Hot
#HolyShit
#Imagine
cinemastroke:
line32 and 216:
@NullResponse @ChangeVar[CardsChosen]=[CardsChosen]+[1] @If[CardsChosen]>=[12]Then(Guess) @Goto
need to be
@NullResponse @ChangeVar[CardsChosen]=[CardsChosen]+[1] @If[CardsChosen]>[12]Then(Guess) @Goto
lines401-402-404:
@Variable[CardChosen]=[CardValue] @SystemMessage <Font color="green">Correct!</Font> #DT @ChangeVar[Right]=[Right]+[1] @If[Right]>=[7]Then(Reward) @Wait(5) @Goto(Setup)
@Variable[CardChosen]<>[CardValue] @SystemMessage <Font color="red">Incorrect!</Font> #DT @ChangeVar[Wrong]=[Wrong]+[1] @If[Wrong]>=[7]Then(Punish) @Wait(5) @Goto(Setup)
(Failed)
@Variable[CardChosen]<>[CardValue] @SystemMessage <Font color="red">Too slow</Font> #DT @ChangeVar[Wrong]=[Wrong]+[1] @If[Wrong]>=[7]Then(Punish) @Wait(5) @Goto(Setup)
same as before, the @If[] checks need to be > and not >=
Moreover, here the Then(Punish) is wrong, it should be Then(Wrong)
Because the if is calculated before the changevar if it is on the same line (i told you about this via pm....commands are not executed in order on a line, the order has no meaning....if you want to be sure of having things happening in a specific order, then you have to split it in two lines)
cr/end/chastitytraining/exercisecheck:
lines46 to 51:
you need to remove the @Goto(End), you don't need it and it actually creates an infinite loop
Last edited by Daragorn on Mon May 08, 2017 12:01 am, edited 3 times in total.
-
Daragorn
- Explorer At Heart

- Posts: 587
- Joined: Fri Nov 06, 2015 1:16 pm
- Gender: Male
- Sexual Orientation: Straight
- I am a: Submissive
Re: [TEASE-AI - Personality] Spicy 3.00
yes, it is a teaseAI problem (honestly one i don't get why it doesn't work...it seems to be doing it just with the x...but code wise it makes no sense :D)marspank wrote: Sun May 07, 2017 11:07 pm For the settings menus, it really doesn't like x as an answer to the question (this is a Tease AI thing I am guessing), so for the x values, you should also make return a viable option.
i told him that he had to change all the x to return/back or something like that, but it seems it was lost in the ocean of bugfixes he had to do
-
Gormur
- Explorer At Heart

- Posts: 112
- Joined: Sat Apr 09, 2016 2:24 am
- Gender: Male
- Sexual Orientation: Straight
- I am a: Switch
- Location: Iceland
Re: [TEASE-AI - Personality] Spicy 3.00
Do you guys recommend using text to speech "Microsoft Zira" for example?
Any other settings you remember that is really a must to change?
I already did that tease length that was required and I manually put Domme image directory in general on the Charlotte folder (guessing that is right)
Sorry really new to TeaseAI
p.s. Do I have to manually myself setup all the glitter profiles and assign each local image folder of the script?
Any other settings you remember that is really a must to change?
I already did that tease length that was required and I manually put Domme image directory in general on the Charlotte folder (guessing that is right)
Sorry really new to TeaseAI
p.s. Do I have to manually myself setup all the glitter profiles and assign each local image folder of the script?
Last edited by Gormur on Mon May 08, 2017 1:59 am, edited 1 time in total.
Re: [TEASE-AI - Personality] Spicy 3.00
Was in the middle of setting up for the first time, it glitched. ( Can't remember why.)
Now I'm stuck waiting for it to launch, for like 10 mins.
Now I'm stuck waiting for it to launch, for like 10 mins.
-
mandas_whack
- Explorer

- Posts: 22
- Joined: Wed Feb 04, 2009 1:55 am
Re: [TEASE-AI - Personality] Spicy 3.00
I had this problem as well. (I extracted the GNMSounds.rar to /GNMSounds/, so the sounds were in a sub folder on accident - which caused a crash).Oruz wrote: Mon May 08, 2017 1:25 am Was in the middle of setting up for the first time, it glitched. ( Can't remember why.)
Now I'm stuck waiting for it to launch, for like 10 mins.
I'd assume the issue is that it sets a flag that says you've started your first time, so it tries to jump into a later script. So you could delete the flag if you knew what it was, but it doesn't seem to break anything to just delete the Spicy folder and re-extract (you can't just copy the files over your screwed-up version. I tried that, lol)
Last edited by mandas_whack on Mon May 08, 2017 7:12 am, edited 2 times in total.
-
mandas_whack
- Explorer

- Posts: 22
- Joined: Wed Feb 04, 2009 1:55 am
Re: [TEASE-AI - Personality] Spicy 3.00
I personally like to use a TTS voice. It won't be perfect at all since the scripts aren't really written to be compatible with voices, but it's a fun touch when the Domme "says" my name. If you're rich or have a source and you can get the "IVONA Salli" voice, it's pretty close to realistic. "NeoSpeech Julie" is a pretty good one too. "NeoSpeech Kate" will also do in a pinch. Although, setting up TTS can make you want to pull your hair out sometimes. It definitely helps to have the dictionary editor open too, so you can correct words that come out wrong... Okay, enough nerding out about TTS...Gormur wrote: Mon May 08, 2017 1:10 am Do you guys recommend using text to speech "Microsoft Zira" for example?
...
p.s. Do I have to manually myself setup all the glitter profiles and assign each local image folder of the script?
I believe you will have to set up glitter contacts and point them towards a folder, especially if you want to use the packs provided (otherwise you could probably just use defaults and find a pic or two for them.) I'm not far enough in to see how much Glitter affects the script, but how could it hurt?
Re: [TEASE-AI - Personality] Spicy 3.00
I had this problem too. The system responds with "1, 2, 3, ...., or x?" As it turns out, imputing "x?" will activate the return function. It seems that TeaseAI only recognizes the full string for letters/words, and punctuation is included.marspank wrote: Sun May 07, 2017 11:07 pm For the settings menus, it really doesn't like x as an answer to the question (this is a Tease AI thing I am guessing), so for the x values, you should also make return a viable option.
In short: To return, input "x?" and not "x".
-
mandas_whack
- Explorer

- Posts: 22
- Joined: Wed Feb 04, 2009 1:55 am
Re: [TEASE-AI - Personality] Spicy 3.00
In ..\Scripts\Spicy 3.00\CR\BackgroundMode\Shop\ - I made a copy of Shop.txt and renamed it ShopBase.txt (Some script called for one of these and others seem to call for the other)
Last edited by mandas_whack on Tue May 09, 2017 11:49 am, edited 1 time in total.
-
korminjin
- Explorer

- Posts: 25
- Joined: Thu Nov 12, 2015 7:10 am
- Gender: Male
- Sexual Orientation: Open to new ideas!
- I am a: Slave
Re: [TEASE-AI - Personality] Spicy 3.00
Hello
I do not speak English well.
I saw the # DT4 error.
I saw a reply tag problem.
How to solve it?
Should I randomly tag all images one by one?
Or are there predefined tags?
I missed it?
I am trying to solve it all day
Using Google Translator
I do not speak English well.
I saw the # DT4 error.
I saw a reply tag problem.
How to solve it?
Should I randomly tag all images one by one?
Or are there predefined tags?
I missed it?
I am trying to solve it all day
Using Google Translator
- Spoiler: show

