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.
In the meantime please join the new Discord Server!
If you have any questions please e-mail me through the Platinum Arts website.
door model triggers
-
justicemaliai
- Member

- Posts: 9
- Joined: October 21st, 2011, 5:22 pm
door model triggers
Ok, I've looked around for a bit now, and I haven't found an answer to my specific question. During version 2.6 of sandbox, if you placed, for example door_03, on a map, and used f3 to edit its properties, you could set it to trigger type 10 and a radius of whatever, and when you entered the radius of the trigger, it opened the door. In 2.7, this no longer works... Is anyone else having this issue? Am I doing something incorrectly? Is this a known bug / change? I would greatly appreciate any replies you guys have. Thanks in advance for the help. My space ship map will not be complete without doors. XD
- jSoftApps
- Member

- Posts: 426
- Joined: May 2nd, 2011, 10:02 pm
- Name: J.R.
- IRC Username: jSoftApps
- Location: jSoft Apps Software Innovations HQ
- Contact:
Re: door model triggers
Are you playing in sp mode? You are most likely playing in coop-edit mode.
jSoft Apps Software Innovations - App, Games and More!
Visit our Website!

jSoft Apps is now on indie db!

Visit our Website!
jSoft Apps is now on indie db!
-
justicemaliai
- Member

- Posts: 9
- Joined: October 21st, 2011, 5:22 pm
Re: door model triggers
Well, as far as I know I'm using single player. I use the "sandbox launcher" and start my map with the following settings:
res 1280x800 shaders low vsync off
Also, where it has the tabs (fps, ssp, rpg, server, client, moviecube) I use the fps option, then press the launch button there.

res 1280x800 shaders low vsync off
Also, where it has the tabs (fps, ssp, rpg, server, client, moviecube) I use the fps option, then press the launch button there.

Justice Maliai
- Leo_V117
- Support Team

- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: door model triggers
A solution to that, is to enter your map and type:
Code: Select all
spGame Projects
Sandbox Tools
-
justicemaliai
- Member

- Posts: 9
- Joined: October 21st, 2011, 5:22 pm
Re: door model triggers
Awesome, that worked. Thanks so much. One last question though, is there a way to make it start in sp mode? It defaults in co-op and I tried just putting "sp" in the script editor, (f6) but it just made the map crash.
Justice Maliai
- Leo_V117
- Support Team

- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: door model triggers
Try:in the map code. 
Code: Select all
sleep 100 [sp]Game Projects
Sandbox Tools
-
justicemaliai
- Member

- Posts: 9
- Joined: October 21st, 2011, 5:22 pm
- Leo_V117
- Support Team

- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: door model triggers
Oh... Then try: 
Code: Select all
sp_enabled = 0
sleep 100 [sp_on]
sp_on = [
if (= $sp_enabled 0) [
sp;
sp_enabled = 1;
]
]Game Projects
Sandbox Tools
- jSoftApps
- Member

- Posts: 426
- Joined: May 2nd, 2011, 10:02 pm
- Name: J.R.
- IRC Username: jSoftApps
- Location: jSoft Apps Software Innovations HQ
- Contact:
Re: door model triggers
Looks like that would work. Good job leo! (I was never good with cubescript)
jSoft Apps Software Innovations - App, Games and More!
Visit our Website!

jSoft Apps is now on indie db!

Visit our Website!
jSoft Apps is now on indie db!
-
justicemaliai
- Member

- Posts: 9
- Joined: October 21st, 2011, 5:22 pm