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.

How do I operate switches?

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
sandboxman14789
Member
Member
Posts: 3
Joined: November 25th, 2009, 2:56 pm
Name: Parker

How do I operate switches?

Post by sandboxman14789 »

Scenario: I put a switch on the map and set it's trigger type to 10 and it's trigger tag to 1. Then I put a door on the map and set it's trigger tag to 1 also. I go down to edit mode and walk up to the switch. THe switch moves, but the door does not open. How can I make switches open doors?
Hirato
Developer
Developer
Posts: 689
Joined: May 30th, 2009, 1:23 pm
IRC Username: hirato

Re: How do I operate switches?

Post by Hirato »

the door needs to be 11
with 10 I think the door automatically opens when you approach
This is not a url, clicking it is pointless
bryanfblareunion
Member
Member
Posts: 24
Joined: October 21st, 2009, 11:01 am
Name: bryanfbla

Re: How do I operate switches?

Post by bryanfblareunion »

In the code, you could try putting:

Code: Select all

level_trigger_2 = [ trigger 1 1 ] 
(note there is a space between trigger tag 1 and the other 1, it's not an eleven.)

Your switch would have to be set to trigger tag two. Meaning that every time the switch is tripped, the door (trigger 1) is opened.

Hope this helps. :geek:
Locked