spidertyler2005

LD 43

regretting not using an engine

import pygame class init: def __init__(self,size): global possition possition = self possition.x = 0 possition.y = 0 possition.x_ = 0 possition.y_ = 0 self.x = 0 self.y = 0 self.size =size class draw: def __init__(self,window,size): pygame.draw.rect(window,(0,0,0),(possition.x,possition.y,size,size)) pygame.display.update() class MOVE: def update(): if abs(possition.x_) + abs(possition.y_) ==3: possition.x -=possition.x_ possition.y +=possition.y_ if abs(possition.x_) + abs(possition.y_) ==6: possition.x -=possition.x_/2 possition.y +=possition.y_/2 def wasd(event): MOVE.left(event) MOVE.right(event) MOVE.up(event) MOVE.down(event) def left(event): global possition if event.type == pygame.KEYDOWN: if event.key == pygame.K_a: possition.x_ = 3 if event.type == pygame.KEYUP: if event.key == pygame.K_a: if possition.x_ == 3: possition.x_ = 0 def right(event): global possition if event.type == pygame.KEYDOWN: if event.key == pygame.K_d: possition.x_ = -3 if event.type == pygame.KEYUP: if event.key == pygame.K_d: if possition.x_ == -3: possition.x_ = 0 def up(event): global possition if event.type == pygame.KEYDOWN: if event.key == pygame.K_w: possition.y_ = -3 if event.type == pygame.KEYUP: if event.key == pygame.K_w: if possition.y_ == -3: possition.y_ = 0 def down(event): global possition if event.type == pygame.KEYDOWN: if event.key == pygame.K_s: possition.y_ = 3 if event.type == pygame.KEYUP: if event.key == pygame.K_s: if possition.y_ == 3: possition.y_ = 0 that just movement(a little sloppy but works quite well :)) YEAH PYGAME IS "GREAT"

I working on this for 2 hours :(

this is I guess a basic tile engine which uses direction to determine which way you should go(hey cheat this if you want I did accidentaly in the game). ezgif-4-4e8e9a3986a9.gif

gosh darn glitch

SO its 6 PM for me and I have just gotten tiles done. Me and my friend have decided to change ideas, so its been intersting. Then after that I get an order on fiverr :( I spent an hour fixing a glitch.Then I realize its not fixed, just harder to use.

Yeah its been SUPER FUN

check out the "latest" version of a thing that isnt good

https://github.com/spidertyler2005/actual-ld43

requires python and pygame and a windows computer for the sound

if you dont have windows then go into the sound one and add try and except to the play thing(I will fix that later)

oof :(

I am just getting my basic features today. prob not going to finish. I am trying to get a friend but L they dont know much pygame and started learning it yesterday.

Its been fun tho.

lol just thought of something

so now my idea is you shoot in a areana and the more bullets you fire the more frames you lose. its perfect.

I was making the game and reliized if I fire 80 bullets it just makes the game lag. the more I fire the worst it is.

OH GOD ITS UGLY

so due to me just being overall bad. ITS REALLY UGLY. I might make a better version later. For now though you will need to settle for... well this... https://github.com/spidertyler2005/actual-ld43/upload (unfinish version)

I am "done"

okay its ugly and I hate it but... I finished.

I didnt have an idea till last minute so I couldnt commit to the idea. So I went for a BAD one.

darn :(

So I "finished my game"(really only got time to implement the basic mechanics). The game is ugly, Easy, and just bad. I might not submitt(its that bad). I am going try to remake my idea sometime in the futur tho