The Dink Network

Reply to Re: How do you do plots im so confused please reply

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
March 25th 2007, 07:43 AM
slimeb.gif
DaVince
Peasant He/Him Netherlands
Olde Time Dinkere 
omg im confused and cant find my own information while theres tons of information on how to do things around i also dont know what capital letters are or punctuation ah well this wont be difficult to read anyway will it

If you need help, look around for tutorials/topics/Dmods that can possibly help you. If you can't find any, then come here and ask, with correct punctuation and capitals at the correct places.

I hope that your Dmod will have a bit better text than you used to make this topic.

Now, to answer your question, you'll need to make a global int, change its value when something in a story has happened, and use lots of if conditions to check what value this global int is. For example:

make_global_int("&story", 0);
Makes a global int called &story, which starts out with a value of 0.

Somewhere in a talk script:
if (&story == 0)
{
//Compares is story is 0.
//Then do stuff if this is the case.
}

else if (&story == 1)
{
//Now what to do if story is equal to 1? Do different stuff.
}