Jump to content

? servers

? players online

Eldest

Legend
  • Posts

    2686
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Eldest

  1. http://www.dailymail.co.uk/news/article-1351142/White-man-issued-provisional-driving-licence-featuring-hijab-clad-Asian-woman.html What do I win?:O
  2. CA was taken cause I wasn't active and SA was taken for who knows what reason :p

  3. Dunno, I wake up and it's gone :p. Asked GarfieldH on steam he didn't answer, lol. :d

  4. I have 33 lessons per week I believe, meh.
  5. outside steam on computer:Photoshop, Flash CS3, video-editing, C/C++, online poker outside = gym, school, used to play tennis and do magic, but too busy right now, also I take math lessons at an university atm. to help with my exams and on weekends i usually hang out with my girlfriend
  6. First video is cool, but damn, the name. What the hell, why couldn't they put one that is actually possible to pronounce internationally.
  7. Don't really have a favorite artist or band, I like a bunch of them. Franz Ferdinand is cool . Disturbed is interesting too. See how they are totally different genres, so I can't really put one of them as number 1
  8. I haven't seen any age verifications requests yet and you can always just play @ "play money" tables for fun if you want
  9. 2500

    That's such an amazing achievement. Someone give this guy a medal
  10. So how many of you play online poker here and what are your achievements so far? I play @ Full Tilt Poker and I play by one rule: never put in your own money. So I start off my bankroll with freerolls and then head to cash tables. This is my earnings so far: 20. January: Starting bankroll:2$ 20. January: 3.16$ 21. January: 4.78$ 23. January: 2.11$ 24. January: 4.02$ 25. January: 7.49$ 26. January: 11.10$ 27. January: 15.34$ 29. January: 14.35$ 30. January: 16.32$ As you can see it is progressing nicely(and slowly Has anyone else tried to build up their bankroll from 0? Have you won any major events? Also, we need some poker tourneys in SG
  11. http://www.ebaumsworld.com/video/watch/727474/
  12. Only 2 5-min bans, so 0
  13. Impressive
  14. Turn Around Turtle, he kicks ass
  15. Might be there this time, will see
  16. Agreed, I'm pretty fucking confused.
  17. Oh my god KScrop,
  18. http://www.swfupload.com/view/151052.htm SpaceTowers.as = main screen package { import flash.utils.Timer; import flash.events.TimerEvent; import flash.display.MovieClip; import flash.ui.Mouse; import flash.events.KeyboardEvent; import flash.ui.Keyboard; import flash.events.Event; public class SpaceTowers extends MovieClip { public var player:Player; public var useMouseControl:Boolean; public var downKeyIsBeingPressed:Boolean; public var upKeyIsBeingPressed:Boolean; public var leftKeyIsBeingPressed:Boolean; public var rightKeyIsBeingPressed:Boolean; public function SpaceTowers() { downKeyIsBeingPressed = false; upKeyIsBeingPressed = false; leftKeyIsBeingPressed = false; rightKeyIsBeingPressed = false; player = new Player; addChild(player); player.x = 200; player.y = 200; addEventListener( Event.ADDED_TO_STAGE, onAddToStage ); addEventListener(Event.ENTER_FRAME, loop, false, 0, true); }//end function SpaceTowers public function onAddToStage( event:Event ):void { stage.addEventListener( KeyboardEvent.KEY_DOWN, onKeyPress ); stage.addEventListener( KeyboardEvent.KEY_UP, onKeyRelease ); }//end onAddToStage function public function onKeyPress( keyboardEvent:KeyboardEvent ):void { if ( keyboardEvent.keyCode == Keyboard.DOWN ) { downKeyIsBeingPressed = true; } else if ( keyboardEvent.keyCode == Keyboard.UP ) { upKeyIsBeingPressed = true; } else if ( keyboardEvent.keyCode == Keyboard.LEFT ) { leftKeyIsBeingPressed = true; } else if ( keyboardEvent.keyCode == Keyboard.RIGHT ) { rightKeyIsBeingPressed = true; } }//onKeyPress public function onKeyRelease( keyboardEvent:KeyboardEvent ):void { if ( keyboardEvent.keyCode == Keyboard.DOWN ) { if ( keyboardEvent.keyCode == Keyboard.DOWN ) { downKeyIsBeingPressed = false; } else if ( keyboardEvent.keyCode == Keyboard.UP ) { upKeyIsBeingPressed = false; } else if ( keyboardEvent.keyCode == Keyboard.LEFT ) { leftKeyIsBeingPressed = false; } else if ( keyboardEvent.keyCode == Keyboard.RIGHT ) { rightKeyIsBeingPressed = false; } } }//onKeyRelease public function loop(e:Event):void { if (upKeyIsBeingPressed) { player.liigu(); } else { player.peatu(); } if (rightKeyIsBeingPressed) { player.keeraParemale(); } else if (leftKeyIsBeingPressed) { player.keeraVasakule(); } if ( player.x { player.x = player.width / 2; } if ( player.x > 500 - ( player.width / 2 ) ) { player.x = 500 - ( player.width / 2 ); } if ( player.y { player.y = player.height / 2; } if ( player.y > 400 - ( player.height / 2 ) ) { player.y = 400 - ( player.height / 2 ); } } }//end class } Player.as = player package { import flash.display.MovieClip; import flash.display.Stage; import flash.events.Event; public class Player extends MovieClip { private var speed:Number = 0.3; private var rotateSpeed:Number = 5; private var vx:Number = 0; private var vy:Number = 0; private var friction:Number = 0.95; public function Ship():void { } public function liigu() { vy += Math.sin(degreesToRadians(rotation)) * speed; vx += Math.cos(degreesToRadians(rotation)) * speed; y += vy; x += vx; } public function peatu() { vy *= friction; vx *= friction; y += vy; x += vx; } public function keeraParemale() { rotation += rotateSpeed; } public function keeraVasakule() { rotation -= rotateSpeed; } public function degreesToRadians(degrees:Number):Number { return degrees * Math.PI / 180; } } } The Document Class: package { import flash.display.MovieClip; public class DocumentClass extends MovieClip { public var playScreen:SpaceTowers; public function DocumentClass() { playScreen = new SpaceTowers(); playScreen.x = 0; playScreen.y = 0; addChild( playScreen ); } } } Problem: After pressing any arrow key, the game stops responding to key input. Wtf? Ideas?
  19. Wake up,Leo

    Moorpheus is awesome
  20. Same. Been using this for a long time. why change
  21. what ever they sell in stores..the usual one..just milk..without any particular taste
×
×
  • Create New...