Small Basic GorillasQuickBasic had Gorillas and now Small Basic does too!<br/><br/><img src="http://farm4.static.flickr.com/3380/3536737323_b13a5b9663.jpg?v=0" alt="" width=350 height=250> <img src="http://farm3.static.flickr.com/2435/3537550818_1b0dd21686.jpg?v=0" alt="" width=350 height=250> <img src="http://farm4.static.flickr.com/3611/3536737131_bdd7b3578b.jpg?v=0" alt="" width=350 height=250> <img src="http://farm3.static.flickr.com/2091/3536737213_725eb1b7af.jpg?v=0" alt="" width=350 height=250><br/><br/><br/>Image, Sound, Exe and Source files can be downloaded here<br/><a href="http://code.msdn.microsoft.com/SmallBasicGorillas">http://code.msdn.microsoft.com/SmallBasicGorillas</a><br/><br/><br/>I tried to publish, but got this error-<br/>  Failed to publish program to the web.<br/>  Your program was not published to the server.  It was either empty or too large.© 2009 Microsoft Corporation. All rights reserved.Thu, 02 Jul 2009 00:09:43 Za5dfd911-d704-412f-86c9-02e019f7e1dahttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#a5dfd911-d704-412f-86c9-02e019f7e1dahttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#a5dfd911-d704-412f-86c9-02e019f7e1daRushworkshttp://social.msdn.microsoft.com/Profile/en-US/?user=RushworksSmall Basic GorillasQuickBasic had Gorillas and now Small Basic does too!<br/><br/><img src="http://farm4.static.flickr.com/3380/3536737323_b13a5b9663.jpg?v=0" alt="" width=350 height=250> <img src="http://farm3.static.flickr.com/2435/3537550818_1b0dd21686.jpg?v=0" alt="" width=350 height=250> <img src="http://farm4.static.flickr.com/3611/3536737131_bdd7b3578b.jpg?v=0" alt="" width=350 height=250> <img src="http://farm3.static.flickr.com/2091/3536737213_725eb1b7af.jpg?v=0" alt="" width=350 height=250><br/><br/><br/>Image, Sound, Exe and Source files can be downloaded here<br/><a href="http://code.msdn.microsoft.com/SmallBasicGorillas">http://code.msdn.microsoft.com/SmallBasicGorillas</a><br/><br/><br/>I tried to publish, but got this error-<br/>  Failed to publish program to the web.<br/>  Your program was not published to the server.  It was either empty or too large.Sun, 17 May 2009 01:44:14 Z2009-06-25T05:38:03Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#d5b48964-1df9-4b9d-90d3-1485a4c12baahttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#d5b48964-1df9-4b9d-90d3-1485a4c12baabigdaddyohttp://social.msdn.microsoft.com/Profile/en-US/?user=bigdaddyoSmall Basic GorillasHaha that's great!  I remember this, really nice job!  Options and fades, wow.  Lotta work there.  I need an any key too.  Poor sun...<br/><br/>One little bug, often when it starts it only lets you control player 2 on the right side, and he can only shoot right.  My any key was spacebar, sometimes enter, sometimes arrows.Sun, 17 May 2009 08:13:42 Z2009-05-17T08:13:42Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#9eeaccce-0023-4703-ba9d-3995b0ff24a1http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#9eeaccce-0023-4703-ba9d-3995b0ff24a1Vijaye Rajihttp://social.msdn.microsoft.com/Profile/en-US/?user=Vijaye%20RajiSmall Basic GorillasNice game, RushWorks.  Amazing amount of work you have put in there.<br/><br/>I believe you've hit the limits of Publish feature's program size.  I have just increased the max limit to accomodate your program.  Please go ahead and try again.<br/><br/>Also, if you were to upload these resources to a web location, you wouldn't have to ship out a Zip file.  I've uploaded all the .bmp files to <a href="http://smallbasic.com/drop/gorilla/">http://smallbasic.com/drop/gorilla/</a>, but for some reason my web host doesn't support download of .wav files.  <br/><br/>When I played the game, I hit the same issues that bigdaddyo hit.Sun, 17 May 2009 09:23:31 Z2009-05-17T09:23:31Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#cd368ad6-97c2-426a-895c-912392f75ffchttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#cd368ad6-97c2-426a-895c-912392f75ffcRushworkshttp://social.msdn.microsoft.com/Profile/en-US/?user=RushworksSmall Basic Gorillas<blockquote>One little bug, often when it starts it only lets you control player 2 on the right side, and he can only shoot right. </blockquote> My original gorilla.sb file did not have this bug (same code though).  After I used the published version, I noticed it too.<br/>I was using the original QB code to swap the thrower, <br/>      Thrower = Math.GetRandomNumber(2)<br/>      J = Thrower<br/>      J = 1 - J<br/>      Thrower = J + 1<br/>      TargetGorilla = 3 - J<br/>I've changed to this now<br/>      Thrower = Math.GetRandomNumber(2)<br/>      Thrower = 3 - Thrower<br/>      TargetGorilla = 3 - Thrower<br/><br/><br/> <blockquote>My any key was spacebar, sometimes enter, sometimes arrows.</blockquote> I haven't had a problem with this.  I did have trouble with sounds playing at the correct time. I changed some Sound.Plays to Sound.PlayAndWait and it results in having to wait for the sound to finish before the keypress is recognized.<br/><br/><br/> <blockquote>I believe you've hit the limits of Publish feature's program size.  I have just increased the max limit to accomodate your program.  Please go ahead and try again.</blockquote> <a href="http://smallbasic.com/smallbasic.com/program/?NLQ667-0">http://smallbasic.com/smallbasic.com/program/?NLQ667-0</a><br/>Note: You need to uncomment one line<br/>      ' The following line could be harmful and has been automatically commented.<br/>      '   File.GetFiles(Path, FileArray)<br/> Sun, 17 May 2009 13:46:16 Z2009-05-17T13:51:47Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#1219974c-48f9-49b9-9b9d-4f065f6a8711http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#1219974c-48f9-49b9-9b9d-4f065f6a8711bigdaddyohttp://social.msdn.microsoft.com/Profile/en-US/?user=bigdaddyoSmall Basic GorillasWorks great now.  I indicated my 'any key' thinking maybe pressing it to get past intro screens might have leaked into the game causing it behave strange, but looks like you found the problem.  I'm going to try to bring back an old game from the dead maybe this week, never before seen in basic (that I know of).<br/><br/>This is a great game for kids to learn angles, and maybe optimal ballistic missile trajectories haha.Sun, 17 May 2009 17:05:20 Z2009-05-17T17:05:59Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#f7fb5b03-fc3d-4e83-9925-342efd147292http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#f7fb5b03-fc3d-4e83-9925-342efd147292bigdaddyohttp://social.msdn.microsoft.com/Profile/en-US/?user=bigdaddyoSmall Basic Gorillas<p>Found a new bug, if you drill through the earth with bananas it crashes hehe</p>Sat, 13 Jun 2009 01:57:39 Z2009-06-13T01:57:39Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#040ccf07-201b-47ce-b9e3-c4152c9cb021http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#040ccf07-201b-47ce-b9e3-c4152c9cb021Rushworkshttp://social.msdn.microsoft.com/Profile/en-US/?user=RushworksSmall Basic GorillasA simple check for the banana below the ground level in the DoShot subroutine fixes it.<br/><br/>    If (BananaY &gt; GroundLevel) Then<br/>      WhatWasHit = &quot;OutOfBounds&quot;<br/>      OnScreen = &quot;False&quot;<br/>    EndIf<br/><br/>Gorilla v1.1<br/><span style="color:#0033cc"><a href="http://smallbasic.com/smallbasic.com/program/?NLQ667-1">http://smallbasic.com/smallbasic.com/program/?NLQ667-1</a><br/><br/></span>Sat, 13 Jun 2009 03:37:42 Z2009-06-13T03:37:42Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#eb86c9b2-87cf-4d9a-a05e-822c9cda0a36http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#eb86c9b2-87cf-4d9a-a05e-822c9cda0a36Vijaye Rajihttp://social.msdn.microsoft.com/Profile/en-US/?user=Vijaye%20RajiSmall Basic GorillasRushworks,<br/><br/>Could you get this updated for v0.5?  I'd like to publish this as our sample of the week.<br/><br/>Thanks.Fri, 19 Jun 2009 03:02:23 Z2009-06-19T03:02:23Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#fdb64f04-ca2c-4137-8ac3-0ce86bd5ca6ahttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#fdb64f04-ca2c-4137-8ac3-0ce86bd5ca6aRushworkshttp://social.msdn.microsoft.com/Profile/en-US/?user=RushworksSmall Basic Gorillas<p>Gorilla v2.0<br/>  <a href="http://smallbasic.com/smallbasic.com/program/?NLQ667-2">http://smallbasic.com/smallbasic.com/program/?NLQ667-2</a></p> <p>Sound files can be found at<br/>  <a href="http://code.msdn.microsoft.com/SmallBasicGorillas">http://code.msdn.microsoft.com/SmallBasicGorillas</a></p> <p><br/>Sorry for the delay, I am having trouble with my computer and internet.</p> <p>After version 0.5 of SB came out, I had decided to redesign the code for SBGorillas.<br/>Some code was unnecessary, some was experimenting with the compiler, other changes were just new ideas/different approaches I thought of trying.</p> <p>While the gameplay is the same, some new features were not working correctly and were removed or commented out.  I hope to correct these but I don't expect it will be anytime soon.</p> <p> </p>Thu, 25 Jun 2009 03:03:05 Z2009-06-25T06:38:05Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#91a02f1d-7a69-4551-b242-ce20b7cf5546http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#91a02f1d-7a69-4551-b242-ce20b7cf5546Vijaye Rajihttp://social.msdn.microsoft.com/Profile/en-US/?user=Vijaye%20RajiSmall Basic GorillasGorillas is Sample of this week.  Congratulations Rushworks.<br/><a href="http://blogs.msdn.com/smallbasic/archive/2009/07/01/sample-of-the-week-gorillas.aspx"><br/>http://blogs.msdn.com/smallbasic/archive/2009/07/01/sample-of-the-week-gorillas.aspx</a>Wed, 01 Jul 2009 16:02:26 Z2009-07-01T16:03:23Zhttp://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#f39d1de7-c6a2-47a3-b1a0-989f65efa8c5http://social.msdn.microsoft.com/Forums/en-US/smallbasic/thread/a5dfd911-d704-412f-86c9-02e019f7e1da#f39d1de7-c6a2-47a3-b1a0-989f65efa8c5GARussellhttp://social.msdn.microsoft.com/Profile/en-US/?user=GARussellSmall Basic GorillasI remember the game also, but it's been so long I forgot the keys for throwing the banana. Is there instructions somewhere?<br/><br/>GlennThu, 02 Jul 2009 00:09:42 Z2009-07-02T00:09:42Z