Page 31 of 83
Re: Offline Teases (TeaseMe)
Posted: Sat Oct 13, 2012 10:29 pm
by kong
Hi I want to create a tease for teaseme.
Is it easier to create a tease on teaseme instead of using flash? (This is the first time I will try)
Can I make teaseme create a text-file that will write down how much/ how far I have completed? (like CAM (computer aimed masturbation) where you can see at what time/ speed you edge and how much).
(Maybe (if I click on "edge" button it will save every time I clicked on it).
Can I (instead of have to include the movie-file, link to the website (so the teaseme will open the video in the program), (maybe if I "order" teaseme to go to "download a movie file temporary", and then through the program choose from where to start and to stop...
Is there a cataloge on miovana where you can find sound-files?
I will now try to read a little bit of programming for teaseme.
I know that the simple answers to some of these questions are no,,, but there is maybe an alternative way, or it is features for the future updates. XD

Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 12:10 am
by kong
Hmm I can not use a metronome with a sound file ;(
Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 8:01 am
by philo
kong wrote:Hmm I can not use a metronome with a sound file ;(
Try using something liike Audacity to add a click track to the audio file, or request it as an enhancement to teaseme it shouldn't be too dificult to add
Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 2:33 pm
by tommarr
Code: Select all
[url=http://www.mediafire.com/?btw4l1w4uvuye44]Devious[/url] [HD] by 1885 (16.79 MB)[url=http://www.mediafire.com/?t2td24kr4fpyf7r]Devious: Conclusion[/url] [HD] by 1885 (14.09 MB)
Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 7:43 pm
by kong
Hi. This is my first tease-project. For the mom it is just an alpha of the intro.
http://www.mediafire.com/?9o6vvucyrzz9x0n
THIS IS JUST AN ALPHA OF THE INTRO
I wanted to see how the program worked and how to write code. My proj

ect is to write one of the greatest teases ever!
The goal is that the tease will be humoristic and fun, with lots of sound files, and that you can interact with allmost everything
Since this is my first code-writing ever! I am happy if you can take a look on it and if I can improve the little thing I have done so far?.
It is bad if you write a tease and you begin with writing it with a "bad coding language".
For example, when you are looking for the key, I created serveral pages just as the same for making the chance of (getting durty hands) higher,, can I do it in another way?
(hehe through this tease-program I will learn how to code)

Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 8:58 pm
by Venus
That project sounds interesting and I liked the idea of the intro.
You said this is your first code writing ever, then I would recommend that you start with something easier and not with such an mammoth project
For example, when you are looking for the key, I created serveral pages just as the same for making the chance of (getting durty hands) higher,, can I do it in another way?
I don't know if there is a way to do this in TeaseMe in another way, but I'm doing the same when I'm writing nyx scripts.
I looked through your code and I have some feedback for you to improve your writing.
Your code looks very "scattered". Try to write the opening tags and the closing tags into the same column.
Here an example:
- Spoiler: show
Code: Select all
<?xml version="1.0" encoding="utf-8" ?><Tease scriptVersion="v0.1"> <Title>Title</Title> <Description>Description</Description> <Author> <Name>Name</Name> </Author> <MediaDirectory>Directory</MediaDirectory> <Settings> <AutoSetPageWhenSeen>true</AutoSetPageWhenSeen> </Settings> <!-- Begin of Pages --> <Pages> <Page id="start"> <Text> <p>Text</p> </Text> <Image id="Castle.jpg" /> <Audio id="birdsong.mp3" /> <Button target="ports">Next</Button> </Page> </Pages></Tease>
If you want to do this huge project then use good page names. For example the page name "too bad" isn't really good. Better would be something like "keySwallowed". And in xml you have the possibility to comment your code. If the code gets bigger and bigger it might be very useful when you have commented your code.
I hope this helps you

Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 9:40 pm
by kong
Thank you! My codes gets really messy, now I know a way to improve it XD
I wonder what program do you use for writing code?
I used windows-notepad but I could not see what row I was on. Should I try Open Office instead?
about the random code somethink like. 12...14 --- means a random page from 12 to 14,,, 12, 13, 14.
Can I maybe write 12.12.12.13.14 ,,, and get 3/5 chance to get an 12?
Re: Offline Teases (TeaseMe)
Posted: Sun Oct 14, 2012 9:57 pm
by les
Try
Notepad++: a free source code editor which supports several programming languages running under the MS Windows environment.
Click here
Re: Offline Teases (TeaseMe)
Posted: Mon Oct 15, 2012 7:54 am
by janmb
kong wrote:Can I maybe write 12.12.12.13.14 ,,, and get 3/5 chance to get an 12?
I doubt teaseme supports that. What you can do to get around it is to make three identical pages for "12", just write the page once then copy & paste it a couple times and change the page name...
So your random page jump could look like 12a, 12b, 12c, 13, 14, where all the twelves are identical, but still individual pages.
Re: Offline Teases (TeaseMe)
Posted: Mon Oct 15, 2012 8:11 am
by Nezhul
I doubt teaseme supports pages with letters in random. So you basically need to do pages 12..17, where 12, 13, 14, 15 are identical. That's the only way. I doubt 12a 12b would ever work.
Re: Offline Teases (TeaseMe)
Posted: Mon Oct 15, 2012 9:49 am
by janmb
Good point, the random range statement probably needs consecutive numbered pages for sure...
Re: Offline Teases (TeaseMe)
Posted: Mon Oct 15, 2012 4:14 pm
by meson1
Also, another little quirk. It doesn't like leading zeroes.
So the following will not work:
target="page(08..11)"
page08
page09
page10
page11
Instead it must be:
target="page(8..11)"
page8
page9
page10
page11
Looking at the C++ source code, it supposedly supports suffixed pages too, like this:
target="page(8..11)vid"
page8vid
page9vid
page10vid
page11vid
But I haven't tried it out to see if it really works.
Re: Offline Teases (TeaseMe)
Posted: Mon Oct 15, 2012 5:40 pm
by d3vi0n
@kong
No need to copy page12 three times. I would use hidden pages. They are easy to write and invisible to the player. I would also add an initial hidden page for the random target call (makes "balancing" much easier). Look at the following example:
- Spoiler: show
- <!-- Select a random page between page12 and page14 -->
<Page id="selectRandom"><Delay seconds="0" target="random(1..5)" style="hidden" /></Page>
<Page id="random1"><Delay seconds="0" target="page12" style="hidden" /></Page>
<Page id="random2"><Delay seconds="0" target="page12" style="hidden" /></Page>
<Page id="random3"><Delay seconds="0" target="page12" style="hidden" /></Page>
<Page id="random4"><Delay seconds="0" target="page13" style="hidden" /></Page>
<Page id="random5"><Delay seconds="0" target="page14" style="hidden" /></Page>
@tommarr
Great uploads! thx a lot!
And before i forget:
Code: Select all
[url=http://www.mediafire.com/download.php?hdd141ow301omt8]Nightmares Become Reality 4[/url] [HD] by ruinedoh (111 MB)
Re: Offline Teases (TeaseMe)
Posted: Mon Oct 15, 2012 11:33 pm
by Venus
Heres the TeaseMe version of my newest tease. Enjoy!
Code: Select all
[url=http://www.mediafire.com/?zxcpc437ep8e8og]I Control Your Chance To Cum[/url] [HD] by Venus (113 MB)
Re: Offline Teases (TeaseMe)
Posted: Tue Oct 16, 2012 4:27 pm
by janmb
Awesome Venus, I was saving this one in anticipation of a teaseme version - looking forward to it!
And dev... nightmares 5 and 6 are out... *nudge nudge*
(yes, I'm a hopeless, lazy old bugger, but at least I'm honest about it

)