|
|
|
|
Posted: Wed Dec 13, 2006 3:41 pm
[.Maelthorn.] Is there a way to the stands from the inside of the arena?
Or is the wall not very high...? Stairs and junk. I'd wager the wall's like 20 feet or so.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:42 pm
themightyjello Anyways... is it anything BUT your eyes, or just that? Because your eyes adjust to a level of light, so obviously they're going to hurt a little and definitely give you headaches until you adjust to a higher level of light as a 'natural level'. May take a couple of days. I have skin erritation also, but that is something new.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:43 pm
Okay. Umbrifer was one of the first celestial beings created. He was formed of the darkness that existed since the beginning, the darkness uncorrupted by evil that moved in harmony with the light. He was given corporeal form, and in molding shadows, he is able to pass on that corporeality to them. Which I've said about a half-dozen times.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:46 pm
The concept of running into darkness and having it hurt like a wall, boggles my mind.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:48 pm
Thankfully for your mind, Umbrifer rarely uses his shadow abilities offensively.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:50 pm
But that's a defensive ability.
His mind is not safe.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:51 pm
Jello, of course, caught that.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:53 pm
Alright then, I'll let his mind boggle.
Yes. Umbrifer could take your shadow and beat you senseless with it if he so desired.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:56 pm
Raise your hand if you can code in Java.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:56 pm
I will keep my hand down then, because I can't.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 3:57 pm
I'd raise it but I have no idea. I'm sure I could if you gave me some to work with. That's how I learned HTML... by ripping apart websites.
|
 |
 |
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 4:01 pm
That's what I thought, too. Apparently a lot harder than that.
import objectdraw.*; import java.awt.*;
public class physics extends WindowController { public void begin (){
double theta,x,y,v,vx,vy,t,g,d;
//projectile math gravity/velocity/angle g=-9.8d; theta=45d; v=10d; vx=Math.cos(theta); vy=Math.sin(theta);
//projectile immage private Text bullet; bullet=new Text('o', vx, vy, canvas);
//projectile movement for (t=1; t<100; t=t+1){ x=vx*t; y=vy*t-0.5*g*t*t;
} } }
I don't know how to allow user input from keyboard. And yes, I'm trying to combine physics with Java.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 4:02 pm
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 4:04 pm
So to answer your question:
No, I can't program in java... though if I'm bored over winter break I might spend a day or two picking it up.
|
 |
 |
|
|
|
|
|
|
|
|
|
|
Posted: Wed Dec 13, 2006 4:07 pm
If you start, find a java program that ISN'T Eclipse. Because half the time it refuses to understand basic Java commands/terms.
|
 |
 |
|
|
|
|
|
|
 |
|