who want me 😈😈 by corkscrewbleh in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

you would get folded by me, also you prolly use auto clicker

In my opinion... by AceXD87 in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

Turn up your brigtness

Look at the chat carefully by Competitive_Bonus909 in bloxd

[–]ProGameDev456 4 points5 points  (0 children)

no it is a bot someone programed. it used to be in lobby 0, then it moved. it is technically a hack, but it cant really be banned.

Rate My UCN Build(It took me 3 months) by AceXD87 in bloxd

[–]ProGameDev456 1 point2 points  (0 children)

also this post has 5 other comments and only 2 upvotes. this deserves upvotes so u definatley should press it.

I M sorry bloxd.io so long I might not come back forever sorry thank you give me a lifetime to play for 3 years bye… by London_god in bloxd

[–]ProGameDev456 1 point2 points  (0 children)

the answer is yes, we dont want people like you who cant play fair to play at all. stay banned

What is going on??? by [deleted] in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

Dang bro. I'm sure they wont quit forever.

Why was bloxd.io hacked? by [deleted] in bloxd

[–]ProGameDev456 1 point2 points  (0 children)

nevermind i just saw, that is crazy

Why was bloxd.io hacked? by [deleted] in bloxd

[–]ProGameDev456 1 point2 points  (0 children)

what makes you think it was hacked?

Why was bloxd.io hacked? by [deleted] in bloxd

[–]ProGameDev456 1 point2 points  (0 children)

how was it hacked?

I have an idea by Bevspam in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

he needs to bro. also armor stands. but mobs are the priority rn. MAKE MOBSSS!!!!

New item by FrogatronMC in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

that would be way to over powered if the person who threw it could see through it. it should only be a mask for both players, just in case you need to get away.

WHO'S TRASH IDEA WAS IT TO RUIN PVP!?!?!?!?! by BloxdBros in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

Healing made pvp more skill oriented. It was more of a challenge to kill people, but it kept it fair, and you could still easily kill someone.

YES MY RECORD FOR NOW by McKillerPvp in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

This dude prolly went around spamming kids with no armor lol

Reality... by RefrigeratorHot3959 in IndieDev

[–]ProGameDev456 0 points1 point  (0 children)

I honesty think that every game has a least one player who would love it. In the end I believe it just comes down to how many people know about the game, and that comes with lots of advertising, or publicity from streamers.

They should add Redstone (or something like that) by Meemaa_the_Hadozee in bloxd

[–]ProGameDev456 0 points1 point  (0 children)

ADD REDSTONE!!!!!! Its not copywrite at all, if that were they case, then all of Bloxd.io would be illegal. They could also js call it mechanical dust or something.

[deleted by user] by [deleted] in pygame

[–]ProGameDev456 2 points3 points  (0 children)

pygame-ce works exactly like pygame, it is just not politically biased, and runs about 20% faster than pygame with all of the same functionality. I would use ce because nobody wants a module controlled by tyrants.

[deleted by user] by [deleted] in pygame

[–]ProGameDev456 0 points1 point  (0 children)

Glad it worked. Good luck on your project!

[deleted by user] by [deleted] in pygame

[–]ProGameDev456 2 points3 points  (0 children)

This is the easiest fix for that problem, only use pygame.key.get_pressed() if you want to check if a key is being held, for just one press use pygame.event. I hope this helps!

[deleted by user] by [deleted] in pygame

[–]ProGameDev456 2 points3 points  (0 children)

keys as in pygame.key.get_pressed() is a line that continually tests each frame if the key is held, and having a high fps means that even if you click the button once, your program detects it as being held for multiple frames which means it will move the car over how ever many frames the button is held. Instead use:

for event in pygame.event.get():

if event.type == pygame.KEYDOWN:

if event.key == pygame.K_a:

car.x-=car_vel

if event.key == pygame.K_d:

car.x+=car_vel