Difference between revisions of "Questions"
Jump to navigation
Jump to search
→Quest Scripting Question
imported>Omzy |
imported>Omzy |
||
Line 477: | Line 477: | ||
*I don't reccommend using the "stage" variable in your script. I need it for a rare circumstance in my quest topic result scripts. | *I don't reccommend using the "stage" variable in your script. I need it for a rare circumstance in my quest topic result scripts. | ||
The change is that instead of | The change is that instead of <pre> | ||
if (stage == 21) && (twodaysdone == 0) | if (stage == 21) && (twodaysdone == 0) | ||
stuff | stuff | ||
endif | endif </pre> | ||
I used | I used <pre> | ||
if stage == 21 | if stage == 21 | ||
if twoDaysDone == 0 | if twoDaysDone == 0 | ||
Line 487: | Line 487: | ||
endif | endif | ||
endif | endif | ||
</pre> | |||
The &&, even though it works in the Nirnroot script, somehow didn't do it for me. Tell me if it changes things, and perhaps why... | The &&, even though it works in the Nirnroot script, somehow didn't do it for me. Tell me if it changes things, and perhaps why... | ||