Penguin941
87 posts
|
Topic: Kongregate /
Whats the point of points?
Will they be implemented into the site eventually or are they just a gimmick into getting people to stay on longer thus generating ad revenue?
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
ohh wow I can read minds. No duhh its printed. How else would the company put its logo on the paper? maybe with ink? Look at the box, you’re just trolling and can’t admit you are wrong.
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
lemme guess you still wont be satisfied and say its photoshopped right
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
alright this can be closed. I found out it is legit
http://i31.tinypic.com/2f092j5.jpg
picture of a prize from them. thankyou everybody
lol @ using wikipedia for facts. Just because its not listed there doesnt mean its not true
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
AwesomeWolf you’re so good at stating your opinion as fact with nothing to back it up. You’ll go far as a politician.
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
where’s your proof that they are lying. GOogle doesn’t lie. TimeWarner owns a share in their company. Thats a fact. They don’t ask you for any personal info. Just your email. No credit cards or anything. Only a shipping address to send your stuff. THey dont charge you for shipping. You send them no money ever.
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
lockerz is a site thats by invite only. You win points and can buy things like computers and videogames from them. Im part of it but do not know if its legit. Ive seen proof for neither side yet, but their facebook says it is owned by the same company that owns amazon.com and timewarner has a share in it according to stocks and timewarner is a respectable company.
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
find out about what? lockerz? they have a facebook
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Off-topic /
Does anyone know if that lockerz.com site is legit?
Im apprehensive toward it. Anyone here a member and can vouch for it?
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
im really bad at programming, i cant even figure out the slightest problem
play_btn is on another layer called menu. Does it matter? How do you use the Key.isDown function?
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
im really bad at programming, i cant even figure out the slightest problem
if (Key.isDown(Key.LEFT))
{
play_btn._visible=false;
}
my button with an instance name of play_btn wont disappear when I hit the left arrow. Why did I fail?
|
|
|
Penguin941
87 posts
|
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
What are some good simple projects to hone my beginner skills with?
Ive done those as well. I wanna make something on my own, like tic tac toe. Ive made some other simple programs. I learn best from the simple projects I do on my own. I just need some ideas so I an figure out how to tackle them.
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
What are some good simple projects to hone my beginner skills with?
I just read a book on flash and have learned quite a bit of beginner stuff. Whats a good prject to practice with. I have done tic tac toe and hangman. Needed help with hangman so looking for something simpler
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
Help me get started?
Thankyou so much for that link. It is amazing. Do you have any more sites like that?
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
Explain to me why this code works please?
function mover():Void
{
this.x+=this.xSpeed;
this.y+=this.ySpeed;
if (this.x<gLeft)
{
this.x=gLeft;
this.xSpeed= -this.xSpeed;
}
if (this.x>gRight)
{
this.x=gRight;
this.xSpeed= -this.xSpeed;
}
if (this.y<gTop)
{
this.y=gTop;
this.ySpeed= -this.ySpeed;
}
if (this.y>gBottom)
{
this.y=gBottom;
this.ySpeed= -this.ySpeed;
}
}
global.gLeft=5;
_global.gRight=545;
_global.gTop=5;
_global.gBottom=395;
slowBallmc.xSpeed=14;
slowBall_mc.ySpeed=14;
slowBall_mc.onEnterFrame=mover;
fastBall_mc.xSpeed=22;
fastBall_mc.ySpeed = 22;
fastBall_mc.onEnterFrame=mover;
How come when the ball starts in the middle it doesn’t just drop straight down, but rather moves downward diagonally?
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
best way to learn flash?
Im making a hang man game. I understand everything up until this bit of code. I can provide the whole code if needed
for (var i:Number = 0; i < selectedWord_str.length; i++)
{
lettersGuessed_array[i] = “?”;
interface_mc.display_txt.text += “?”;
}
};
interface_mc.enter_btn.onRelease = function()
{
wrong = true;
interface_mc.display_txt.text = "";
for (var i:Number = 0; i < selectedWord_str.length; i++)
{
foundLetter = lettersNeeded_array[i] == interface_mc.input_txt.text;
notGuessed = lettersGuessed_array[i] != interface_mc.input_txt.text;
if (foundLetter && notGuessed)
{
wrong=false;
lettersLeftToGo—;
lettersGuessed_array[i] = interface_mc.input_txt.text;
}
interface_mc.display_txt.text += lettersGuessed_array[i];
}
interface_mc.input_txt.text = "";
|
|
|
Penguin941
87 posts
|
Topic: Game Programming /
best way to learn flash?
Right now I have a book. I follow the examples, and retype the code but I dont always understand it all so I move on. Is this still a good way to learn?
|
|
|
Penguin941
87 posts
|
Topic: Kongregate Labs /
My shootorial sucked...
Did you redo the graphics yourself? They’re quite impressive.
|