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.

walkthroughs for sandbox?

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.
The Writer
Member
Member
Posts: 51
Joined: June 21st, 2011, 10:02 am

Re: walkthroughs for sandbox?

Post by The Writer »

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.
The Writer
Member
Member
Posts: 51
Joined: June 21st, 2011, 10:02 am

Re: walkthroughs for sandbox?

Post by The Writer »

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.
arcones
Support Team
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?

Post by arcones »

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
Image
Want a user bar like this one? PM Leo!
The Writer
Member
Member
Posts: 51
Joined: June 21st, 2011, 10:02 am

Re: walkthroughs for sandbox?

Post by The Writer »

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.
User avatar
DrChef
Member
Member
Posts: 60
Joined: February 19th, 2010, 5:30 pm
Name: Luis

Re: walkthroughs for sandbox?

Post by DrChef »

the simplest way to make a character "talk" would be this: (untested, but SHOULD work)

Code: Select all

level_trigger_1 = [sound 10; edittoggle; movespeed 0; edittoggle; echo "My name is DrChef"; sleep 2000[edittoggle; movespeed 100; edittoggle]]
this tells it to play a sound you've registered (saying 'my name is DrChef')

Code: Select all

sound 10;
this stops the player from moving by doing the movespeed command quickly in editmode.

Code: Select all

edittoggle; movespeed 0; edittoggle;
displays text

Code: Select all

echo "My name is DrChef";
this part makes the player able to move after 2 seconds, or whatever the length of your sound file is.

Code: Select all

 sleep 2000[edittoggle; movespeed 100; edittoggle]
You can make it an actual conversation by adding gui screens so the player can make choices as to what they can say
:D
The Writer
Member
Member
Posts: 51
Joined: June 21st, 2011, 10:02 am

Re: walkthroughs for sandbox?

Post by The Writer »

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.
User avatar
DrChef
Member
Member
Posts: 60
Joined: February 19th, 2010, 5:30 pm
Name: Luis

Re: walkthroughs for sandbox?

Post by DrChef »

you should put your sounds in a folder inside packages/sounds
:D
The Writer
Member
Member
Posts: 51
Joined: June 21st, 2011, 10:02 am

Re: walkthroughs for sandbox?

Post by The Writer »

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.
HYTutorials
Member
Member
Posts: 9
Joined: June 8th, 2011, 9:24 pm
Name: Hari

Re: walkthroughs for sandbox?

Post by HYTutorials »

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
The Writer
Member
Member
Posts: 51
Joined: June 21st, 2011, 10:02 am

Re: walkthroughs for sandbox?

Post by The Writer »

oh yes that help so much thank you!
evrything fades, but nothing ever really ends.
Locked