A. Use the code tags when posting codes. It preserves formatting and makes it a hell of a lot easier to read.
B. Double check to make sure that your mob has qglobals enabled, it most likely is because C is your issue here. Doesn't hurt to double check.
C. You have Statement 1: "If Text is Hail", Statement 2: else "If Text is Journey", Statement 3: else "if Text is Journey AND qglobal is not defined". Statement 2 will always be evaluated before Statement 3, and even if Statement 3 is true, Statement 2 will be true first. Change the 2nd Statement to if the qglobal is defined and the text is there, and the final one as an elsif qglobal is not defined and the text is there.
|