Page 1 of 1

What am i doing wrong?

Posted: July 25th, 2010, 2:47 pm
by PizzaLover101
I have an ogre, Trigger type 5, trigger tag 1

Code: Select all

level_trigger_1 = [newgui diolouge1 
guitext "How's it going" chat
guitext "How'd you get in my house?" chat
guibutton "next" 
]


Re: What am i doing wrong?

Posted: July 25th, 2010, 9:24 pm
by Hirato
you should be calling showgui dialogue1 in the trigger, not creating it

Code: Select all

  newgui dialogue1 [
      guitext "I can't believe this isn't butter"
  ]
  level_trigger_1 = [showgui dialogue1]

Re: What am i doing wrong?

Posted: July 26th, 2010, 7:31 am
by PizzaLover101
ok, thank you, I'll try that from now on