On 5/28/14 12:32 PM, funky wrote:
import pygame <== a very good place to start
import random
import time
import sys
http://www.pygame.org/wiki/tutorials
My hourly rate is $295.00 /hour, w/2hour minimum, happy to send you a
contract of engagement and a copy of my document of unde
On Wed, May 28, 2014 at 11:32 AM, funky wrote:
> while done == False:
> for event in pygame.event.get():
> if event.type == pygame.QUIT:
> done == True
Here is one fairly obvious bug; you used "==" where you presumably
intended to do an assignment. As it stands it will ju
On 2014-05-28, funky wrote:
[program that apparently doesn't work]
I'll fix it for you. My rates are $150/hour with a 4-hour minimum
paid up-front.
--
Grant Edwards grant.b.edwardsYow! PUNK ROCK!! DISCO
at DUCK!! BIRTH CO
In <8bc01036-ee9e-4de9-b569-7039dcc05...@googlegroups.com> funky
writes:
What do you want the program to do?
What is it doing instead?
Do you get any error messages?
Don't just throw code at us and ask us to fix it...
--
John Gordon Imagine what it must be like for a real medical doct
On 05/28/2014 10:32 AM, funky wrote:
<100+ lines of code removed.>
No way. This is not a paid service, but rather a community of Python
users. You can get lots of help here, but you have to put in some
work. Please take the time to tell us:
What this code should do.
What it actually d
import pygame
import random
import time
import sys
black = (0, 0, 0)
white = (255, 255, 255)
red = (255, 0, 0)
class Block(pygame.sprite.Sprite):
def __init__(self, color, width, height):
pygame.sprite.Sprite.__init__(self)
self.image = pygame.Surface([width, height])
s