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.
walkthroughs for sandbox?
-
- Member
- Posts: 51
- Joined: June 21st, 2011, 10:02 am
Re: walkthroughs for sandbox?
okay i think i get it a little better now that i'v e read it a few more times but that last bit was a little cofusing.
evrything fades, but nothing ever really ends.
-
- Member
- Posts: 51
- Joined: June 21st, 2011, 10:02 am
Re: walkthroughs for sandbox?
so with the regester sound command can that be somthing that can be paired with script, like text box words, so that the character say it with the voice over and the words also apear on the screen? and also do you have to do the all the stuff you wrote out or was that just diffrent examples? i am sorry if this is a stupid question but i am not sure about it.
evrything fades, but nothing ever really ends.
-
- Support Team
- Posts: 2734
- Joined: January 13th, 2010, 12:42 pm
- Name: Timothy
- IRC Username: I use Steam
- Location: Looking over your shoulder...
- Contact:
Re: walkthroughs for sandbox?
No, it's not a stupid question. You can have a level trigger that simultaneously stops your movement while playing the sound (I believe you can do that) and use the echo command to prompt the text as well ;D

Want a user bar like this one? PM Leo!
-
- Member
- Posts: 51
- Joined: June 21st, 2011, 10:02 am
Re: walkthroughs for sandbox?
okay so... what? i'm sorry but... what?... could you possibly give me an example of like the codeing you would use to do that because i think that might help me understand better... if not thats okay... thank you so much for your help!
evrything fades, but nothing ever really ends.
Re: walkthroughs for sandbox?
the simplest way to make a character "talk" would be this: (untested, but SHOULD work)
this tells it to play a sound you've registered (saying 'my name is DrChef')
this stops the player from moving by doing the movespeed command quickly in editmode.
displays text
this part makes the player able to move after 2 seconds, or whatever the length of your sound file is.
You can make it an actual conversation by adding gui screens so the player can make choices as to what they can say
Code: Select all
level_trigger_1 = [sound 10; edittoggle; movespeed 0; edittoggle; echo "My name is DrChef"; sleep 2000[edittoggle; movespeed 100; edittoggle]]
Code: Select all
sound 10;
Code: Select all
edittoggle; movespeed 0; edittoggle;
Code: Select all
echo "My name is DrChef";
Code: Select all
sleep 2000[edittoggle; movespeed 100; edittoggle]

-
- Member
- Posts: 51
- Joined: June 21st, 2011, 10:02 am
Re: walkthroughs for sandbox?
okay yes that makes much more sense thank you very very much! now i think i only have one more question: is there a specific location that i need to put the sound bite in? and if so where? thank you all so very much for all your help!!
evrything fades, but nothing ever really ends.
-
- Member
- Posts: 51
- Joined: June 21st, 2011, 10:02 am
Re: walkthroughs for sandbox?
okay thank you so much for all you help, if i have any more questions i'll ask but for now it hink i have quite enough to play around with. thank you all so much!
evrything fades, but nothing ever really ends.
-
- Member
- Posts: 9
- Joined: June 8th, 2011, 9:24 pm
- Name: Hari
Re: walkthroughs for sandbox?
If you are new to this software and need help, check out my tutorial channel. http://www.youtube.com/user/harid001?feature=mhee
Cheers,
HyTutorials
Cheers,
HyTutorials
-
- Member
- Posts: 51
- Joined: June 21st, 2011, 10:02 am
Re: walkthroughs for sandbox?
oh yes that help so much thank you!
evrything fades, but nothing ever really ends.