Difference between revisions of "Questions"

Jump to navigation Jump to search
4 bytes removed ,  23:23, 7 June 2006
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
                   stuff
               endif
               endif
I used:
I used
               if stage == 21
               if stage == 21
      if twoDaysDone == 0
      if twoDaysDone == 0
                           ;stuff
                           stuff
                       endif
                       endif
               endif
               endif
Anonymous user

Navigation menu