Tease AI General Discussion

Webteases are great, but what if you're in the mood for a slightly more immersive experience? Chat about Tease AI and other offline tease software.

Moderator: 1885

User avatar
avatarbr
Experimentor
Experimentor
Posts: 1239
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: Tease AI General Discussion

Post by avatarbr »

Shattered wrote: Tue Aug 22, 2017 10:46 pm
avatarbr wrote: Tue Aug 22, 2017 10:37 pm
Shattered wrote: Tue Aug 22, 2017 6:07 pm Hey, I got this when trying to start a personality and don't know exactly what to do about it?

http://imgur.com/a/yNXGu

Additionally I've got the message "Hi Vocab Error: SYS_MissingHonorific" a few times, which seems out of place.
What Personality are you using?

Check inside the Apps/Glitter folder of the personality (not sure if this is the correct path) and see if there are any .txt files inside the sub folders. I think you need at least one for every category you selected on the settings menu.

Could be a specific file called from a script (should be in the scripts folder), and the file it's not there.

The second problem, I think 1885 implemented that vocabulary later. You can search in other personalities for this file, and just make a copy inside the same folder of the personality you are using. I think you can avoid that by simply unchecking the requirement to use honorific when talking to the domme in the settings.
I'm using Spicy 3.02, and those folders appear empty.
You can extract this file in the Apps folder of Spicy. I think there are almost every glitter chat created from milovana users.

If you still get a error, check the file runing on spicy (type @) and you can check if that script is calling a specific glitter chat.
Glitter.zip
(97.99 KiB) Downloaded 101 times
Mochrion
Explorer
Explorer
Posts: 64
Joined: Fri Aug 10, 2012 4:49 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Canada

Re: Tease AI General Discussion

Post by Mochrion »

Daragorn wrote: Tue Aug 22, 2017 12:42 pm
Mochrion wrote: Tue Aug 22, 2017 3:32 am Amazing program, thanks for all the hard work.

On the edge of my seat for the next update - I'm really hoping to be able to choose random number between two variables, i.e.

@SetVar[a]=[#random(b,c)]

Cheers!
not completely sure but i think you can already do it (better use a testscript to be sure it works, though, i don't remember if i've implemented it or not :lol: )

The syntax should be, though:
@SetVar[a]=[#random(@ShowVar[c],@ShowVar[d])]
I gave it a go:

@SetVar[a]=[#Random(@ShowVar[c],@ShowVar[d])]

c = 10, d = 20

But after running that line, a = 0 .
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 564
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI General Discussion

Post by tigrotto »

Mochrion wrote: Thu Aug 24, 2017 3:46 am
Daragorn wrote: Tue Aug 22, 2017 12:42 pm
Mochrion wrote: Tue Aug 22, 2017 3:32 am Amazing program, thanks for all the hard work.

On the edge of my seat for the next update - I'm really hoping to be able to choose random number between two variables, i.e.

@SetVar[a]=[#random(b,c)]

Cheers!
not completely sure but i think you can already do it (better use a testscript to be sure it works, though, i don't remember if i've implemented it or not :lol: )

The syntax should be, though:
@SetVar[a]=[#random(@ShowVar[c],@ShowVar[d])]
I gave it a go:

@SetVar[a]=[#Random(@ShowVar[c],@ShowVar[d])]

c = 10, d = 20

But after running that line, a = 0 .
Try this. I used it in my scripts and it works(I'm using patch 55.0)

@NullResponse @RapidCodeOn
@NullResponse @SetVar[c]=[10]
@NullResponse @SetVar[d]=[20]
@NullResponse @SetVar[e]=[#Random(#Var[c], #Var[d])]
@NullResponse @RapidCodeOff

c=@ShowVar[c]
d=@ShowVar[d]
e=@ShowVar[e]

e will be a random number between c and d. I just tried it a couple of time to be sure and it works...

If you want it to be more random try this:

@NullResponse @RapidCodeOn
@NullResponse @SetVar[c]=[#Random(5,10)]
@NullResponse @SetVar[d]=[#Random(15,20)]
@NullResponse @SetVar[e]=[#Random(#Var[c], #Var[d])]
@NullResponse @RapidCodeOff

c=@ShowVar[c]
d=@ShowVar[d]
e=@ShowVar[e]

This way you will have a random number between c and d which are random too.
I hope I've been helpful.

Bye! :wave:
Petterwass
Explorer
Explorer
Posts: 10
Joined: Wed Nov 14, 2012 4:23 pm
Gender: Male
Sexual Orientation: Open to new ideas!
I am a: Slave
Location: Sweden

Re: Tease AI General Discussion

Post by Petterwass »

Have anyone made a script with anal or spanking in it?
Asking for obvious reasons :) :w00t:
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1239
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: Tease AI General Discussion

Post by avatarbr »

Petterwass wrote: Thu Aug 24, 2017 9:31 am Have anyone made a script with anal or spanking in it?
Asking for obvious reasons :) :w00t:
House of Tease and Miss Blue have (and other things). You will need to ask or answer something at some point to get it.
I am almost sure Spicy have too.
Petterwass
Explorer
Explorer
Posts: 10
Joined: Wed Nov 14, 2012 4:23 pm
Gender: Male
Sexual Orientation: Open to new ideas!
I am a: Slave
Location: Sweden

Re: Tease AI General Discussion

Post by Petterwass »

avatarbr wrote: Thu Aug 24, 2017 10:57 pm
Petterwass wrote: Thu Aug 24, 2017 9:31 am Have anyone made a script with anal or spanking in it?
Asking for obvious reasons :) :w00t:
House of Tease and Miss Blue have (and other things). You will need to ask or answer something at some point to get it.
I am almost sure Spicy have too.
Exellent. Thank you. I'll download those are try them out
Mochrion
Explorer
Explorer
Posts: 64
Joined: Fri Aug 10, 2012 4:49 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Canada

Re: Tease AI General Discussion

Post by Mochrion »

tigrotto wrote: Thu Aug 24, 2017 7:28 am
Mochrion wrote: Thu Aug 24, 2017 3:46 am
Daragorn wrote: Tue Aug 22, 2017 12:42 pm

not completely sure but i think you can already do it (better use a testscript to be sure it works, though, i don't remember if i've implemented it or not :lol: )

The syntax should be, though:
@SetVar[a]=[#random(@ShowVar[c],@ShowVar[d])]
I gave it a go:

@SetVar[a]=[#Random(@ShowVar[c],@ShowVar[d])]

c = 10, d = 20

But after running that line, a = 0 .
Try this. I used it in my scripts and it works(I'm using patch 55.0)

@NullResponse @RapidCodeOn
@NullResponse @SetVar[c]=[10]
@NullResponse @SetVar[d]=[20]
@NullResponse @SetVar[e]=[#Random(#Var[c], #Var[d])]
@NullResponse @RapidCodeOff

c=@ShowVar[c]
d=@ShowVar[d]
e=@ShowVar[e]

e will be a random number between c and d. I just tried it a couple of time to be sure and it works...

If you want it to be more random try this:

@NullResponse @RapidCodeOn
@NullResponse @SetVar[c]=[#Random(5,10)]
@NullResponse @SetVar[d]=[#Random(15,20)]
@NullResponse @SetVar[e]=[#Random(#Var[c], #Var[d])]
@NullResponse @RapidCodeOff

c=@ShowVar[c]
d=@ShowVar[d]
e=@ShowVar[e]

This way you will have a random number between c and d which are random too.
I hope I've been helpful.

Bye! :wave:
This was super helpful, exactly what I needed! Works perfectly, thank you!

Hopefully I'll be posting the results of my efforts soon :P
User avatar
tigrotto
Explorer At Heart
Explorer At Heart
Posts: 564
Joined: Sat Jul 15, 2017 5:13 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI General Discussion

Post by tigrotto »

Mochrion wrote: Tue Aug 29, 2017 4:24 pm This was super helpful, exactly what I needed! Works perfectly, thank you!

Hopefully I'll be posting the results of my efforts soon :P
You're welcome!
Looking forward to see your work.

Bye! :wave:
Mochrion
Explorer
Explorer
Posts: 64
Joined: Fri Aug 10, 2012 4:49 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch
Location: Canada

Re: Tease AI General Discussion

Post by Mochrion »

One more question...

I'm trying to setup a simple AI with a single, start, link, module, and end.

The one thing I can't figure out is how to prevent it from going to "end". I would like it to loop the single link and single module indefinitely until I tell it in script to go to end.

I tried setting the tease length minimum and maximum to "999", but for some reason after the module completes it still sometimes goes to the end script.

Anyone have any ideas what I'm missing?
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1239
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: Tease AI General Discussion

Post by avatarbr »

Mochrion wrote: Wed Aug 30, 2017 6:08 pm One more question...

I'm trying to setup a simple AI with a single, start, link, module, and end.

The one thing I can't figure out is how to prevent it from going to "end". I would like it to loop the single link and single module indefinitely until I tell it in script to go to end.

I tried setting the tease length minimum and maximum to "999", but for some reason after the module completes it still sometimes goes to the end script.

Anyone have any ideas what I'm missing?
I don't know why TeaseAI is not respecting the time range, but you can use a @Call(LinkFilePath) at the end of the module, since a session will end only after a Module, not a Link.
oldpencildick
Curious Newbie
Curious Newbie
Posts: 3
Joined: Wed Aug 30, 2017 3:28 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: Tease AI General Discussion

Post by oldpencildick »

i was wondering if its possible to add new image folders or if its something un-available to do myself because i want to add a feet and pussy folder as well as an ebony and asian.
slut2122
Explorer
Explorer
Posts: 8
Joined: Wed Feb 15, 2012 6:20 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI General Discussion

Post by slut2122 »

Hi. it will probably sound stupid after all that tech talk but i have problem on installation that i cant figure out.
It says an error had occurred and it could not find a part of the path 'C:\Users\myuser\Desktop\Newfolder\Images\Session images'.
can anyone help me with it?
User avatar
avatarbr
Experimentor
Experimentor
Posts: 1239
Joined: Fri Aug 18, 2006 3:33 am
Gender: Male
Sexual Orientation: Straight

Re: Tease AI General Discussion

Post by avatarbr »

oldpencildick wrote: Wed Aug 30, 2017 11:03 pm i was wondering if its possible to add new image folders or if its something un-available to do myself because i want to add a feet and pussy folder as well as an ebony and asian.
In the tag tab on the setting menu, there are some categories where you can just select a folder. If the categorie you want don't exist, you can use the tags and select all the images in the folder. If the tag don't exist, you can use a uncommon tag.

slut2122 wrote: Thu Aug 31, 2017 2:15 pm Hi. it will probably sound stupid after all that tech talk but i have problem on installation that i cant figure out.
It says an error had occurred and it could not find a part of the path 'C:\Users\myuser\Desktop\Newfolder\Images\Session images'.
can anyone help me with it?
Did you downloaded at least 1 personality? I think I got that error when I tried to create a test personality and opened TeaseAI before copying files inside the personality folder.
slut2122
Explorer
Explorer
Posts: 8
Joined: Wed Feb 15, 2012 6:20 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: Tease AI General Discussion

Post by slut2122 »

avatarbr wrote: Thu Aug 31, 2017 8:25 pm
oldpencildick wrote: Wed Aug 30, 2017 11:03 pm i was wondering if its possible to add new image folders or if its something un-available to do myself because i want to add a feet and pussy folder as well as an ebony and asian.
In the tag tab on the setting menu, there are some categories where you can just select a folder. If the categorie you want don't exist, you can use the tags and select all the images in the folder. If the tag don't exist, you can use a uncommon tag.

slut2122 wrote: Thu Aug 31, 2017 2:15 pm Hi. it will probably sound stupid after all that tech talk but i have problem on installation that i cant figure out.
It says an error had occurred and it could not find a part of the path 'C:\Users\myuser\Desktop\Newfolder\Images\Session images'.
can anyone help me with it?
Did you downloaded at least 1 personality? I think I got that error when I tried to create a test personality and opened TeaseAI before copying files inside the personality folder.
Sorry for the delay but it worked and i couldnt disconnect from it till now. AMAZING work! super awesome
but now i have some problem at loading images during session. it says error loading image. i have downloaded pics frm google and made a file of a couple of them and used the file in local images. i think the problem is around there couse url and tumblr works fine.
oldpencildick
Curious Newbie
Curious Newbie
Posts: 3
Joined: Wed Aug 30, 2017 3:28 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: Tease AI General Discussion

Post by oldpencildick »

avatarbr wrote: Thu Aug 31, 2017 8:25 pm
oldpencildick wrote: Wed Aug 30, 2017 11:03 pm i was wondering if its possible to add new image folders or if its something un-available to do myself because i want to add a feet and pussy folder as well as an ebony and asian.
In the tag tab on the setting menu, there are some categories where you can just select a folder. If the categorie you want don't exist, you can use the tags and select all the images in the folder. If the tag don't exist, you can use a uncommon tag.


can you have folders in the categories like you can in a domme folder then?
Post Reply