Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

What am i doing wrong?

Having issues not related to a specific Sandbox game mode? Get help here!
Please also read the rules for support when posting support requests.
Failure to comply with the forum rules may result in your topic being locked without resolution.
Locked
User avatar
PizzaLover101
Member
Member
Posts: 1751
Joined: October 23rd, 2009, 1:33 pm
Name: NAME
IRC Username: DaItsicle
Location: By a computer
Contact:

What am i doing wrong?

Post 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" 
]

Project 1: Da Chest Collector [TBD]
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!

http://pizzagametime.tk/
http://forums.pizzagametime.tk/
Hirato
Developer
Developer
Posts: 689
Joined: May 30th, 2009, 1:23 pm
IRC Username: hirato

Re: What am i doing wrong?

Post 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]
This is not a url, clicking it is pointless
User avatar
PizzaLover101
Member
Member
Posts: 1751
Joined: October 23rd, 2009, 1:33 pm
Name: NAME
IRC Username: DaItsicle
Location: By a computer
Contact:

Re: What am i doing wrong?

Post by PizzaLover101 »

ok, thank you, I'll try that from now on
Project 1: Da Chest Collector [TBD]
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!

http://pizzagametime.tk/
http://forums.pizzagametime.tk/
Locked