Back again
The chastity script is turning out to be quite a bit bigger and more complex than I thought. I decided to skip the bare bones version and just go straight for the full size/comprehensive version.
A few (more) questions though:
How do I create a pull down list menu like the one on the primary page of the Jewell Script, and is it relatively easy to use one of those or do you need really good coding skills to use one in a script?
I will probably be using randomly selected images with tasks/challenges attached to them for the daily or random tasks i.e.:
image=getRandom(18);
setImage("Chastiy/ChosenMistress/"+image+".jpg")
if (image==1)
{show("Do This")}
if (image==2)
{show("Do That")}
My question is. If I attach a task to every image and want to be able go directly to a specific one, can they be selected non-randomly as easily as saying:
setImage("Chastity/ChosenMistress/"+image+".jpg")
or will I have to use some other code to acheive the same result. I am asking before I get to that partso that I dont waste time setting it up before finding out it wont work and having to scrap half the script and redesign.
My final question is. How do I get the program to skip and image/task if the user has already specified that they dont have the required item or dont like that fetish.
Will this work? :
if (image==1 & Item=1)
{show("Do This")}
else
{show("You cant do this because you dont have Item")}
or this? :
if (image==1)
{
if (Item=1)
{show("Do This")}
else
{image=getRandom(18);
setImage("Chastiy/ChosenMistress/"+image+".jpg")}
or some other variant or code I dont know about?