<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.sandboxgamemaker.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Clownfish</id>
		<title>Platinum Arts Sandbox Free 3D Game Maker - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.sandboxgamemaker.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Clownfish"/>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Special:Contributions/Clownfish"/>
		<updated>2026-05-03T01:34:53Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Sandbox_Wishlist&amp;diff=528</id>
		<title>Clownfish&#039;s Sandbox Wishlist</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Sandbox_Wishlist&amp;diff=528"/>
				<updated>2009-07-11T03:23:35Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: New page:  *Negative gravity *Conveyor belts *Ladder Material *Sand Material *Slime Material *Mirror Material *&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
*Negative gravity&lt;br /&gt;
*Conveyor belts&lt;br /&gt;
*Ladder Material&lt;br /&gt;
*Sand Material&lt;br /&gt;
*Slime Material&lt;br /&gt;
*Mirror Material&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Compiling_the_source_code&amp;diff=526</id>
		<title>Compiling the source code</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Compiling_the_source_code&amp;diff=526"/>
				<updated>2009-07-10T04:10:08Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page discusses on how to modify and compile the source code.&lt;br /&gt;
&lt;br /&gt;
==Windows:==&lt;br /&gt;
&lt;br /&gt;
===Main Method===&lt;br /&gt;
Click here to download the version of Codeblocks with the mingw compiler:&lt;br /&gt;
[http://kids.platinumarts.net/codeblocks.exe]&lt;br /&gt;
&lt;br /&gt;
Then go into your \src\vcpp folder.  Click on sandbox.cbp and codeblocks should load up.  Go to build and then build and it should create the Windows binary :)&lt;br /&gt;
&lt;br /&gt;
Other Methods:  There is a visual C++ project file included that you can use.  Load up the proper file and compile :)  I&amp;#039;m not sure if you&amp;#039;d need any libraries but you probably shouldn&amp;#039;t need any.&lt;br /&gt;
&lt;br /&gt;
==POSIX systems==&lt;br /&gt;
&lt;br /&gt;
You may need to convert some of the text file from dos format. There&amp;#039;s a handy program to do it with so you may need to install and use tofrodos&lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;big&amp;gt;NOTE&amp;lt;/big&amp;gt; The Binaries are compiled for 32 bit systems, so if you&amp;#039;re on a 64 bit system, you&amp;#039;ll have to 1) compile your own, by using modified versions of the below instructions, or 2) install and use 32 bit libraries.&lt;br /&gt;
&lt;br /&gt;
====Makefile====&lt;br /&gt;
&lt;br /&gt;
First of all, make sure you have the the SDL and SDL_Image and SDL_Mixer development libraries installed on your system.&lt;br /&gt;
Next up, go into src folder. and type &amp;#039;make&amp;#039;, you can add one of the following at the end of the line&lt;br /&gt;
&lt;br /&gt;
* all - compiles the client&lt;br /&gt;
* libenet - compiles enet library&lt;br /&gt;
* clean - cleans up temporary files&lt;br /&gt;
* client - builds enet and integrates it into a client &lt;br /&gt;
* install - compiles enet and the client, and compies the client in /bin_unix/&lt;br /&gt;
* distinstall - creates a directory names /usr/local/sandbox/, and copies everything in there. it then sets permissions and some symlinks, so you can play the game by typing &amp;#039;sandbox&amp;#039; into a console.&lt;br /&gt;
* distclean - deletes /usr/local/sandbox/&lt;br /&gt;
&lt;br /&gt;
The compile automatically defaults to &amp;#039;all&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Chances are, you won&amp;#039;t have everything you needed installed, so if you receive any errors from missing devel libraries and frameworks, just installed them too.&lt;br /&gt;
if you receive errors similar  &amp;quot;bash: ./configure: /bin/sh^M: bad interpreter&amp;quot; you&amp;#039;ll need to use &amp;#039;fromdos&amp;#039; to convert them to unix friendly files.&lt;br /&gt;
&lt;br /&gt;
====Debug====&lt;br /&gt;
&lt;br /&gt;
If you&amp;#039;re interested in compiling a version with debugging symbols, just follow the instructions.&lt;br /&gt;
&lt;br /&gt;
# first, open the Makefile with a text editor,&lt;br /&gt;
# next, you&amp;#039;ll need to add &amp;#039;-ggdb3&amp;#039; somewhere in the &amp;#039;CXXOPTFLAGS&amp;#039; list. It&amp;#039;s normally recommended to clear everything else out of there. you&amp;#039;re not meant to optimise and debug simultaneously.&lt;br /&gt;
# thirdly, scroll down to near the end, and remove all the lines with &amp;#039;strip&amp;#039; in them&lt;br /&gt;
# finally, you may wish to change the PLATFROM_PREFIX to something else, like debug for example.&lt;br /&gt;
&lt;br /&gt;
====Debug under Linux====&lt;br /&gt;
&lt;br /&gt;
Compile the debug version with: make install -f Makefile.debug&lt;br /&gt;
Than start gdb and type this:&lt;br /&gt;
&lt;br /&gt;
file bin/debug_client&lt;br /&gt;
run -r -t&lt;br /&gt;
&lt;br /&gt;
when it crash than type bt&lt;br /&gt;
&lt;br /&gt;
===MAC OSX===&lt;br /&gt;
&lt;br /&gt;
To start, you should have Xcode installed on your computer. Either install the Developer tools from the OS X install disks that came with your computer, or download  Xcode from the apple website: &lt;br /&gt;
http://developer.apple.com/technology/xcode.html&lt;br /&gt;
&lt;br /&gt;
Download SDL:  http://www.libsdl.org/release/SDL-1.2.13.dmg&lt;br /&gt;
Copy the SDL.framework folder to /Library/Frameworks &lt;br /&gt;
&lt;br /&gt;
Download SDL_Image: http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.6.dmg&lt;br /&gt;
Copy the SDL_image.framework folder to /Library/Frameworks&lt;br /&gt;
&lt;br /&gt;
Download SDL_Mixer: http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.8.dmg&lt;br /&gt;
Copy the SDL_mixer.framework folder to /Library/Frameworks &lt;br /&gt;
&lt;br /&gt;
Download the latest Multiplatform.zip of Sandbox. Unzip and double click on PASX.X.Xmultiplatform/src/xcode/sandbox.xcodeproj&lt;br /&gt;
&lt;br /&gt;
Xcode will open the project. Change the &amp;#039;&amp;#039;&amp;#039;Active Build Configuration&amp;#039;&amp;#039;&amp;#039; from &amp;#039;&amp;#039;Debug&amp;#039;&amp;#039; to &amp;#039;&amp;#039;Release&amp;#039;&amp;#039;. Click on build - the Binary should compile without any errors.&lt;br /&gt;
&lt;br /&gt;
By default the executables, launcher and sandbox, are created in the folder PASX.X.Xmultiplatform/src/xcode/build/Release/&lt;br /&gt;
&lt;br /&gt;
Rename  the PASX.X.Xmultiplatform folder to &amp;#039;&amp;#039;sandbox&amp;#039;&amp;#039; and move the compiled sandbox.app into the top level of that folder. The launcher.app should be on the same level, but outside, the renamed &amp;#039;&amp;#039;sandbox&amp;#039;&amp;#039; folder.&lt;br /&gt;
&lt;br /&gt;
===FreeBSD===&lt;br /&gt;
&lt;br /&gt;
Unwritten&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=523</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=523"/>
				<updated>2009-07-05T19:40:17Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
NOTE: See related discussion thread in Sandbox Forum: [http://forum.sandboxgamemaker.com/viewtopic.php?f=8&amp;amp;p=616#p616 CLICK HERE to see this discussion]. If you&amp;#039;d prefer to see one of these tutorials created first, then please voice your opinion at this discussion thread.&lt;br /&gt;
&lt;br /&gt;
NOTE: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D  (-Clownfish)&lt;br /&gt;
&lt;br /&gt;
NOTE: None of these Step-by-Step tutorials have been created yet.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you would like to help make some of these tutorials for the Sandbox community we&amp;#039;d be glad to have your help! :-D Create your wiki account and start contributing, or come here: [[Contact The Team]] tell us how you&amp;#039;d like to help out!&lt;br /&gt;
&lt;br /&gt;
NOTE: If you help make a Step-by-Step tutorial, please try to:&lt;br /&gt;
&lt;br /&gt;
1. Keep your wording very clear and easy to follow.&lt;br /&gt;
&lt;br /&gt;
2. List steps in a numbered fashion (e.g.:&lt;br /&gt;
&lt;br /&gt;
::1. Do this&lt;br /&gt;
::2. Look here&lt;br /&gt;
::3. Go here&lt;br /&gt;
::4. Rename this to&lt;br /&gt;
::5. Move this here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Provide &amp;#039;keywords&amp;#039;,  verbatim &amp;#039;titles&amp;#039;, and &amp;#039;landmarks&amp;#039; often for users to &amp;#039;look for&amp;#039; and &amp;#039;follow along&amp;#039; with easily.&lt;br /&gt;
&lt;br /&gt;
4. Provide pictures or video often ...(attached {preferably in case external host disappears} or linked) &lt;br /&gt;
&lt;br /&gt;
5. Provide the type of  operating system you based this Step-by-Step tutorial off of (e.g. Windows XP, Linux:Debian, Mac OSX)&lt;br /&gt;
&lt;br /&gt;
NOTE: Lets agree on a &amp;#039;Step-By-Step Tutorial&amp;#039; format so they look consistent. Suggest some format ideas via our forum on this discussion thread: [http://forum.sandboxgamemaker.com/viewtopic.php?f=8&amp;amp;p=616#p616 CLICK HERE to see this discussion]&lt;br /&gt;
&lt;br /&gt;
Basically these are things I have learned to do in Sandbox over the past few months. Some of these ideas I have gathered from Sandbox gods like Calimer &amp;amp; Hirato ((Thanks for your time and effort guys :-D )), some I have found on this wiki, some I have found on the forum from our awesome sandbox community, and others I have stumbled upon myself.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Let me know :-D&lt;br /&gt;
-Clownfish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create set of glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to make 1-way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp speed tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to make various types of fences]]&lt;br /&gt;
* [[How to add creatures]] &lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How to automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;br /&gt;
* [[How to make a sphere shapes in &amp;#039;edit mode&amp;#039;]]&lt;br /&gt;
* [[How to make curved shapes in &amp;#039;edit mode&amp;#039;]]&lt;br /&gt;
* [[How to make a small wooden bridge]]&lt;br /&gt;
* [[How to make a large stone bridge]]&lt;br /&gt;
* [[How to make a fish tank/swimming pool with a window]]&lt;br /&gt;
* [[How to make various window shapes]]&lt;br /&gt;
* [[How to make a pirate&amp;#039;s lair]]&lt;br /&gt;
* [[How to make a lighthouse]]&lt;br /&gt;
* [[How to make a house fit for an ogre]]&lt;br /&gt;
* [[How to make a launch tube]]&lt;br /&gt;
* [[How to make a working circus cannon]]&lt;br /&gt;
* [[How to make railings]]&lt;br /&gt;
* [[How to create a spiral staircase]]&lt;br /&gt;
* [[How to create an underwater base]]&lt;br /&gt;
* [[How to create a spiral staircase inside a hollow tower]]&lt;br /&gt;
* [[How to create a hollow tower/tube]]&lt;br /&gt;
* [[How to create a wishing well with a round hole below in ground]]&lt;br /&gt;
* [[How to create an apple tree]]&lt;br /&gt;
* [[How to make a water slide]]&lt;br /&gt;
&lt;br /&gt;
NOTE: Some of these step-by-step tutorials will contain fundamental info for learning sandbox, and other will just be ideas you can try for the fun of it. The latter is good stimuli for your imagination. Let see what you can do with these ideas when you take them and make them your new creations! :-D&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=522</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=522"/>
				<updated>2009-07-05T16:50:09Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
* [[Clownfish&amp;#039;s Step-By-Step Tutorials]]&lt;br /&gt;
* [[Clownfish&amp;#039;s Sandbox Wishlist]]&lt;br /&gt;
::Here I will rough out my wishes, and then post them more clearly on our main wiki page&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.jpg|150px|alt Clownfish]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;br /&gt;
&lt;br /&gt;
***** Random Ideas *****&lt;br /&gt;
(all are welcome to use these ideas. If you found the idea here, please give me a little credit)((have lots of fun with these and develop them to your hearts content))&lt;br /&gt;
&lt;br /&gt;
-Haunted House map, where kids/anyone searches for 21 lost items. Escape with all and WIN! House includes &amp;#039;false walls&amp;#039;, &amp;#039;trap doors&amp;#039;, posted &amp;#039;clues&amp;#039;, secret levers, territorial &amp;#039;cartoon ghost&amp;#039; (&amp;quot;Casper like&amp;quot;, but will try to &amp;#039;tag&amp;#039; you and send you back to &amp;#039;front door, or take 1 of your items and hide it again on you.&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=521</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=521"/>
				<updated>2009-07-05T16:10:46Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
NOTE: See related discussion thread in Sandbox Forum: [http://forum.sandboxgamemaker.com/viewtopic.php?f=8&amp;amp;p=616#p616 CLICK HERE to see this discussion]. If you&amp;#039;d prefer to see one of these tutorials created first, then please voice your opinion at this discussion thread.&lt;br /&gt;
&lt;br /&gt;
NOTE: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D  (-Clownfish)&lt;br /&gt;
&lt;br /&gt;
NOTE: None of these Step-by-Step tutorials have been created yet.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you would like to help make some of these tutorials for the Sandbox community we&amp;#039;d be glad to have your help! :-D Create your wiki account and start contributing, or come here: [[Contact The Team]] tell us how you&amp;#039;d like to help out!&lt;br /&gt;
&lt;br /&gt;
NOTE: If you help make a Step-by-Step tutorial, please try to:&lt;br /&gt;
&lt;br /&gt;
1. Keep your wording very clear and easy to follow.&lt;br /&gt;
&lt;br /&gt;
2. List steps in a numbered fashion (e.g.:&lt;br /&gt;
&lt;br /&gt;
::1. Do this&lt;br /&gt;
::2. Look here&lt;br /&gt;
::3. Go here&lt;br /&gt;
::4. Rename this to&lt;br /&gt;
::5. Move this here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Provide &amp;#039;keywords&amp;#039;,  verbatim &amp;#039;titles&amp;#039;, and &amp;#039;landmarks&amp;#039; often for users to &amp;#039;look for&amp;#039; and &amp;#039;follow along&amp;#039; with easily.&lt;br /&gt;
&lt;br /&gt;
4. Provide pictures or video often ...(attached {preferably in case external host disappears} or linked) &lt;br /&gt;
&lt;br /&gt;
5. Provide the type of  operating system you based this Step-by-Step tutorial off of (e.g. Windows XP, Linux:Debian, Mac OSX)&lt;br /&gt;
&lt;br /&gt;
NOTE: Lets agree on a &amp;#039;Step-By-Step Tutorial&amp;#039; format so they look consistent. Suggest some format ideas via our forum on this discussion thread: [http://forum.sandboxgamemaker.com/viewtopic.php?f=8&amp;amp;p=616#p616 CLICK HERE to see this discussion]&lt;br /&gt;
&lt;br /&gt;
Basically these are things I have learned to do in Sandbox over the past few months. Some of these ideas I have gathered from Sandbox gods like Calimer &amp;amp; Hirato ((Thanks for your time and effort guys :-D )), some I have found on this wiki, some I have found on the forum from our awesome sandbox community, and others I have stumbled upon myself.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Let me know :-D&lt;br /&gt;
-Clownfish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create set of glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to make 1-way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp speed tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to make various types of fences]]&lt;br /&gt;
* [[How to add creatures]] &lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;br /&gt;
* [[How to make a sphere shapes in &amp;#039;edit mode&amp;#039;]]&lt;br /&gt;
* [[How to make curved shapes in &amp;#039;edit mode&amp;#039;]]&lt;br /&gt;
* [[How to make a small wooden bridge]]&lt;br /&gt;
* [[How to make a large stone bridge]]&lt;br /&gt;
* [[How to make a fish tank/swimming pool with a window]]&lt;br /&gt;
* [[How to make various window shapes]]&lt;br /&gt;
* [[How to make a pirate&amp;#039;s lair]]&lt;br /&gt;
* [[How to make a lighthouse]]&lt;br /&gt;
* [[How to make a house fit for an ogre]]&lt;br /&gt;
* [[How to make a launch tube]]&lt;br /&gt;
* [[How to make a working circus cannon]]&lt;br /&gt;
* [[How to make railings]]&lt;br /&gt;
* [[How to create a spiral staircase]]&lt;br /&gt;
* [[How to create an underwater base]]&lt;br /&gt;
* [[How to create a spiral staircase inside a hollow tower]]&lt;br /&gt;
* [[How to create a hollow tower/tube]]&lt;br /&gt;
* [[How to create a wishing well with a round hole below in ground]]&lt;br /&gt;
* [[How to create an apple tree]]&lt;br /&gt;
* [[How to make a water slide]]&lt;br /&gt;
&lt;br /&gt;
NOTE: Some of these step-by-step tutorials will be contain fundamental info for learning sandbox, and other will just be ideas you can try for the fun of it. The latter is good stimuli for your imagination. Let see what you can do with these ideas when you take them and make them your new creations! :-D&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=520</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=520"/>
				<updated>2009-07-05T13:59:57Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
NOTE: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D  (-Clownfish)&lt;br /&gt;
&lt;br /&gt;
NOTE: None of these Step-by-Step tutorials have been created yet.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you&amp;#039;d prefer to see one of these tutorials created first, then please voice your opinion in our forums here: [http://forum.sandboxgamemaker.com CLICK HERE to visit our new Sandbox Forum]&lt;br /&gt;
&lt;br /&gt;
NOTE: If you would like to help make some of these tutorials for the Sandbox community we&amp;#039;d be glad to have your help! :-D Create your wiki account and start contributing, or come here: [[Contact The Team]] tell us how you&amp;#039;d like to help out!&lt;br /&gt;
&lt;br /&gt;
NOTE: If you help make a Step-by-Step tutorial, please try to:&lt;br /&gt;
&lt;br /&gt;
1. Keep your wording very clear and easy to follow.&lt;br /&gt;
&lt;br /&gt;
2. List steps in a numbered fashion (e.g.:&lt;br /&gt;
&lt;br /&gt;
::1. Do this&lt;br /&gt;
::2. Look here&lt;br /&gt;
::3. Go here&lt;br /&gt;
::4. rename this to&lt;br /&gt;
::5. move this here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Provide &amp;#039;keywords&amp;#039;,  verbatim titles, and &amp;#039;landmarks&amp;#039; often for users to &amp;#039;look for&amp;#039; and &amp;#039;follow along&amp;#039; with easily.&lt;br /&gt;
&lt;br /&gt;
4. Provide pictures or video often ...(attached {preferably in case external host disappears} or linked) &lt;br /&gt;
&lt;br /&gt;
5. Provide the type of  operating system you based this Step-by-Step tutorial off of (e.g. Windows XP, Linux:Debian, Mac OSX)&lt;br /&gt;
&lt;br /&gt;
NOTE: Lets agree on a &amp;#039;Step-By-Step Tutorial&amp;#039; format so they look consistent. Suggest some format ideas via our forum. [http://forum.sandboxgamemaker.com CLICK HERE to visit our new Sandbox Forum]&lt;br /&gt;
&lt;br /&gt;
Basically these are things I have learned to do in Sandbox over the past few months. Some of these ideas I have gathered from Sandbox gods like Calimer &amp;amp; Hirato ((Thanks for your time and effort guys :-D )), some I have found on this wiki, some I have found on the forum from our awesome sandbox community, and others I have stumbled upon myself.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Let me know :-D&lt;br /&gt;
-Clownfish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create set of glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to make 1-way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp speed tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to make various types of fences]]&lt;br /&gt;
* [[How to add creatures]] &lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=519</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=519"/>
				<updated>2009-07-05T08:07:15Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
NOTE: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D  (-Clownfish)&lt;br /&gt;
&lt;br /&gt;
NOTE: None of these Step-by-Step tutorials have been created yet.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you&amp;#039;d prefer to see one of these tutorials created first, then please voice your opinion in our forums here: [http://forum.sandboxgamemaker.com CLICK HERE to visit our new Sandbox Forum]&lt;br /&gt;
&lt;br /&gt;
NOTE: If you would like to help make some of these tutorials for the Sandbox community we&amp;#039;d be glad to have your help! :-D Create your wiki account and start contributing, or come here: [[Contact The Team]] tell us how you&amp;#039;d like to help out!&lt;br /&gt;
&lt;br /&gt;
NOTE: If you help make a Step-by-Step tutorial, please try to:&lt;br /&gt;
&lt;br /&gt;
1. Keep your wording very clear and easy to follow.&lt;br /&gt;
&lt;br /&gt;
2. List steps in a numbered fashion (e.g.:&lt;br /&gt;
&lt;br /&gt;
::1. Do this&lt;br /&gt;
::2. Look here&lt;br /&gt;
::3. Go here&lt;br /&gt;
::4. rename this to&lt;br /&gt;
::5. move this here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Provide &amp;#039;keywords&amp;#039;,  verbatim titles, and &amp;#039;landmarks&amp;#039; often for users to &amp;#039;look for&amp;#039; and &amp;#039;follow along&amp;#039; with easily.&lt;br /&gt;
&lt;br /&gt;
4. Provide pictures or video often ...(attached {preferably in case external host disappears} or linked) &lt;br /&gt;
&lt;br /&gt;
5. Provide the type of  operating system you based this Step-by-Step tutorial off of (e.g. Windows XP, Linux:Debian, Mac OSX)&lt;br /&gt;
&lt;br /&gt;
NOTE: Lets agree on a &amp;#039;Step-By-Step Tutorial&amp;#039; format so they look consistent. Suggest some format ideas via our forum. [http://forum.sandboxgamemaker.com CLICK HERE to visit our new Sandbox Forum]&lt;br /&gt;
&lt;br /&gt;
Basically these are things I have learned to do in Sandbox over the past few months. Some of these ideas I have gathered from Sandbox gods like Calimer &amp;amp; Hirato ((Thanks for your time and effort guys :-D )), some I have found on this wiki, some I have found on the forum from our awesome sandbox community, and others I have stumbled upon myself.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Let me know :-D&lt;br /&gt;
-Clownfish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to make 1-way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to add creatures]]&lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=518</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=518"/>
				<updated>2009-07-05T07:01:27Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
NOTE: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D  (-Clownfish)&lt;br /&gt;
&lt;br /&gt;
NOTE: None of these Step-by-Step tutorials have been created yet. However I plan on creating them 1 by 1.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you&amp;#039;d prefer to see one of these tutorials created first, then please voice your opinion in our forums here: [http://forum.sandboxgamemaker.com CLICK HERE to visit our new Sandbox Forum]&lt;br /&gt;
&lt;br /&gt;
NOTE: If you would like to help make some of these tutorials for the Sandbox community we&amp;#039;d be glad to have your help! :-D Create your wiki account and start contributing, or come here: [[Contact The Team]] tell us how you&amp;#039;d like to help out!&lt;br /&gt;
&lt;br /&gt;
NOTE: If you help make a Step-by-Step tutorial, please try to:&lt;br /&gt;
&lt;br /&gt;
1. Keep your wording very clear and easy to follow.&lt;br /&gt;
&lt;br /&gt;
2. List steps in a numbered fashion (e.g.:&lt;br /&gt;
&lt;br /&gt;
::1. Do this&lt;br /&gt;
::2. Look here&lt;br /&gt;
::3. Go here&lt;br /&gt;
::4. rename this to&lt;br /&gt;
::5. move this here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Provide &amp;#039;keywords&amp;#039;,  verbatim titles, and &amp;#039;landmarks&amp;#039; often for users to &amp;#039;look for&amp;#039; and &amp;#039;follow along&amp;#039; with easily.&lt;br /&gt;
&lt;br /&gt;
4. Provide pictures or video often ...(attached {preferably in case external host disappears} or linked) &lt;br /&gt;
&lt;br /&gt;
5. Provide the type of  operating system you based this Step-by-Step tutorial off of (e.g. Windows XP, Linux:Debian, Mac OSX)&lt;br /&gt;
&lt;br /&gt;
NOTE: Lets agree on a &amp;#039;Step-By-Step Tutorial&amp;#039; format so they look consistent. Suggest some format ideas via our forum. [http://forum.sandboxgamemaker.com CLICK HERE to visit our new Sandbox Forum]&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Let me know :-D&lt;br /&gt;
-Clownfish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to make 1-way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to add creatures]]&lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=517</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=517"/>
				<updated>2009-07-05T06:52:44Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
NOTE: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D  (-Clownfish)&lt;br /&gt;
&lt;br /&gt;
NOTE: None of these Step-by-Step tutorials have been created yet. However I plan on creating them 1 by 1.&lt;br /&gt;
&lt;br /&gt;
NOTE: If you&amp;#039;d prefer to see one of these tutorials created first, then please voice your opinion in our forums here: &lt;br /&gt;
&lt;br /&gt;
NOTE: If you would like to help make some of these tutorials for the Sandbox community we&amp;#039;d be glad to have your help! :-D Create your wiki account and start contributing, or come here: [[Contact The Team]] tell us how you&amp;#039;d like to help out!&lt;br /&gt;
&lt;br /&gt;
NOTE: If you help make a Step-by-Step tutorial, please try to:&lt;br /&gt;
&lt;br /&gt;
1. Keep your wording very clear and easy to follow.&lt;br /&gt;
&lt;br /&gt;
2. List steps in a numbered fashion (e.g.:&lt;br /&gt;
&lt;br /&gt;
::1. Do this&lt;br /&gt;
::2. Look here&lt;br /&gt;
::3. Go here&lt;br /&gt;
::4. rename this to&lt;br /&gt;
::5. move this here&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Provide &amp;#039;keywords&amp;#039;,  verbatim titles, and &amp;#039;landmarks&amp;#039; often for users to &amp;#039;look for&amp;#039; and &amp;#039;follow along&amp;#039; with easily.&lt;br /&gt;
&lt;br /&gt;
4. Provide pictures or video often ...(attached {preferably in case external host disappears} or linked) &lt;br /&gt;
&lt;br /&gt;
5. Provide the type of  operating system you based this Step-by-Step tutorial off of (e.g. Windows XP, Linux:Debian, Mac OSX)&lt;br /&gt;
&lt;br /&gt;
NOTE: Lets agree on a &amp;#039;Step-By-Step Tutorial&amp;#039; format so they look consistent. Suggest some format ideas via our forum.&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
Let me know :-D&lt;br /&gt;
-Clownfish&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to make 1-way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to add creatures]]&lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=516</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=516"/>
				<updated>2009-07-05T06:26:05Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
Note: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to 1 way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to add creatures]]&lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;br /&gt;
* [[How to obtain SVN SB version, update it, and compile it]]&lt;br /&gt;
* [[How to contribute to the SB SVN]]&lt;br /&gt;
* [[How to contribute to the SB wiki]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=515</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=515"/>
				<updated>2009-07-05T06:22:01Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
Note: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to 1 way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to add creatures]]&lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;br /&gt;
* [[How to monitor your dedicated server without being in it]]&lt;br /&gt;
* [[How to add projectiles to your game]]&lt;br /&gt;
* [[How to add a welcome message to your map or coop edit map]]&lt;br /&gt;
* [[How to change color of text in maps welcome message]]&lt;br /&gt;
* [[How automatically save your map every x number of minutes]]&lt;br /&gt;
* [[How to copy a whole building and it&amp;#039;s contents]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=514</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=514"/>
				<updated>2009-07-05T06:17:32Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
Note: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to 1 way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;br /&gt;
* [[How to create smooth curvy pathways]]&lt;br /&gt;
* [[How to create fields with flower patches]]&lt;br /&gt;
* [[How to create a camp fire and fireplace]]&lt;br /&gt;
* [[How to update your maps from SB version 2.3 to the current version]]&lt;br /&gt;
* [[How to make a hollow pyramid]]&lt;br /&gt;
* [[How to make a bumpy road]]&lt;br /&gt;
* [[How to add creatures]]&lt;br /&gt;
* [[How to add new colors of creatures and map models]]&lt;br /&gt;
* [[How to add more player character models]]&lt;br /&gt;
* [[How to make an endless slide]]&lt;br /&gt;
* [[How to make a robochimp throw you into the air]]&lt;br /&gt;
* [[How to make a snowman]]&lt;br /&gt;
* [[How to re size map models and textures]]&lt;br /&gt;
* [[How to make invisible boundaries]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=513</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=513"/>
				<updated>2009-07-05T06:09:01Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
Note: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to 1 way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;br /&gt;
* [[How to host a coop edit session over the internet]]&lt;br /&gt;
* [[How to host a persistent world in Sandbox over the internet]]&lt;br /&gt;
* [[How to capture screen shots and videos]]&lt;br /&gt;
* [[How to add lava, water, glass and other materials to your map]]&lt;br /&gt;
* [[How to make secret doors, walls &amp;amp; floors]]&lt;br /&gt;
* [[How to make ramps, bridges, and angles]]&lt;br /&gt;
* [[How to make a forest]]&lt;br /&gt;
* [[How to make a cave]]&lt;br /&gt;
* [[How to make a hidden room]]&lt;br /&gt;
* [[How to make a realistic river]]&lt;br /&gt;
* [[How to make a swimming pool with a diving board]]&lt;br /&gt;
* [[How to make a boat]]&lt;br /&gt;
* [[How to make a fountain]]&lt;br /&gt;
* [[How to make a bathroom]]&lt;br /&gt;
* [[How to make steps]]&lt;br /&gt;
* [[How to make a fish pond]]&lt;br /&gt;
* [[How to make a TV]]&lt;br /&gt;
* [[How to change gravity]]&lt;br /&gt;
* [[How to copy, paste, rotate, and resize cube builds]]&lt;br /&gt;
* [[How to transfer parts of a map to a new one]]&lt;br /&gt;
* [[How to save a map properly]]&lt;br /&gt;
* [[How to put fog in a map]]&lt;br /&gt;
* [[How to make a night time map]]&lt;br /&gt;
* [[How to make a morning map]]&lt;br /&gt;
* [[How to make a sunset map]]&lt;br /&gt;
* [[How to make a trigger load another map]]&lt;br /&gt;
* [[How to change textures in your map]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=512</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=512"/>
				<updated>2009-07-05T05:52:23Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
Note: This is a temporary zone for me to hash out these tutorials before they are made visible on the front page. Then I plan on moving them in 1 by 1. :-D&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to 1 way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=511</id>
		<title>Clownfish&#039;s Step-By-Step Tutorials</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Clownfish%27s_Step-By-Step_Tutorials&amp;diff=511"/>
				<updated>2009-07-05T05:50:29Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: New page: Step-By-Step Tutorials  * How to add characters * How to make characters talk with text pop-up windows * How to make characters talk with a voice recording * [[How to make char...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Step-By-Step Tutorials&lt;br /&gt;
&lt;br /&gt;
* [[How to add characters]]&lt;br /&gt;
* [[How to make characters talk with text pop-up windows]]&lt;br /&gt;
* [[How to make characters talk with a voice recording]]&lt;br /&gt;
* [[How to make characters give you quests]]&lt;br /&gt;
* [[How to make items that can be picked up]]&lt;br /&gt;
* [[How to make a store]]&lt;br /&gt;
* [[How to make create new map models with Blender]]&lt;br /&gt;
* [[How to make new textures]]&lt;br /&gt;
* [[How to add bots and train them]]&lt;br /&gt;
* [[How to add various lighting]]&lt;br /&gt;
* [[How to add particle effects]]&lt;br /&gt;
* [[How to make a tree house]]&lt;br /&gt;
* [[How to make moving doors and platforms in single player mode]]&lt;br /&gt;
* [[How to make a nice waterfall]]&lt;br /&gt;
* [[How to edit terrain properly]]&lt;br /&gt;
* [[How to fix bad terrain or geometry errors]]&lt;br /&gt;
* [[How to add your own music]]&lt;br /&gt;
* [[How to make sloped roofs]]&lt;br /&gt;
* [[How to create 3D grass]]&lt;br /&gt;
* [[How to create skymaps]]&lt;br /&gt;
* [[How to create other useful cube scripts in a game]]&lt;br /&gt;
* [[How to create a train]]&lt;br /&gt;
* [[How to create snow or rain]]&lt;br /&gt;
* [[How to create lens flares]]&lt;br /&gt;
* [[How to create mountains, ponds, and oceans]]&lt;br /&gt;
* [[How to create glass steps]]&lt;br /&gt;
* [[How to create glass stairs]]&lt;br /&gt;
* [[How to create a slide]]&lt;br /&gt;
* [[How to create a trampoline]]&lt;br /&gt;
* [[How to 1 way windows only you can see out of]]&lt;br /&gt;
* [[How to create electric fences]]&lt;br /&gt;
* [[How to create invisible tunnels]]&lt;br /&gt;
* [[How to create warp tunnels]]&lt;br /&gt;
* [[How to create climbable ladders and vertical walls]]&lt;br /&gt;
* [[How to create hidden teleports]]&lt;br /&gt;
* [[How to create spinning palm trees]]&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=510</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=510"/>
				<updated>2009-07-05T05:27:24Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
* [[Clownfish&amp;#039;s Step-By-Step Tutorials]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.jpg|150px|alt Clownfish]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;br /&gt;
&lt;br /&gt;
***** Random Ideas *****&lt;br /&gt;
(all are welcome to use these ideas. If you found the idea here, please give me a little credit)((have lots of fun with these and develop them to your hearts content))&lt;br /&gt;
&lt;br /&gt;
-Haunted House map, where kids/anyone searches for 21 lost items. Escape with all and WIN! House includes &amp;#039;false walls&amp;#039;, &amp;#039;trap doors&amp;#039;, posted &amp;#039;clues&amp;#039;, secret levers, territorial &amp;#039;cartoon ghost&amp;#039; (&amp;quot;Casper like&amp;quot;, but will try to &amp;#039;tag&amp;#039; you and send you back to &amp;#039;front door, or take 1 of your items and hide it again on you.&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=509</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=509"/>
				<updated>2009-07-05T05:11:54Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: Clownfish&amp;#039;s random ideas!.. Enjoy!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.jpg|150px|alt Clownfish]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;br /&gt;
&lt;br /&gt;
***** Random Ideas *****&lt;br /&gt;
(all are welcome to use these ideas. If you found the idea here, please give me a little credit)((have lots of fun with these and develop them to your hearts content))&lt;br /&gt;
&lt;br /&gt;
-Haunted House map, where kids/anyone searches for 21 lost items. Escape with all and WIN! House includes &amp;#039;false walls&amp;#039;, &amp;#039;trap doors&amp;#039;, posted &amp;#039;clues&amp;#039;, secret levers, territorial &amp;#039;cartoon ghost&amp;#039; (&amp;quot;Casper like&amp;quot;, but will try to &amp;#039;tag&amp;#039; you and send you back to &amp;#039;front door, or take 1 of your items and hide it again on you.&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=498</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=498"/>
				<updated>2009-05-18T04:44:50Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.jpg|150px|alt Clownfish]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=497</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=497"/>
				<updated>2009-05-18T04:23:42Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.jpg|200px|alt Clownfish]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=496</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=496"/>
				<updated>2009-05-18T04:22:23Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.png|200px|alt Clownfish]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=495</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=495"/>
				<updated>2009-05-18T04:20:17Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
&lt;br /&gt;
[[Image:Clownfish.jpg]]&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=File:Clownfish.jpg&amp;diff=494</id>
		<title>File:Clownfish.jpg</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=File:Clownfish.jpg&amp;diff=494"/>
				<updated>2009-05-18T04:19:55Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: A small clownfish image for my page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A small clownfish image for my page.&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=493</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=493"/>
				<updated>2009-05-18T04:13:30Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: Clownfish&amp;#039;s &amp;#039;Sandbox&amp;#039; brainstorming area. Procceed with caution!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here I will list some brainstorming ideas I have come up with for Sandbox.&lt;br /&gt;
&lt;br /&gt;
This is in reference to a &amp;#039;Learning Map&amp;#039; I want to make. This map will teach players &amp;#039;Sandbox&amp;#039; in-game. Players can walk from station to station and learn &amp;#039;Sandbox&amp;#039; tips from NPCs with .txt popups or recorded voice .ogg sound files.&lt;br /&gt;
&lt;br /&gt;
Here are my basic categories you can teleport to from the main hub in this map:&lt;br /&gt;
1=Fundamental Info&lt;br /&gt;
2=Basics&lt;br /&gt;
3=Intermediate&lt;br /&gt;
4=Advanced&lt;br /&gt;
5=Other cool things you can do with sandbox you may have not thought of&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=487</id>
		<title>User:Clownfish</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=User:Clownfish&amp;diff=487"/>
				<updated>2009-05-12T03:25:14Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: New page: Welcome to Clownfish&amp;#039;s page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to Clownfish&amp;#039;s page.&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Content_request&amp;diff=486</id>
		<title>Content request</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Content_request&amp;diff=486"/>
				<updated>2009-05-10T14:15:10Z</updated>
		
		<summary type="html">&lt;p&gt;Clownfish: /* Models Wanted List */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Models Wanted List==&lt;br /&gt;
&lt;br /&gt;
NEED &amp;lt;br&amp;gt;&lt;br /&gt;
* Vegetable extractor (a vegetable type pump) - serves as the kid friendly rpg melee attack&lt;br /&gt;
* A frog with animations to be The Master Chef&amp;#039;s companion&lt;br /&gt;
* (DONE) Treasure chest with open and close animation. (Captain Ahab made one.)&lt;br /&gt;
* Cabbage - Assigned to Mike/calimer &amp;lt;br&amp;gt;&lt;br /&gt;
* Monsters for the sidescroller - Mike/calimer working on one &amp;lt;br&amp;gt;&lt;br /&gt;
* doors with opening, and mapmodel animations. kinda sci-fi ish. see door1.jpg for a messy concept drawing. Also one to fit in an rpg and one for modern times&lt;br /&gt;
* Elevator/Platform models, something like out of jak and daxter (a round thing that hovers or has some fire or something underneath it) would be quite cool. (Captain Ahab made one.)&lt;br /&gt;
* More Varieties of trees, from small ferns to huge overgrown oaks and willows.&lt;br /&gt;
* (DONE) A waterwheel, like those medieval kind that spins around as a stream pushes it. (Captain Ahab made one.) &lt;br /&gt;
* A player character for sandbox lite (it needs to meet debian free, so CC3 BY SA at the most)&lt;br /&gt;
* Map Models for weapons. vegetable pump, Carrot Launcher, snow ball projectiles, and other weapons.&lt;br /&gt;
&lt;br /&gt;
WOULD BE NICE &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* master chef ogro model with chef hat and potentially pots and pans that can be used for armor &lt;br /&gt;
* Squirt gun models for the water wars mode &amp;lt;br&amp;gt;&lt;br /&gt;
* Kid player models for water wars mode &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* vegetable related creatures &amp;lt;br&amp;gt;&lt;br /&gt;
* evil king for the RPG &amp;lt;br&amp;gt;&lt;br /&gt;
* Animals - Deer (eats grass, drinks water), &lt;br /&gt;
* bunnies hopping around&lt;br /&gt;
* Npcs - miner, fishing dude&lt;br /&gt;
* bird(s)&lt;br /&gt;
* frogs&lt;br /&gt;
* more fish? whales? dolphins?&lt;br /&gt;
&lt;br /&gt;
==Levels==&lt;br /&gt;
* an eye candy map to show off the graphics&lt;br /&gt;
&lt;br /&gt;
Would be nice &amp;lt;br&amp;gt;&lt;br /&gt;
* levels for the sidescroller, though it is getting a lot of updates.&lt;br /&gt;
* any levels with fun and unique gameplay/quests&lt;br /&gt;
* levels for the RPG&lt;/div&gt;</summary>
		<author><name>Clownfish</name></author>	</entry>

	</feed>