<?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=Cochise</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=Cochise"/>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Special:Contributions/Cochise"/>
		<updated>2026-05-03T03:58:38Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Creating_a_shop_script&amp;diff=588</id>
		<title>Creating a shop script</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Creating_a_shop_script&amp;diff=588"/>
				<updated>2009-11-18T23:06:59Z</updated>
		
		<summary type="html">&lt;p&gt;Cochise: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a shop example script for you to edit to your liking.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
      &amp;quot;on_start&amp;quot; = [&lt;br /&gt;
         money = 0&lt;br /&gt;
         pie = 0&lt;br /&gt;
         sword = 0&lt;br /&gt;
         treasure = 0&lt;br /&gt;
         ]&lt;br /&gt;
    &lt;br /&gt;
      &amp;quot;level_trigger_1&amp;quot; = [ money = ( + $money 5 )&lt;br /&gt;
         echo &amp;quot;You got 5 moneys.&amp;quot;&lt;br /&gt;
         ]&lt;br /&gt;
    &lt;br /&gt;
      &amp;quot;level_trigger_2&amp;quot; = &amp;quot;showgui Shopkeeper&amp;quot;&lt;br /&gt;
      newgui Shopkeeper [&lt;br /&gt;
         guitext &amp;quot;What&amp;#039;re ya buyin, stranger?&amp;quot; chat&lt;br /&gt;
         guibar&lt;br /&gt;
         guilist [&lt;br /&gt;
            guibutton &amp;quot;Pie: 10 moneys&amp;quot; [&lt;br /&gt;
               if ( &amp;gt; $money 9 ) [&lt;br /&gt;
                  money = ( - $money 10 )&lt;br /&gt;
                  pie = ( + $pie 1 )&lt;br /&gt;
               ]&lt;br /&gt;
            ]&lt;br /&gt;
    &lt;br /&gt;
            guibar&lt;br /&gt;
            guibutton &amp;quot;Sword: 20 moneys&amp;quot; [&lt;br /&gt;
               if ( &amp;gt; $money 19 ) [&lt;br /&gt;
                  money = ( - $money 20 )&lt;br /&gt;
                  sword = ( + $sword 1 )&lt;br /&gt;
                  ]&lt;br /&gt;
               ]&lt;br /&gt;
  &lt;br /&gt;
            guibar&lt;br /&gt;
            guibutton &amp;quot;Treasure: 40 moneys&amp;quot; [&lt;br /&gt;
               if ( &amp;gt; $money 39 ) [&lt;br /&gt;
                  money = ( - $money 40 )&lt;br /&gt;
                  treasure = ( + $treasure 1 )&lt;br /&gt;
                  ]&lt;br /&gt;
               ]&lt;br /&gt;
         ]&lt;br /&gt;
      ]&lt;br /&gt;
   &lt;br /&gt;
      newgui Inventory [&lt;br /&gt;
      guibutton &amp;quot;Back&amp;quot; &amp;quot;cleargui 1&amp;quot;&lt;br /&gt;
      guibar&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 moneys in your wallet.&amp;quot; $money )&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 pies.  Yum.&amp;quot; $pie )&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 swords.  Not that you can use them...&amp;quot; $sword )&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 treasures.  Lucky you!&amp;quot; $treasure )&lt;br /&gt;
      ]&lt;br /&gt;
    &lt;br /&gt;
      newgui main [&lt;br /&gt;
         guilist [&lt;br /&gt;
            guilist [&lt;br /&gt;
               guibutton &amp;quot;Inventory&amp;quot; &amp;quot;showgui Inventory&amp;quot;&lt;br /&gt;
            ]&lt;br /&gt;
         ]&lt;br /&gt;
         guibar&lt;br /&gt;
         @main&lt;br /&gt;
      ]&lt;/div&gt;</summary>
		<author><name>Cochise</name></author>	</entry>

	<entry>
		<id>https://www.sandboxgamemaker.com/wiki/index.php?title=Creating_a_shop_script&amp;diff=587</id>
		<title>Creating a shop script</title>
		<link rel="alternate" type="text/html" href="https://www.sandboxgamemaker.com/wiki/index.php?title=Creating_a_shop_script&amp;diff=587"/>
				<updated>2009-11-18T23:05:20Z</updated>
		
		<summary type="html">&lt;p&gt;Cochise: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a shop example script for you to edit to your liking.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
      &amp;quot;on_start&amp;quot; = [&lt;br /&gt;
         money = 0&lt;br /&gt;
         pie = 0&lt;br /&gt;
         sword = 0&lt;br /&gt;
         treasure = 0&lt;br /&gt;
         ]&lt;br /&gt;
      &amp;quot;level_trigger_1&amp;quot; = [ money = ( + $money 5 )&lt;br /&gt;
         echo &amp;quot;You got 5 moneys.&amp;quot;&lt;br /&gt;
         ]&lt;br /&gt;
      &amp;quot;level_trigger_2&amp;quot; = &amp;quot;showgui Shopkeeper&amp;quot;&lt;br /&gt;
      newgui Shopkeeper [&lt;br /&gt;
         guitext &amp;quot;What&amp;#039;re ya buyin, stranger?&amp;quot; chat&lt;br /&gt;
         guibar&lt;br /&gt;
         guilist [&lt;br /&gt;
            guibutton &amp;quot;Pie: 10 moneys&amp;quot; [&lt;br /&gt;
               if ( &amp;gt; $money 9 ) [&lt;br /&gt;
                  money = ( - $money 10 )&lt;br /&gt;
                  pie = ( + $pie 1 )&lt;br /&gt;
               ]&lt;br /&gt;
            ]&lt;br /&gt;
            guibar&lt;br /&gt;
            guibutton &amp;quot;Sword: 20 moneys&amp;quot; [&lt;br /&gt;
               if ( &amp;gt; $money 19 ) [&lt;br /&gt;
                  money = ( - $money 20 )&lt;br /&gt;
                  sword = ( + $sword 1 )&lt;br /&gt;
                  ]&lt;br /&gt;
               ]&lt;br /&gt;
            guibar&lt;br /&gt;
            guibutton &amp;quot;Treasure: 40 moneys&amp;quot; [&lt;br /&gt;
               if ( &amp;gt; $money 39 ) [&lt;br /&gt;
                  money = ( - $money 40 )&lt;br /&gt;
                  treasure = ( + $treasure 1 )&lt;br /&gt;
                  ]&lt;br /&gt;
               ]&lt;br /&gt;
         ]&lt;br /&gt;
      ]&lt;br /&gt;
      newgui Inventory [&lt;br /&gt;
      guibutton &amp;quot;Back&amp;quot; &amp;quot;cleargui 1&amp;quot;&lt;br /&gt;
      guibar&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 moneys in your wallet.&amp;quot; $money )&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 pies.  Yum.&amp;quot; $pie )&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 swords.  Not that you can use them...&amp;quot; $sword )&lt;br /&gt;
      guitext ( format &amp;quot;You have %1 treasures.  Lucky you!&amp;quot; $treasure )&lt;br /&gt;
      ]&lt;br /&gt;
    &lt;br /&gt;
      newgui main [&lt;br /&gt;
         guilist [&lt;br /&gt;
            guilist [&lt;br /&gt;
               guibutton &amp;quot;Inventory&amp;quot; &amp;quot;showgui Inventory&amp;quot;&lt;br /&gt;
            ]&lt;br /&gt;
         ]&lt;br /&gt;
         guibar&lt;br /&gt;
         @main&lt;br /&gt;
      ]&lt;/div&gt;</summary>
		<author><name>Cochise</name></author>	</entry>

	</feed>