Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - Alex

Pages: [1]
1
Graphics / Some Wallpapers
« on: August 25, 2015, 02:56:48 am »
I have a deviantart account and I put my wallpapers on it.  I have seven on it so far.  I also have many renders that I have made and some short stories that I have written.  The link is in my signature (or here).

2
Entertainment / New Leaf
« on: August 14, 2015, 05:59:46 am »
Anyone here play Animal Crossing: New Leaf?  I want to know if it's worth the buy.

3
Coding / Any pygame users?
« on: March 13, 2013, 11:23:56 pm »
I have a problem in the pong game I am developing using the pygame module (written in python).  My problem is the paddle (mouse) won't show up, it's just blank.  If you need further input about my code at all, feel free to ask.

Code: [Select]
#!/usr/bin/python
import pygame
from pong import Pong
from pygame.locals import *

# Create an instance
game = Pong()

# Initalize the game
pygame.init()
screen = pygame.display.set_mode((900,600),0,32)
screen.blit(screen, (0,0))
 
pygame.mouse.set_visible(False)     # Hide mr. mouse
beeper = pygame.image.load('paddle.png')     # Paddle
bpaddle = pygame.image.load('blank_paddle.png')     # Paddle that is drawn over the green one to ensure "motion"

paddle_rect = beeper.get_rect()
blank_rect = bpaddle.get_rect()
bounds_rect = pygame.Rect(0, 0, 300, 300)
paddle_pos = (0,0)

while True:
     for event in pygame.event.get():
          if event.type == QUIT:
               sys.exit()

     paddle_pos = pygame.mouse.get_pos()
     paddle_rect.center = pygame.mouse.get_pos()
     screen.blit(beeper, paddle_rect)
     pygame.draw.line(screen, game.lineColor, game.net1, game.net2, game.netWidth)
     screen.blit(bpaddle, paddle_rect)
     pygame.display.update()

4
Entertainment / Favorite Cartoon(s)
« on: December 09, 2012, 10:49:20 pm »
Can be any cartoon.  One of my favourites, non-anime, would have to be Felix the Cat.  Of course my favorite anime would be Neon Genesis Evangelion.

5
Entertainment / Do YOU collect?
« on: December 09, 2012, 09:37:36 pm »
Do any of you collect stuff? I myself collect comic books and action figures. My favourite would have to be Fantastic Four.

6
Entertainment / Looking for a show...
« on: November 02, 2012, 11:12:36 pm »
I am on the hunt for a download of AIR TV.  I had it awhile back but lost the disc :'(

7
Entertainment / Da Capo II
« on: November 02, 2012, 10:07:15 pm »
Looks good... should I watch it?

8
Entertainment / Soul Silver
« on: October 27, 2012, 11:20:08 pm »
Is Pokemon Soul Silver worth playing?

9
Entertainment / Skyward Sword
« on: October 04, 2012, 03:10:02 am »
This is hard to me... no not the game difficulty level, but one I do anything remotely challenging the game gets even more addictive.  So I need help here:  how can I stop playing and give my eyeballs a break?

Pages: [1]

Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.058 seconds with 31 queries.