Recent posts by Penguin941 on Kongregate

Subscribe to Recent posts by Penguin941 on Kongregate

avatar for Penguin941 Penguin941 87 posts
Flag Post

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?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Off-topic / Does anyone know if that lockerz.com site is legit?

http://img8.imageshack.us/img8/9003/mactc.png
http://img526.imageshack.us/img526/5842/proofm.jpg

are those fake too because a multimillion dollar company prints on paper?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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.

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Off-topic / Does anyone know if that lockerz.com site is legit?

if you were a member of the site like I am you would recognize that distinctly as from there.

http://i633.photobucket.com/albums/uu55/kddllsisils/0810091749.jpg?t=1249952576

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Off-topic / Does anyone know if that lockerz.com site is legit?

advice =/= baseless assumptions

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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.

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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.

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Off-topic / Does anyone know if that lockerz.com site is legit?

It means that its real.

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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.

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Off-topic / Does anyone know if that lockerz.com site is legit?

find out about what? lockerz? they have a facebook

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Off-topic / Does anyone know if that lockerz.com site is legit?

how do you know?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Game Programming / im really bad at programming, i cant even figure out the slightest problem

its on a layer in my timeline called actions

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Game Programming / What are some good simple projects to hone my beginner skills with?

Thanks a lot @CuriousGaming, Salvator, and mp630

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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.

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Game Programming / Help me get started?

Thankyou so much for that link. It is amazing. Do you have any more sites like that?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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;
slowBall
mc.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?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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 = "";

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

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?

 
avatar for Penguin941 Penguin941 87 posts
Flag Post

Topic: Kongregate Labs / My shootorial sucked...

Did you redo the graphics yourself? They’re quite impressive.