!! Upcoming tease: War On Adamah !!

All about the past, current and future webteases and the art of webteasing in general.
---
Liquidorus
Explorer
Explorer
Posts: 54
Joined: Sun Feb 18, 2018 12:03 pm

Re: !! Upcoming tease: War On Adamah !!

Post by Liquidorus »

I am glad you came back and sent us an update.
Still eager to play this one :w00t: :w00t: :w00t:

Keep up!!!

Liquid
User avatar
Shattered
Experimentor
Experimentor
Posts: 1238
Joined: Fri Jan 11, 2013 6:41 pm
I am a: Switch
Location: United Kingdom

Re: !! Upcoming tease: War On Adamah !!

Post by Shattered »

SacdeBallons wrote: Sun Jun 02, 2019 9:56 pm

3. I am trying to implement a point system, but I am not yet familiar with the works of this in EOS, so this will be the main obstruction for now.
Depending on if you want Eos to remember your scores once you leave the tease, points can be super simple!
Spoiler: show
If you want points to be reset each session just do this -

Init script

VAR points = 0

^^ sets the points to 0 at the start of each tease

Then every time a user gains points, add an EVAL fuction that just says

points++
or if you lose points
points--

if they gain multiple points use eval multiple times.

Then just go If points > 10 for example to make something happen if they have over 10 points.
Just note im not a programmer, this is just what worked for me in making my upcoming tease, so theres doubtless a better way
:lol:
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Shattered wrote: Sun Jun 02, 2019 11:11 pm
SacdeBallons wrote: Sun Jun 02, 2019 9:56 pm

3. I am trying to implement a point system, but I am not yet familiar with the works of this in EOS, so this will be the main obstruction for now.
Depending on if you want Eos to remember your scores once you leave the tease, points can be super simple!
Spoiler: show
If you want points to be reset each session just do this -

Init script

VAR points = 0

^^ sets the points to 0 at the start of each tease

Then every time a user gains points, add an EVAL fuction that just says

points++
or if you lose points
points--

if they gain multiple points use eval multiple times.

Then just go If points > 10 for example to make something happen if they have over 10 points.
Just note im not a programmer, this is just what worked for me in making my upcoming tease, so theres doubtless a better way
:lol:
Yeah, you see that's the thing...
Since it will be a 7 day tease, it would be nice if EOs could remember the score.

There's nothing wrong with that, but not every tease player will have a Milovana profile. It seems (from my understanding, i'm not certain) to only remember your score based off of your profile, it will not remember the non-profile players.

You got any solutions for that? Gladly appreciate it!

P.S: of course i could just let the player remember his own points, but i think this is kind of lazy...
User avatar
Shattered
Experimentor
Experimentor
Posts: 1238
Joined: Fri Jan 11, 2013 6:41 pm
I am a: Switch
Location: United Kingdom

Re: !! Upcoming tease: War On Adamah !!

Post by Shattered »

SacdeBallons wrote: Mon Jun 03, 2019 7:55 pm
Shattered wrote: Sun Jun 02, 2019 11:11 pm
SacdeBallons wrote: Sun Jun 02, 2019 9:56 pm

3. I am trying to implement a point system, but I am not yet familiar with the works of this in EOS, so this will be the main obstruction for now.
Depending on if you want Eos to remember your scores once you leave the tease, points can be super simple!
Spoiler: show
If you want points to be reset each session just do this -

Init script

VAR points = 0

^^ sets the points to 0 at the start of each tease

Then every time a user gains points, add an EVAL fuction that just says

points++
or if you lose points
points--

if they gain multiple points use eval multiple times.

Then just go If points > 10 for example to make something happen if they have over 10 points.
Just note im not a programmer, this is just what worked for me in making my upcoming tease, so theres doubtless a better way
:lol:
Yeah, you see that's the thing...
Since it will be a 7 day tease, it would be nice if EOs could remember the score.

There's nothing wrong with that, but not every tease player will have a Milovana profile. It seems (from my understanding, i'm not certain) to only remember your score based off of your profile, it will not remember the non-profile players.

You got any solutions for that? Gladly appreciate it!

P.S: of course i could just let the player remember his own points, but i think this is kind of lazy...
Spoiler: show

You can use storage for it to remember players with cookies/profiles stored IDK which.

But no, you can't use storage if the user has storage disabled. sucks for my tease as well, but I suppose if you want a consistent score you could have your score variable printed at the end fo the tease, then at the start of the tease you have a place to enter your score to continue with it.
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Shattered wrote: Mon Jun 03, 2019 10:14 pm
SacdeBallons wrote: Mon Jun 03, 2019 7:55 pm
Shattered wrote: Sun Jun 02, 2019 11:11 pm

Depending on if you want Eos to remember your scores once you leave the tease, points can be super simple!
Spoiler: show
If you want points to be reset each session just do this -

Init script

VAR points = 0

^^ sets the points to 0 at the start of each tease

Then every time a user gains points, add an EVAL fuction that just says

points++
or if you lose points
points--

if they gain multiple points use eval multiple times.

Then just go If points > 10 for example to make something happen if they have over 10 points.
Just note im not a programmer, this is just what worked for me in making my upcoming tease, so theres doubtless a better way
:lol:
Yeah, you see that's the thing...
Since it will be a 7 day tease, it would be nice if EOs could remember the score.

There's nothing wrong with that, but not every tease player will have a Milovana profile. It seems (from my understanding, i'm not certain) to only remember your score based off of your profile, it will not remember the non-profile players.

You got any solutions for that? Gladly appreciate it!

P.S: of course i could just let the player remember his own points, but i think this is kind of lazy...
Spoiler: show

You can use storage for it to remember players with cookies/profiles stored IDK which.

But no, you can't use storage if the user has storage disabled. sucks for my tease as well, but I suppose if you want a consistent score you could have your score variable printed at the end fo the tease, then at the start of the tease you have a place to enter your score to continue with it.
Alright that's interesting. Will work on the score then!
Thanks for the help man!
Mr3if
Explorer
Explorer
Posts: 6
Joined: Sat Jun 08, 2019 9:00 am
Gender: Male
Sexual Orientation: Straight
I am a: None of the above

Re: !! Upcoming tease: War On Adamah !!

Post by Mr3if »

Quietly lurking, keepin' watch, noticing been a couple weeks since last talked about... SO.... How are you progressing with your masterpiece honourable tease creator? ;P
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Hey guys,

I am happy to hear that you guys are still waiting in anticipation :)
Do not worry! I am still working on the tease!
However, I've got vacation coming up, meaning that I won't be working on the tease for the foreseeable future...
I hope it satisfies you guys to know that I am close to 3/4 done.

I am trying to make the tease actually do-able, meaning that I am playing different paths myself a lot... trying to tweak it on certain aspects...
It is still coming, but A LOT LOT later than I was expecting (like that's not clear already hahaha)
Anyway, I think I will be capable to finish it before the end of August!

As always, thank you for the patience! :-D

Best,
Sac
Mr3if
Explorer
Explorer
Posts: 6
Joined: Sat Jun 08, 2019 9:00 am
Gender: Male
Sexual Orientation: Straight
I am a: None of the above

Re: !! Upcoming tease: War On Adamah !!

Post by Mr3if »

Hey there again :-P Just wondering how is the outlook for the tease being released at the end of the month? Still the plan or still going to be polishing up the tease? (By all means, polish to perfection :-D ) Hope you're well!

Best wishes!
-Eif
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Mr3if wrote: Fri Aug 16, 2019 11:24 pm Hey there again :-P Just wondering how is the outlook for the tease being released at the end of the month? Still the plan or still going to be polishing up the tease? (By all means, polish to perfection :-D ) Hope you're well!

Best wishes!
-Eif
I am hoping I will release the tease next week!
I am polishing a lot right now, but also trying to spend some more time with friends and family, so won't be doing too much work next week...

However, you can expect it to drop soon ;)

Best,
Sac
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Hey guys, I'm sorry having to announce this, but I will have to postpone it some more time...
You will see my tease online next month :)!
Last edited by SacdeBallons on Sun Sep 15, 2019 12:30 pm, edited 1 time in total.
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Hello everyone,

I am sad that I haven't been able to finish the tease yet...
I was planning to have it done 2 weeks already, but well (as I'm sure you're able to see), it's not on the tease-page yet...

To be truely honest, I haven't been very motivated much recently, but I am almost done!
My schedule is completely filled up for the upcoming time, so I won't be able to work on it much... :-/

Hopefully I can keep you guys excited for just a little longer, cause the project is not dead! :yes:
I will just say that it's ready when it's ready

Best,

Sac
Liquidorus
Explorer
Explorer
Posts: 54
Joined: Sun Feb 18, 2018 12:03 pm

Re: !! Upcoming tease: War On Adamah !!

Post by Liquidorus »

Hey Sac,

hope you can get motivated to finish the tease.
I am still lurking the Forum waiting for the release.

:mbounce: GOGOGO :mbounce:
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Liquidorus wrote: Thu Oct 17, 2019 9:29 pm Hey Sac,

hope you can get motivated to finish the tease.
I am still lurking the Forum waiting for the release.

:mbounce: GOGOGO :mbounce:
Hey Liquidorus,

Yes I'm still working on it! :-D
Sadly don't have as much spare time as I used to have so progress is slow :/

But no worries, you'll see it coming :)
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Dear people,

I am letting you know that, yes, I am (still) working on the tease!
I am making slow but sure progress :)
I will have more time soon, so I will be able to work more on the tease!

I have added some more futures to the tease, perks for instance.
Depending on the choices, you can have different perks. They also are not permanent!!
Let me know what you think of a (small) perk system

Best,
Sac
User avatar
SacdeBallons
Explorer
Explorer
Posts: 22
Joined: Sun Mar 03, 2019 7:32 am
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: !! Upcoming tease: War On Adamah !!

Post by SacdeBallons »

Hello everyone,

I am letting you know that soon I will have more time to spend on finishing the tease!
I have dragged this project on waaaaay too long and will probably release it before this post hits one year :)

Have some more patience, trust me it's worth it.
And I will see you soon,

Best,
Sac
Post Reply

Who is online

Users browsing this forum: No registered users and 60 guests