Page 153 of 175
Re: Tease AI General Discussion
Posted: Wed Aug 23, 2017 2:25 am
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.
Re: Tease AI General Discussion
Posted: Thu Aug 24, 2017 3:46 am
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

)
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 .
Re: Tease AI General Discussion
Posted: Thu Aug 24, 2017 7:28 am
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

)
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!

Re: Tease AI General Discussion
Posted: Thu Aug 24, 2017 9:31 am
by Petterwass
Have anyone made a script with anal or spanking in it?
Asking for obvious reasons :)

Re: Tease AI General Discussion
Posted: Thu Aug 24, 2017 10:57 pm
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 :)
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.
Re: Tease AI General Discussion
Posted: Fri Aug 25, 2017 10:44 am
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 :)
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
Re: Tease AI General Discussion
Posted: Tue Aug 29, 2017 4:24 pm
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

)
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!
This was super helpful, exactly what I needed! Works perfectly, thank you!
Hopefully I'll be posting the results of my efforts soon :P
Re: Tease AI General Discussion
Posted: Tue Aug 29, 2017 4:37 pm
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!

Re: Tease AI General Discussion
Posted: Wed Aug 30, 2017 6:08 pm
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?
Re: Tease AI General Discussion
Posted: Wed Aug 30, 2017 6:30 pm
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.
Re: Tease AI General Discussion
Posted: Wed Aug 30, 2017 11:03 pm
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.
Re: Tease AI General Discussion
Posted: Thu Aug 31, 2017 2:15 pm
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?
Re: Tease AI General Discussion
Posted: Thu Aug 31, 2017 8:25 pm
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.
Re: Tease AI General Discussion
Posted: Sat Sep 02, 2017 12:34 am
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.
Re: Tease AI General Discussion
Posted: Sat Sep 02, 2017 1:15 am
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?