Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Spaceship
Post: RE: Spaceship

Thanks (Aug-06-2021, 07:53 PM)SheeppOSU Wrote: (Jul-26-2021, 07:15 AM)abscorpy Wrote: Here is the link for the Github Repo https://github.com/abscorpy/Spaceship Cheers If the file structure look...
abscorpy Game Development 13 8,107 Aug-07-2021, 11:25 PM
    Thread: Spaceship
Post: RE: Spaceship

Here is the link for the Github Repo https://github.com/abscorpy/Spaceship Cheers
abscorpy Game Development 13 8,107 Jul-26-2021, 07:15 AM
    Thread: Spaceship
Post: RE: Spaceship

Hello guys, me again. I dont know why it throws me this error: Traceback (most recent call last): File "D:\Alan\Python\First_Game\First_Game_1.py", line 29, in <module> YELLOW_SPACESHIP_...
abscorpy Game Development 13 8,107 Jul-23-2021, 09:25 AM
    Thread: Spaceship
Post: RE: Spaceship

Now this is the code i have, it doesnt run again Can anyone help me Thanks for the support! **smile** import pygame import os pygame.font.init() pygame.mixer.init() WIDTH, HEIGHT = 900, 500 WIN...
abscorpy Game Development 13 8,107 May-22-2021, 11:25 AM
    Thread: Spaceship
Post: RE: Spaceship

Thanks for the support, but now what doesnt run is the Handle_movement() function Can you please help me, thanks for the support! thanks! (May-06-2021, 10:16 PM)BashBedlam Wrote: What you have s...
abscorpy Game Development 13 8,107 May-11-2021, 09:08 PM
    Thread: Spaceship
Post: Spaceship

Im trying to tun this code which is a shooter game, if anyone can help me i would really appreciate it, i attach images. https://github.com/abscorpy/Spaceships/b...ip_red.png https://github.com/absco...
abscorpy Game Development 13 8,107 May-06-2021, 07:05 PM
    Thread: Rock/Paper/Scissors Game 1
Post: RE: Rock/Paper/Scissors Game 1

(Sep-03-2020, 06:16 PM)armila Wrote: It's that simple! Rock, Paper, Scissors is a basic game that anyone can play and win. There is no natural favorable position to the more grounded, more establish...
abscorpy Game Development 6 3,824 Dec-01-2020, 09:51 AM
    Thread: Rock/Paper/Scissors Game 1
Post: RE: Rock/Paper/Scissors Game 1

Hi metalburr, can you please implement your code into my code so that i can have a pause menu, i dont know how to do it, thanks a lot for the support, see you soon!!! **smile** I mean, i know that...
abscorpy Game Development 6 3,824 Sep-13-2020, 02:29 PM
    Thread: Rock/Paper/Scissors Game 1
Post: Rock/Paper/Scissors Game 1

Im trying to add a 'PAUSE MENU' to this game. Can anyone help? Im trying to add: - 'Continue' button - 'Controls' button - 'Quit' button import pygame from pygame.locals import * import random WIDT...
abscorpy Game Development 6 3,824 Jun-23-2020, 12:14 AM
    Thread: Tetris 3
Post: RE: Tetris 3

New error message: Traceback (most recent call last): File "E:\Users\Usuario1\Documents\abscorp\Python\tetris.py", line 357, in <module> main_menu(win) File "E:\Users\Usuario1\Documents...
abscorpy Game Development 3 3,012 Dec-10-2019, 06:34 PM
    Thread: Tetris 3
Post: Tetris 3

import pygame import random pygame.font.init() #GLOBAL VARS s_width = 800 s_height = 700 play_width = 300 play_height = 600 block_size = 30 top_left_x = (s_width - play_width) // 2 top_left_y = (s...
abscorpy Game Development 3 3,012 Dec-06-2019, 01:26 PM
    Thread: Tetris 2
Post: Tetris 2

import pygame import random pygame.font.init() #GLOBAL VARS s_width = 800 s_height = 700 play_width = 300 play_height = 600 block_size = 30 top_left_x = (s_width - play_width) // 2 top_left_y = (s...
abscorpy Game Development 1 1,836 Dec-04-2019, 03:13 PM
    Thread: Tetris
Post: Tetris

import pygame import random pygame.font.init() #GLOBAL VARS s_width = 800 s_height = 700 play_width = 300 play_height = 600 block_size = 30 top_left_x = (s_width - play_width) // 2 top_left_y = (s...
abscorpy Game Development 1 2,503 Nov-02-2019, 09:13 AM
    Thread: TypeError: integer argument expected, got float
Post: TypeError: integer argument expected, got float

So as you can see in the bottom of this page, i have an error in my code, thanks for the support, have a great day! Hope you can help me fix it import pygame from pygame.locals import * import random...
abscorpy Game Development 1 6,857 Oct-17-2019, 05:31 PM
    Thread: Tetris - AttributeError: 'list' object has no attribute 'y'
Post: RE: Tetris

Now i have the following error message with the same code: Error:Traceback (most recent call last): File "E:\Users\Usuario1\Documents\abscorp\tetris.py", line 314, in <module> main_menu(w...
abscorpy Game Development 6 6,584 Feb-28-2019, 04:23 PM
    Thread: Tetris - AttributeError: 'list' object has no attribute 'y'
Post: Tetris - AttributeError: 'list' object has no attr...

Hi, im making a Tetris game and I got stucked the error showing on screen is the following: Error:Traceback (most recent call last): File "E:\Users\Usuario1\Documents\abscorp\tetris.py", line 3...
abscorpy Game Development 6 6,584 Feb-25-2019, 07:26 PM
    Thread: rock paper scissors game
Post: RE: rock paper scissors game

Andreas how do i call it? In the mainloop or after i call mainloop before quitting pygame? Thanks forma the support
abscorpy Game Development 8 4,567 Feb-14-2019, 07:20 PM
    Thread: rock paper scissors game
Post: RE: rock paper scissors game

This is my code so far, im trying to make a rock/paper/scissors game in which you have to catch the rocks and you need to avoid the scissors Thanks for the support What i need to do is to make the ...
abscorpy Game Development 8 4,567 Feb-11-2019, 01:22 AM
    Thread: rock paper scissors game
Post: RE: rock paper scissors game

This is the correct code: import pygame import random pygame.init() # Did code to python pep 8 style guide. # https://www.python.org/dev/peps/pep-0008/ class Player: @classmethod def loa...
abscorpy Game Development 8 4,567 Jan-29-2019, 04:43 PM
    Thread: rock paper scissors game
Post: RE: rock paper scissors game

im not followinga tutorial, though someone from this forum helped me with my game.... thanks for the support This is my code so far, but now i have a new issue, im trying to draw some scissors comin...
abscorpy Game Development 8 4,567 Jan-29-2019, 03:35 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020