Pendulum

user_icon archmage shared it 6 months, 2 weeks ago
545 views, 18 people love it, 2 taggers, 89 downloads, in 2 galleries, 10 remixes
Add to my favorites?
Flag as inappropriate?

Comments

You need to be logged in to post comments

Add a Comment

Shadow-Kun Shadow-Kun 3 weeks, 6 days ago

Great! This could be useful...

(view all replies)
Comment Reply

zipperipper zipperipper 4 weeks, 1 day ago

WOW! its good! guess what! i am making a 3-part-pendulem using this!

(view all replies)
Comment Reply

double-06 double-06 2 months ago

gooood

(view all replies)
Comment Reply

alien99 alien99 2 months, 3 weeks ago

i mean i like this, it's good. i could use this in my secret plans to dominate the world using BACON! it's a joke, ok. don't take it seriously! also, check out my guy i like to call bucktooth (he's a smiley) here :B also check out mad bucktooth here >:B

(view all replies)
Comment Reply

archmage archmage 2 months, 3 weeks ago

Never underestimate the power of bacon...

(view all replies)
Comment Reply

alien99 alien99 2 months, 3 weeks ago

interesting, i like your style

(view all replies)
Comment Reply

mariobrosrule mariobrosrule 2 months, 3 weeks ago

What do you do?

(view all replies)
Comment Reply

Bluestribute Bluestribute 3 months ago

Only one project archmage

(view all replies)
Comment Reply

archmage archmage 3 months ago

k, I'll get rid of this one. Also say that you only want 1 project in your gallery discription.

(view all replies)
Comment Reply

archmage archmage 3 months ago

Oh my bad :P

(view all replies)
Comment Reply

pbugni pbugni 3 months ago

This gets addicting. I love to experiment with it!

(view all replies)
Comment Reply

Almafr Almafr 3 months, 1 week ago

How did you program that?

(view all replies)
Comment Reply

jessman jessman 4 months ago

archmage, ur like a freaking genius times OO (infinity); how old are you and how do you know so many programming languages? BTW, I'm almost 12 and know some Java.

(view all replies)
Comment Reply

terminator68 terminator68 4 months ago

he's in his teens

(view all replies)
Comment Reply

terminator68 terminator68 3 months, 2 weeks ago

(he's 17 to be exact :|)

(view all replies)
Comment Reply

terminator68 terminator68 3 months, 2 weeks ago

yep.

(view all replies)
Comment Reply

james_Mazz james_Mazz 4 months, 4 weeks ago

u rock

(view all replies)
Comment Reply

james_Mazz james_Mazz 4 months, 4 weeks ago

thanks for adding me to your friends list

(view all replies)
Comment Reply

codgam123456 codgam123456 5 months, 1 week ago

very complicated stuff. bravo archmage!

(view all replies)
Comment Reply

horselover horselover 5 months, 1 week ago

i like this

(view all replies)
Comment Reply

archtrucker archtrucker 5 months, 2 weeks ago

runeking.. thats sooo not simple!

(view all replies)
Comment Reply

Runeking Runeking 5 months, 2 weeks ago

lol its so symple but so cool

(view all replies)
Comment Reply

scratchman612 scratchman612 5 months, 3 weeks ago

Cool.

(view all replies)
Comment Reply

Bluestribute Bluestribute 5 months, 3 weeks ago

Your on my site (go to www.downloadablegamemaker.co.nr)

(view all replies)
Comment Reply

VF1 VF1 6 months ago

*sob* WAAAAAAAAAAA! lol!

(view all replies)
Comment Reply

archmage archmage 6 months ago

Lol, don't make a big deal out of it :P

(view all replies)
Comment Reply

VF1 VF1 6 months ago

I'll even flag my own comments now.

(view all replies)
Comment Reply

VF1 VF1 6 months ago

And I said sorry.

(view all replies)
Comment Reply

VF1 VF1 6 months ago

Sorry. I wasn't bragging. I was joking, and building upon someone else's remark. Basically, commenting. It was a comment, right?

(view all replies)
Comment Reply

archmage archmage 6 months ago

No one wants to hear you brag.

(view all replies)
Comment Reply

VF1 VF1 6 months ago

BTW, sorry to ruin the conversation. Just had to blurt it out. IamalsoaBlendermasterandIalsoknowBatch Whoopsee...

(view all replies)
Comment Reply

VF1 VF1 6 months ago

I do all of my coding in Eclipse SDK :P *Just responding to the "Almost no one on here knows any real programming languages" remark, I currently know: Java, C++, Python, BASIC, HTML, CSS, Javascript, Groovy, XML, Assembly, Smalltalk. I can also program an Arduino decimilla microcontroller board. That adds up to 12 programming languages. HA! :P

(view all replies)
Comment Reply

archmage archmage 6 months ago

Umm try casting the Math.random into an int type. x= (int) (Math.random()*11);

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

I just tried running it again and it says "Possible Loss of Precision" "Found: Double D" "Required: Int" Is there anything wrong with the program? public class Random { public static void main (String[] args) { int x = Math.random()*11; System.out.println("The Value of x is " + x); }

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

Could you tell me some more about JAVA?

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

I use CMD

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

Ok Thanx. By the way, will you add me to your friends?

(view all replies)
Comment Reply

archmage archmage 6 months ago

What do you mean? Math.random() just generates a random number from 0 to 1.

(view all replies)
Comment Reply

archmage archmage 6 months ago

I use a IDE. Also x= Math.random(); works for me everytime.

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

So there isn't a way to make it a completely random number with no limits right?

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

No i know that, but u cant say x = Math.random it doesn't read it. By the way do you use an IDE or do you just run it from CMD?

(view all replies)
Comment Reply

archmage archmage 6 months ago

Lol, you don't know Math.random? This is how to make a variable a random number : variable= Math.random()*11; //This will make the variable a random value from 0 to 10.

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

public class Loopy { public static void main (String[] args) { int x = 1; System.out.println("Before The Loop"); while (x < 4) { System.out.println("In the loop"); System.out.println("Value of x is " + x); x = x + 1; } System.out.println("This is after the loop."); } } This is one of my first JAVA scripts. And do you know how to make a JAVA variable be a random number? I'm kind of a noob at Java. But I've been in C++ for a long time.

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

Oh good. 'Cause some people on here don't know any of that stuff. I know C Java C++ Html and of course Flash

(view all replies)
Comment Reply

archmage archmage 6 months ago

Yes, I know java,actionscript,pascal, and html.

(view all replies)
Comment Reply

nkronsch nkronsch 6 months ago

Er...This isn't exactly a realistic pendulum. And archmage, do you know Java, or any REAL programming languages???!?!?

(view all replies)
Comment Reply

nikkiperson2 nikkiperson2 6 months ago

you could make little clkky things with this XD those little plastic balls where you pull one back and then then clak around...keh keh keh ^3^

(view all replies)
Comment Reply

legolover legolover 3 months, 1 week ago

A Newton's Cradle! Yay! You can entertain yourself for hours with one of those.

(view all replies)
Comment Reply

archmage archmage 6 months ago

That would be pretty funny :D

(view all replies)
Comment Reply

terminator68 terminator68 3 months, 2 weeks ago

check out my newest project, i fannly remmeber,ed, i forgot about it al along :(

(view all replies)
Comment Reply

terminator68 terminator68 3 months, 2 weeks ago

note that the movements and slightly cheesy

(view all replies)
Comment Reply

terminator68 terminator68 6 months ago

yeah, archmage is right. This pendulum is cool! mabye i'll remix itand have a guy who gets whacked after you let go after you pull back. BOOM! Uh oh spaghettio's! Then he'll fall over. MY OPINION

(view all replies)
Comment Reply

archmage archmage 6 months ago

Hey, I just felt like making it this way.

(view all replies)
Comment Reply

Lucario621 Lucario621 6 months ago

But shouldn't this pendulem be like a pendulem on a grandfather clock which keeps on going on and on.

(view all replies)
Comment Reply

Lucario621 Lucario621 6 months ago

OMG! You don't know what a chacotic pendulem is? Omg, Omg, Omg. Well just search it up on youtube or something. Your sure your that old?

(view all replies)
Comment Reply

archmage archmage 6 months ago

Click and drag it.

(view all replies)
Comment Reply

ryzde1 ryzde1 6 months ago

nothings happening....

(view all replies)
Comment Reply

puppylover52 puppylover52 6 months ago

NICE!!

(view all replies)
Comment Reply

Fluffybean4 Fluffybean4 6 months ago

that is COOL

(view all replies)
Comment Reply

lasc12 lasc12 6 months, 1 week ago

WOAH!

(view all replies)
Comment Reply

Bdog32 Bdog32 6 months, 1 week ago

awesome job

(view all replies)
Comment Reply

archmage archmage 6 months, 1 week ago

Whats a chacotic pendulum?

(view all replies)
Comment Reply