Page 1 of 1
Unsetting Randomness
Posted: Wed Mar 17, 2010 8:57 pm
by chat180moderator
Thanks to all the boys that helped me (especially Green) with my last post. I got the ramdon seclection to work in a tease...How do I unset it so that the random function has the option of choosing the same page twice?
Chat180Moderator
Re: Unsetting Randomness
Posted: Wed Mar 17, 2010 9:05 pm
by chat180moderator
What I mean by that, is that I can go to the same page, select "Continue" and have the same 5 options each day...After I go through the pages once, it seems to lock.
Mod
Re: Unsetting Randomness
Posted: Wed Mar 17, 2010 9:28 pm
by chat180moderator
On final question...
When writing the scipt for a random page...Can you alter the text that appears on each page...Instead of "This page appears when selecting #1"...can you insert text. Doing this seems to upset the command. Are there any alternatives?
Chat180moderator
Re: Unsetting Randomness
Posted: Wed Mar 17, 2010 9:56 pm
by seraph0x
Just read the subject as "Unsettling Randomness" and went, "Yeah, randomness can be quite unsettling."
Alright, so to answer your question:
The random function isn't very user friendly. It was originally used internally by our PCM2>FlashTease converter and never meant to be used by humans.
That said, you need to unset() each individual page using a mult() in the hidden: parameter of that page.
If that just sounded like complete Chinese, please just paste the code for the page in question and I'll add the unset commands to it and provide some further explanation.

Re: Unsetting Randomness
Posted: Wed Mar 17, 2010 9:57 pm
by seraph0x
chat180moderator wrote:On final question...
When writing the scipt for a random page...Can you alter the text that appears on each page...Instead of "This page appears when selecting #1"...can you insert text. Doing this seems to upset the command. Are there any alternatives?
Chat180moderator
Sorry, could you clarify the question please?
Re: Unsetting Randomness
Posted: Wed Mar 17, 2010 11:18 pm
by SexualChoc
Perhaps this post will help?
Check on the link:
http://www.milovana.com/forum/viewtopic ... dom#p23162
as All2true I put the actual code of a real tease here so look at the blue box
using this technique you can use random pages in flashtease.
PS edited the link, this one works
Re: Unsetting Randomness
Posted: Thu Mar 18, 2010 11:22 am
by chat180moderator
Ok, here are my questions and the scipt commands below that I am using. Any help would greatly be appreciated by this mistress. And maybe a little suprise for anyone that can solve my problems if you are into what I have to offer...lol
1. Can I change the transition on the start# from "Continue" to "May I Cum." Will the random process still work?
2. Cant I hide or instert text on the start page, instead of "The next page will be randomly generated." I would like to add my own comments here if possible.
2. Can I change the text on each page...Instead of page 2 reading... "This page shows up if range
generated a 2" Can I chage or alter the text in any way to be able to give commands to my subby in the text box and still have the ramdomness work.
3. How do I undo each page so that it has the abiliby of randomly appearing more than once. Exmple: My subby might have to report to this tease every day for a weak, and ask "May I Cum". I want him to use the same tease and have the same random chance each time...say 1 in 5. So I need him to be able to have the chance of randomly selecting the tease page# that says yes every day.
Thanks so much guys...I am learning slowly, but love Milovana!
start#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">The next page will be randomly selected</FONT></P></TEXTFORMAT>',
pic("venice06.jpg"),
go(range(2,6,'page'))
);
2#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">This page shows up if range generated a 2</FONT></P></TEXTFORMAT>',
pic("venice01.jpg")
);
3#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">This page shows up if range generated a 3</FONT></P></TEXTFORMAT>',
pic("venice02.jpg")
);
4#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">This page shows up if range generated a 4</FONT></P></TEXTFORMAT>',
pic("venice03.jpg")
);
5#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">This page shows up if range generated a 5</FONT></P></TEXTFORMAT>',
pic("venice04.jpg")
);
6#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">This page shows up if range generated a 6</FONT></P></TEXTFORMAT>',
pic("venice05.jpg")
);
Re: Unsetting Randomness
Posted: Thu Mar 18, 2010 3:59 pm
by green
Hello again :).
Sorry for the late reply.
1. Can I change the transition on the start# from "Continue" to "May I Cum." Will the random process still work?
I can think of a little workaround to achieve that.
Replace this:
Code: Select all
start#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">The next page will be randomly selected</FONT></P></TEXTFORMAT>',
pic("venice06.jpg"),
go(range(2,6,'page'))
);
With this:
Code: Select all
start#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Your Own Text here</FONT></P></TEXTFORMAT>',
pic("venice06.jpg"),
buttons(rnd#, "May I Cum ?")
);
rnd#page('',,
vert(buttons(rnd#, "Button1"),delay(0sec, range(2,6,'page'),style:hidden))
);
2. Cant I hide or instert text on the start page, instead of "The next page will be randomly generated." I would like to add my own comments here if possible.
Take a look at the version i posted for question 1, Just add your Text where it says "Your Own Text here".
2. Can I change the text on each page...Instead of page 2 reading... "This page shows up if range
generated a 2" Can I chage or alter the text in any way to be able to give commands to my subby in the text box and still have the ramdomness work.
Sure, just change The text, you do that by just changing "This page shows up if range generated a..." to whatever you want it to say.
3. How do I undo each page so that it has the abiliby of randomly appearing more than once. Exmple: My subby might have to report to this tease every day for a weak, and ask "May I Cum". I want him to use the same tease and have the same random chance each time...say 1 in 5. So I need him to be able to have the chance of randomly selecting the tease page# that says yes every day.
Thanks so much guys...I am learning slowly, but love Milovana!
You just need to reload the tease for that, so if your subby opens the tease each day, there will be chances for any number to be generated, so that wont be a problem ;)
~green
Re: Unsetting Randomness
Posted: Thu Mar 18, 2010 8:22 pm
by chat180moderator
Thanks Green! So, if I understand correctly, once I publish it, I will be allowed to reload it. Right? Currently, when I preview the tease, it only allows me to randomly select each page once...Then it goes nowhere except the blank page.
XOXO
Re: Unsetting Randomness
Posted: Thu Mar 18, 2010 9:18 pm
by green
chat180moderator wrote:Thanks Green! So, if I understand correctly, once I publish it, I will be allowed to reload it. Right? Currently, when I preview the tease, it only allows me to randomly select each page once...Then it goes nowhere except the blank page.
XOXO
Yup, as if you would reload the NYX editor ;).
Re: Unsetting Randomness
Posted: Fri Mar 26, 2010 8:38 am
by chat180moderator
Hey...
Everything is perfect...Thanks to everyone that has helped me.
Just wondering if there is any wany to loop each page back to start#. For instance, if Subbie asks, "May I Cum" and page #3 is selected, how can I add a button that loops him back to the start# page so that he may ask again without resetting the page.
I have tried simply adding a "continue button" but I cannot get it to work.
This is the script base that I am using...
start#page(
'<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="0">Your Own Text here</FONT></P></TEXTFORMAT>',
pic("venice06.jpg"),
buttons(rnd#, "May I Cum ?")
);
rnd#page('',,
vert(buttons(rnd#, "Button1"),delay(0sec, range(2,5,'page'),style:hidden))
);
1#page('This page shows up if range generated a 1',
pic("yourpic.jpg")
);
2#page('This page shows up if range generated a 2',
pic("yourpic.jpg")
);
3#page('This page shows up if range generated a 3',
pic("yourpic.jpg")
);
4#page('This page shows up if range generated a 4',
pic("yourpic.jpg")
);
5#page('This page shows up if range generated a 5',
pic("yourpic.jpg")
);
Re: Unsetting Randomness
Posted: Fri Mar 26, 2010 8:46 am
by chat180moderator
Got it to work!
Take Care To All