Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - chanmanpartyman

Pages: 1
1
Archives / Re: Stencylimpics
« on: July 03, 2012, 11:01:30 am »
@SWATLLAMA I was stupid to think otherwise :P Changing it as we speak...

2
Archives / Stencylimpics
« on: July 02, 2012, 03:37:19 pm »
With the 2012 Olympics coming up (yay!) I thought it might be a good idea to have a Stencyl-wide contest, Stencylimpics. Basically, there are 24 teams, and anyone can join them. Then everyone from the team submits a project that somehow indicates it is for the Stencylimpics, perhaps in the description. Whichever team(s) excel in one or more of the following will get some sort of prize:
Gameplay
Creativity
Sounds
Humor
Overall

3
Ask a Question / Re: Multiplayer
« on: June 28, 2012, 10:41:32 pm »
You can make games like checkers (not games with commonly updating positions from both players). You will have to learn PHP and host a site. You can use the HTTP POST and GET blocks under Game\Web.
EDIT: Can you cut it out with the glows?

4
Chit-Chat / Re: Has anyone ever failed a project?
« on: June 28, 2012, 05:19:19 pm »
Happens all the time to me. My latest project is actually one I dumped over 3 months ago, I touched up on it a lot.

5
Game Art / Re: What programs do yall use to make yalls art?
« on: June 27, 2012, 05:56:05 pm »
I use Adobe Fireworks CS6 for most of my graphics. I also use MS Paint then bring the image into Fireworks and very slightly blur the whole image.

6
Old Bugs (1.x/2.x) / Re: Loading Screen Not Working
« on: June 27, 2012, 09:36:42 am »
For the loading screen, yes.

7
Windows / Mac / Flash / HTML5 / Darting Dreamer
« on: June 26, 2012, 09:26:33 pm »
I made my very first game, darting dreamer! I'll show you the icon

and the link
http://www.stencyl.com/game/play/13381.

Enjoy! :)

8
Old Bugs (1.x/2.x) / Re: Do while and repeat until crash iOS apps
« on: June 26, 2012, 09:20:32 pm »
They are both atomic, meaning it will repeat the action until it's goal is achieved, but it does it in one frame. So if the outcome is very rare, the system could get confused and crash after it runs through it about 1,000,000 times.

9
Old Bugs (1.x/2.x) / Loading Screen Not Working
« on: June 26, 2012, 09:16:09 pm »
I noticed on my game that my loading screen wouldn't load online. All I get is the watermark and a teal loading bar with a black background.
(see http://www.stencyl.com/game/play/13381)

10
Chit-Chat / Re: What Have You Been Playing Lately?
« on: June 26, 2012, 12:01:35 pm »
Halo Combat Evolved Anniversary, MW3, and ShellShock Live (http://www.newgrounds.com/portal/view/564049)

11
Ask a Question / Downloading Stencyl Games from the Website
« on: June 25, 2012, 04:12:12 pm »
This is a tutorial on how to download games from the website without using Forge.
Step 1
If you don't already have Firefox, please download it at http://www.mozilla.org/en-US/firefox/new/.
Step 2
Go to the page you want and click "view page info".
Step 3
Click on "media" then scroll down until you see an address with the type: Object.
Step 4
Click is and then press "save as..."
Step 5
Then save it and you're done!
Now you can play games on the go or email them to friends!

12
Resolved Questions / Where would I post a "how-to"?
« on: June 25, 2012, 03:41:19 pm »
I've been looking at the fora, and I can't find a topic for how-to's. Would here be the ideal place for a guide on downloading games from Stencyl (without using Forge).
EDIT: I didn't pay enough attention, it is here! It won't let me delete this topic ???

13
Too lazy to post an image. Hopefully this will appeal to your vision. Pay attentions to the <'s snd >'s
always {
  if < [ [x of sefl] > [x limit to right] ] > {
    set x of self to [x limit to right]
  }
  if < [ [x of sefl] < [x limit to left] ] > {
    set x of self to [x limit to left]
  }
  if < [ [y of sefl] > [y limit to bottom] ] > {
    set x of self to [x limit to bottom]
  }
  if < [ [y of sefl] < [y limit to top] ] > {
    set x of self to [y limit to right]
  }
}
or the code
Code: [Select]
if((actor.getX() > 500))
{
            actor.setX(500);
}

if((actor.getX() < 50))
{
            actor.setX(50);
}

if((actor.getY() > 200))
{
            actor.setY(200);
}

if((actor.getY() < 50))
{
            actor.setY(50);
}

14
News / Re: Stencyl 3.0 - Design Once. Play Anywhere.
« on: June 24, 2012, 12:16:28 pm »
Awesome! I wasn't impressed with the difference from Stencyl and Stencyl 2.0, 3.0 seems like it will be a lot better.

15
Chit-Chat / Re: Introduce Yourself!
« on: June 24, 2012, 12:10:07 pm »
Hey guys! I've actually been on Stencyl for awhile. I just decided to join the forums now though :P. Anyhow, I have my first game coming up, called Escaping Monochrome. It's about a guy that lives in a town ruled by an evil dictator who has sucked out all of the color in what the citizens think is the entire world. The country is heavily guarded, and anyone who sees outside is executed. So you have to go through a bunch of levels 'n' stuff :P I'm really looking forward to finishing it!
Oh yeah, I know some ActionScript, HTML, CSS, very little PHP, and JavaScript. I don't think Scratch counts :P

Pages: 1