avatar for bookwormrwt

About me

I am a game developer. I like pizza, smiles, smiling pizzas, and smiles eating pizza. I love Fall Out Boy. Leave me a shout if you have ideas for other games you would like to see. /////////ActionScript for Snake//////////// var unit = 15; var uwh = 20; var canMove = false; var dir = 2; var score = 0; aPieceList = new Array(); mouseListener = new Object(); mouseListener.onMouseDown = function() { if (!canMove) { canMove = true; startGame(); } }; Mouse.addListener(mouseListener); k = new Object(); k.onKeyDown = function() { var k = Key.getCode(); if (k == Key.UP && dir != 2 && canMove) { dir = 0; canMove = false; } else if (k == Key.LEFT && dir != 3 && canMove) { dir = 1; canMove = false; } else if (k == Key.DOWN && dir != 0 && canMove) { dir = 2; canMove = false; } else if (k == Key.RIGHT && dir != 1 && canMove) { dir = 3; canMove = false; } }; Key.addListener(k); function addPiece() { var p = this.attachMovie("piece", "piece" + aPieceList.length, aPieceList.length); p._x = aPieceList[aPieceList.length - 1]._x; p._y = aPieceList[aPieceList.length - 1]._y; aPieceList.push(p); } function moveFood() { var moveIt = true; while (moveIt) { food._x = Math.floor(Math.random() * uwh) * unit; food._y = Math.floor(Math.random() * uwh) * unit; moveIt = false; for (var i = 0; i < aPieceList.length; i++) { if (aPieceList[i]._x == food._x && aPieceList[i]._y == food._y) { moveIt = true; } } } } function gameOver() { delete this.onEnterFrame; tScore.text = "You Lose. Score: " + score; canMove = false; } function startGame() { for (var i = aPieceList.length - 1; i >= 0; i--) { aPieceList[i].removeMovieClip(); aPieceList.pop(); } score = 0; var p = this.attachMovie("piece", "piece" + aPieceList.length, aPieceList.length); aPieceList.push(p); p._x = 10 * unit; p._y = 10 * unit; var food = this.attachMovie("food", "food", -1); var c = 0; moveFood(); var startingLength = 3; for (var i = 1; i < startingLength; i++) { addPiece(); } this.onEnterFrame = function() { canMove = true; tScore.text = score; for (var i = aPieceList.length - 1; i > 0; i--) { aPieceList[i]._x = aPieceList[i - 1]._x; aPieceList[i]._y = aPieceList[i - 1]._y; } if (dir == 0) { aPieceList[0]._y -= unit; } else if (dir == 1) { aPieceList[0]._x -= unit; } else if (dir == 2) { aPieceList[0]._y += unit; } else if (dir == 3) { aPieceList[0]._x += unit; } if (aPieceList[0]._y / unit == 20) { aPieceList[0]._y = 0; } else if (aPieceList[0]._y / unit == -1) { aPieceList[0]._y = 19 * unit; } else if (aPieceList[0]._x / unit == -1) { aPieceList[0]._x = 19 * unit; } else if (aPieceList[0]._x / unit == 20) { aPieceList[0]._x = 0; } if (aPieceList[0]._x == food._x && aPieceList[0]._y == food._y) { score += 10 * aPieceList.length / 2; moveFood(); addPiece(); } for (var i = 1; i < aPieceList.length; i++) { if (aPieceList[0]._x == aPieceList[i]._x && aPieceList[0]._y == aPieceList[i]._y) { gameOver(); } } }; } /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// I now make fps games. If you would like to download my first one, go t my site http://sites.google.com/site/bookwormrwt/home

  • Age: 15
  • Sex: Male
Latest Achievements
 
The Black Gate (completed)
The Black Gate (completed)
The Black Gate Badge (easy - 5 points)
Reach the gates of Orzammar on any difficulty setting in Dragon Age: Journeys
Acquired Nov. 21, 2009

bookwormrwt's Dragon Age Armory (What's this?)

Sword (0/5)
sword 1 unearned sword 2 unearned sword 3 unearned sword 4 unearned sword 5 unearned
Bow (0/5)
bow 1 unearned bow 2 unearned bow 3 unearned bow 4 unearned bow 5 unearned
Axe (2/5)
axe 1 earned axe 2 earned axe 3 unearned axe 4 unearned axe 5 unearned
Gifted By:
gitanil and Joey_G
Mace (1/5)
mace 1 earned mace 2 unearned mace 3 unearned mace 4 unearned mace 5 unearned
Gifted By:
Referos

bookwormrwt's Sounds

bookwormrwt's Art

bookwormrwt's game contributions

1254947489
level: THE WORM CONTRAPTION in Fantastic Contraption Prius Edition
My first level. Hope u like ;D
1251741966
level: My First Level (e... in Run
My first level v 2.0
1251741402
level: My first Level in Run
My first level

Shouts & Whispers

Shouts
Whispers
Person Content
avatar for Jindo
Jindo Curator_icon
Oct. 26, 2009

Unfortunately I’m far too busy to collab on a game <:C

avatar for Jindo
Jindo Curator_icon
Oct. 26, 2009

Now let’s go and find that Chocolate Helicopter they told me about D:

avatar for Jindo
Jindo Curator_icon
Oct. 25, 2009

My profile tells me you saved me from the zombies, nice one!

view all 19 shouts

bookwormrwt's comments

Game Comments
Play The Adventures of Corny
The Adventures of Corny
Oct. 11, 2009
Thank you all for your kind words >[
Play Robot Dinosaurs That Shoot Beams When They Roar
Robot Dinosaurs That Shoot Beams When They Roar
Sep. 30, 2009
ROOOOOOOAAAAAAAAAAAAAAAAAARRRRR!!!!!1!1!!
Play DiditzZz War Simulation Game
DiditzZz War Simulation Game
Sep. 28, 2009
Very good game, to short and theres only one way to win. Make it longer and add variables as far as ways to win
Click Here