Feedback - Randomness

All about the past, current and future webteases and the art of webteasing in general.
---
Post Reply
Slaveboy90
Explorer
Explorer
Posts: 90
Joined: Wed Dec 29, 2010 11:09 pm
Gender: Male
Sexual Orientation: Straight
I am a: Slave

Feedback - Randomness

Post by Slaveboy90 »

Hey,

please let me know what you think !
If there are any bugs let me know. And if you like it and want a new part maybe with an other main theme, let me know too :)


may the luck be with you :-)
tBone
Explorer At Heart
Explorer At Heart
Posts: 316
Joined: Thu Oct 29, 2009 1:40 am

Re: Feedback - Randomness

Post by tBone »

The tease itself is cool. The big problem and the reason I suspect the low rating is the picture choice. I could also be horribly wrong, but that's my 2 cents.
MyFreeCams: Great free cam site! Lot of girls who love teasing!

Protip: Use https://mega.co.nz/ for uploads.
Won't need to upload it anywhere else because it doesn't have the shitty restrictions all the others have. Besides emp, some people like seeding there, so keep that.
racefbr1
Explorer
Explorer
Posts: 6
Joined: Sat Apr 02, 2011 7:57 pm

Re: Feedback - Randomness

Post by racefbr1 »

I love the idea behind the tease and the photos I've seen so far I liked too. My problem is it kept freezing up on me at different points in the tease. I had it freeze up and loop on level one with a blonde girl in the photo showing 0 on the timer over and over, and a couple times on level two with two different photos for 30 strokes not doing anything when i clicked on complete one with the black haired kinda emo looking girl and the other was with a blonde in white the "teen models" photo. I will prob try a few more times later and look forward to getting through the whole tease.
User avatar
Haldirkd
Explorer At Heart
Explorer At Heart
Posts: 247
Joined: Sun Aug 13, 2006 12:33 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive
Location: Esbjerg, Denmark

Re: Feedback - Randomness

Post by Haldirkd »

It's a good and fun concept, but it is full of errors where the tease gets stuck, good examples are page 86, 97, 98 and 99. :-)
If you think you might like it, try it.
User avatar
Noah
Experimentor
Experimentor
Posts: 1397
Joined: Tue Jan 29, 2013 11:06 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: Feedback - Randomness

Post by Noah »

Really enjoy the concept, but got stuck after getting sent back to stage 1 as well.. I'll just see this as being denied ;p
Also, the pictures are sometimes focused too much on the cocks instead of the girls, but that's personal taste!

Keep up the good work! Will do it again the moment it's fixed!
Image

Creator of many devious forum games and always up for exchanging personal teases!
Slaveboy90
Explorer
Explorer
Posts: 90
Joined: Wed Dec 29, 2010 11:09 pm
Gender: Male
Sexual Orientation: Straight
I am a: Slave

Re: Feedback - Randomness

Post by Slaveboy90 »

I checked the script and it seems that nyx choose every page just ones. And if you have to go back and you come to a page a second time the timer doesn't work right.
I will try to fix it, just don't know how at the moment ... I will let you know if I can solve it :)
User avatar
green
Explorer At Heart
Explorer At Heart
Posts: 789
Joined: Thu Jul 24, 2008 11:43 pm
Gender: Male
Sexual Orientation: Open to new ideas!
I am a: Switch
Location: Germany

Re: Feedback - Randomness

Post by green »

Slaveboy90 wrote:I checked the script and it seems that nyx choose every page just ones. And if you have to go back and you come to a page a second time the timer doesn't work right.
I will try to fix it, just don't know how at the moment ... I will let you know if I can solve it :)
http://www.milovana.com/forum/viewtopic.php?f=2&t=4355

Check #nr 9. Set and Unset is what you are looking for :-)
You can own the earth and still - All you'll own is earth until
You can paint with all the colors of the wind
Slaveboy90
Explorer
Explorer
Posts: 90
Joined: Wed Dec 29, 2010 11:09 pm
Gender: Male
Sexual Orientation: Straight
I am a: Slave

Re: Feedback - Randomness

Post by Slaveboy90 »

thanks but i dont understand it completly...can i unset more pages at the same time too ?

or do I need to unset it in every single page like this:

Code: Select all

7#page('<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="FontSans" SIZE="18" COLOR="#FFFFFF" LETTERSPACING="0" KERNING="1">No touching</FONT></P></TEXTFORMAT>',pic("5-308.jpg"),mult(unset(#7),delay(10sec, range(6,36,'page'))));
i have tried some different options, but nothing really works
User avatar
lmind
Explorer At Heart
Explorer At Heart
Posts: 341
Joined: Sat Nov 10, 2012 8:15 am
Gender: Male
Sexual Orientation: Straight
I am a: Submissive
Location: California, USA

Re: Feedback - Randomness

Post by lmind »

I wrote a short block of code to handle randomness in Nyx. I don't think it is the most streamlined way of doing randomness, but it works for me. I like it this way for technical reasons that I explain below.

So let's say you want to jump to 1 of 6 random pages, and you also need to be able to loop back and repeat the random jump again later.

First I write the last page that the user sees before the random jump, like I normally would. No special code on this page. No randomness. This page might have text like, "Hmmm, what next..." I direct this page to a page called "jump4000" or something.

Next I write the 6 random landing pages like I normally would. No special code on these pages. In this example, they are titled "g2liz11a", "g2liz11b", "g2liz11c", etc.

Next I create the "jump4000" page and paste this code into the "Script" tab:

Code: Select all

unset(4001#,4002#,4003#,4004#,4005#,4006#),delay(0hrs, range(4001,4006,'page'),style:hidden)
Next I create pages 4001 through 4006 by pasting this code into the "Script" tab:

Code: Select all

4001#page('',delay(0sec, g2liz11a#,style:hidden)); 4002#page('',delay(0sec, g2liz11b#,style:hidden)); 4003#page('',delay(0sec, g2liz11c#,style:hidden)); 4004#page('',delay(0sec, g2liz11d#,style:hidden)); 4005#page('',delay(0sec, g2liz11e#,style:hidden)); 4006#page('',delay(0sec, g2liz11f#,style:hidden));
All of these "code" pages are very simple. They have no text, no picture, no sound, and a 0sec delay that is "hidden."

Never look at jump4000 or pages 4001-4006 in the "Visual" tab of editor. It messes up the code if you do. If you need to edit the code, do it in the "Script" tab.

You don't need to look at the code pages in the "Visual" tab of the editor, however, because they have nothing you'd want to edit. Your story/tease is confined to normal pages that don't have any fancy code on them, so you can review and edit your text and pictures freely. The "jump" page and the numbered random "landing" pages are inserted via the "Script" tab where ever you need randomness. They have 0sec delay and the user does not see them go by.

That is how I accomplish the necessary unsets before random pages, while keeping the story easy to edit. It adds more pages than strictly necessary, but I like it because it's easier to debug and edit. Pages with text or pictures never have any special code on them.

I hope that helps. Good luck!

-lmind
Post Reply

Who is online

Users browsing this forum: Baidu [Spider] and 42 guests