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 | ||
if (stage == 21) && (twodaysdone == 0) | if (stage == 21) && (twodaysdone == 0) | ||
stuff | |||
endif | endif | ||
I used | I used | ||
if stage == 21 | if stage == 21 | ||
if twoDaysDone == 0 | if twoDaysDone == 0 | ||
stuff | |||
endif | endif | ||
endif | endif |