variables
I feel a bit dumb i have to ask this, and i'm sure all tutorials have a good way of explaining how to do it, but I'm gonna ask anyway. How do I write if (&var = 3) AND (&temp = 4) then (&story = 4)? I've tried a couple of times but my computer crashes time after time. (I'm really bad at getting those variables to work right.)
DinkC has a completely different syntax from what you're trying to plug into it. To do what it looks like you're trying to do, try this:
if (&var == 3)
{
if (&temp == 4)
{
&story = 4;
}
}
if (&var == 3)
{
if (&temp == 4)
{
&story = 4;
}
}
Your computer crashes?? It should just skip the line. Anyway, it works exactly as Redink told you, you have to nest all the if statements for it to work.