Got a bunch of games. thumbup;
Finally sealed up my childhood by beating Banjo Kazooie. thumbup;
Got Persona 4 which is better than all the other games I've gotten since TF2. thumbup;
Spent time after school with acquaintances, which including going to movies and eating at restaurants, etc. thumbup;
Some chick coerced me into kissing her. thumbdown;
Same chick coerced me into feeling her nipples. thumbup; / thumbdown;
Started some simple game development, including making a pong clone and currently a different and far better project with Zidone. thumbup;
Got a 29 on my ACT (although I'm certain Guff beat me, but damn good nonetheless) thumbup;
also my simple pong clone i made a few weeks back: [spoiler]#!/usr/bin/env python
import pygame
from pygame.locals import *
from sys import exit
pygame.init()
screen = pygame.display.set_mode((640, 480), 0, 32)
clock = pygame.time.Clock()
my_font = pygame.font.SysFont('arial', 60)#Sets font to be used for score display
ball_x, ball_y = 240, 200 #Location of the ball
paddle_y = 0#Paddles' position
move_y = 0
speed_x, speed_y = 110, 120#Speed of ball in x, y direction
score_1 = 0#Scores
score_2 = 0
while True:
for event in pygame.event.get():
if event.type == QUIT:
exit()
if event.type == KEYDOWN:
if event.key == K_w:
move_y = -6
if event.key == K_s:
move_y = +6
if event.type == KEYUP:
if event.key == K_w:
move_y = 0
if event.key == K_s:
move_y = 0
if paddle_y< -1:#If the paddle goes up to high, it stops
paddle_y = 0
if paddle_y >480:#Down too low, stops
paddle_y = 475
else:
paddle_y+= move_y#Otherwise, keep moving
time_passed= clock.tick(40)
time_passed_seconds = time_passed /1000.
screen.fill((0, 10, 50))
pygame.draw.rect(screen, (255, 255, 255), Rect((20, paddle_y), (20, 90)))#Draws paddle 1
pygame.draw.rect(screen, (255, 255, 255), Rect((600, paddle_y), (20, 90)))#Draws paddle 2
my_color_left = screen.get_at((int(ball_x-21), int(ball_y)))#Gets colors of pixel directly left to ball
my_color_right = screen.get_at((int(ball_x+21), int(ball_y)))#Gets pixel directly right
ball_x += speed_x *time_passed_seconds#Ball's x location
ball_y += speed_y *time_passed_seconds#Ball's y location
if ball_y > 475 or ball_y < 2:#Goes too high or too low, bounces back
speed_y = -speed_y
if my_color_left[0] == 255:#Left is white, bounce
ball_x +=6#You have to make it force to the right a few pixels or it'll get stuck on the paddle
speed_x = -speed_x
if my_color_right[0] == 255:#If right pixel is white, bounce
ball_x -=6#Move left a few pixels for same reason
speed_x = -speed_x
if ball_x> 615 :#Too farright, bounce
ball_x, ball_y = 320, 200
score_1 +=1
if ball_x <25:
ball_x, ball_y = 320, 200
score_2 += 1
pygame.draw.circle(screen, (255, 255, 255), (int(ball_x), int(ball_y)), 20)#draws the ball
text_surf = my_font.render("%d %d"%(score_1, score_2), True, (150, 150, 150))
screen.blit(text_surf, (220, 20))
pygame.display.set_caption("Pong Clone v1.2")
pygame.display.update()
[/spoiler]
I'm certain there's other stuff but I'm just forgetting it.
Good job. Well done! n_u
WAS SHE UGLY
Quote from: Det's Placenta on December 26, 2008, 03:16:19 AM
WAS SHE UGLY
NOT AS UGLY AS *Name removed to avoid the wrath of James Valente ;) *
SHE AT LEAST LOOKS LIKE A WOMAN
I LOVE YOU ;)
Welcome back, Lawlzie.
Good to see you're hanging out with people. How were the boobs?
oh hello thar lawlz
No. ;)
Dreams do come true. giggle;
glad you had fun
and glad your fun is over now that you were sucked back into Boyah n_u
Quote from: Selkie224 on December 26, 2008, 07:35:28 AM
glad you had fun
and glad your fun is over now that you were sucked back into Boyah n_u
he said he'll never come back ;______________;
About time you showed up to tease us. baddood;
Quote from: Det's Placenta on December 26, 2008, 07:36:37 AM
he said he'll never come back ;______________;
my christmas is now ruined ;_______________;
I've missed you :'(
How is your hair?
Sounds like you had a productive absents. I bet you have been lurking...
HOLY SHIT IT'S LAWLZ
stick around a while ;)
Hi Lawlz.
i only ever took the sat baddood;
Hi lawlz, do you wish to engage in sexual activities giggle;
Quote from: Wrenchninja on December 26, 2008, 06:20:02 AM
Welcome back, Lawlzie.
Good to see you're hanging out with people. How were the boobs?
They're softer than I could have ever imagined.
and nipples feel like little rubber nubs
Quote from: famy on December 26, 2008, 08:47:11 AM
I've missed you :'(
How is your hair?
beautiful, as always
Getting it trimmed tomorrow. ;)
Quote from: Commodore Guff on December 26, 2008, 11:50:51 AM
i only ever took the sat baddood;
well you should have taken the act because you probably would've gotten a 35
The math was the simplest section and just composed of 7th grade geometry. "If this side is this long and another is this long, find the length of the final side."
yet somehow one of my friends only got a 17 and i wanted to cry for him
some girl in my graduating class got a 13 on the ACT
Hi Lawlz, I missed you.
Sounds like you've been happy lately. giggle;
WAS SHE BLACK
hey lawlz
Quote from: Kaz on December 26, 2008, 01:00:51 PM
some girl in my graduating class got a 13 on the ACT
lol
I love the kids that say they're going to be COMPUTER PROGRAMMERS, ENGINEERS, X-RAY TECHNICIANS, OTHER CRAZY SHIT but know absolutely nothing.
what'd you get on the act
Quote from: Santakefs on December 26, 2008, 01:20:56 PM
WAS SHE BLACK
sadly no
Quote from: Lawlz on December 26, 2008, 01:22:29 PM
lol
I love the kids that say they're going to be COMPUTER PROGRAMMERS, ENGINEERS, X-RAY TECHNICIANS, OTHER CRAZY SHIT but know absolutely nothing.
what'd you get on the act
27 :(
I'M SLOW WITH MATH
Quote from: Kaz on December 26, 2008, 01:23:36 PM
27 :(
I'M SLOW WITH MATH
but it was so simple
The only part I messed up was science. We had to use wooden pencils, and as we all know, wooden pencils usually have the shittiest erasers. I accidentally filled in one wrong box, tried to fix it, and shit smudged over like 5 problems. So I spent a couple minutes trying to erase it, decided to move on to the next question, then came back and tried to erase again. I ended up wasting a lot of time and had to rush to simply fill in the last ten questions or so.
i could have so easily gotten a 30 if my eraser didn't suck :'(
Woah
Hi
good job
nigger
welcome back.
Quote from: Lawlz on December 26, 2008, 01:22:29 PM
I love the kids that say they're going to be COMPUTER PROGRAMMERS, ENGINEERS, X-RAY TECHNICIANS, OTHER CRAZY SHIT but know absolutely nothing.
theres some girl thats taking algebra as a sophomore that says she wants to be a neurosurgeon
Hi there. Sounds like you had fun.
Quote from: Claquesous on December 26, 2008, 02:53:09 PM
Hi there. Sounds like you had fun.
WHY DIDN'T YOU VISIT ME :'(
Sorry about that. Well, turns out we didn't have the two teacher workdays this year like usual in October, and also there was that gas shortage. And who would take care of my grandma?
Maybe someday.
Quote from: Claquesous on December 26, 2008, 04:26:00 PM
Sorry about that. Well, turns out we didn't have the two teacher workdays this year like usual in October, and also there was that gas shortage. And who would take care of my grandma?
Maybe someday.
your grandma could visit
Maybe during spring break you can visit if you have a chance ;)
Nah, she can't even get out of the house. Has to be wheelchaired around to the doctor's office and stuff like that.
Spring break, I dunno. If I have a license by then, I'll see what I can do.
Quote from: Lawlz on December 26, 2008, 12:59:47 PM
They're softer than I could have ever imagined.
and nipples feel like little rubber nubsbeautiful, as always
I coulda told you that. I just wanted to hear your description/reaction.
I told Chelsea that you returned.
She said "yay" and then like 5 seconds later she was like "well sorta."
Hi lawls.
i think geno is happy
nipplez