- 644
- 42 137
Aldrich C
เข้าร่วมเมื่อ 1 เม.ย. 2023
วีดีโอ
[python] a ladder climbing game EP1 |#python #codes #easygames
มุมมอง 1319 ชั่วโมงที่ผ่านมา
[python] a ladder climbing game EP1 |#python #codes #easygames
[roblox] [Grace] the speed run version of doors(hard) |#roblox #grace #gameplay
มุมมอง 7821 ชั่วโมงที่ผ่านมา
[roblox] [Grace] the speed run version of doors(hard) |#roblox #grace #gameplay
[chess] puzzles, recaping games|#chess
มุมมอง 5614 วันที่ผ่านมา
[chess] puzzles, recaping games|#chess
[chess]puzzles, specialrules(giveaway 2P)|#chess
มุมมอง 1214 วันที่ผ่านมา
[chess]puzzles, specialrules(giveaway 2P)|#chess
[python] a little bee game coded |#python
มุมมอง 4621 วันที่ผ่านมา
[python] a little bee game coded |#python
[chess] puzzles, special rules(giveaways) |#chess
มุมมอง 4421 วันที่ผ่านมา
[chess] puzzles, special rules(giveaways) |#chess
[roblox][Rivals] THE MINIGUN GOTEN BY GRINDING|#roblox #rivals #minigun #showcase
มุมมอง 29221 วันที่ผ่านมา
[roblox][Rivals] THE MINIGUN GOTEN BY GRINDING|#roblox #rivals #minigun #showcase
[chess] puzzles, lessons, special rules|#chess
มุมมอง 19หลายเดือนก่อน
[chess] puzzles, lessons, special rules|#chess
[stick it to the stickman]more funni gameplays|#stickittothestickman #fighting #gameplay
มุมมอง 47หลายเดือนก่อน
[stick it to the stickman]more funni gameplays|#stickittothestickman #fighting #gameplay
[google colaboratory][python] a white snowball and the seven faceless flying head draw by AI(python)
มุมมอง 19หลายเดือนก่อน
[google colaboratory][python] a white snowball and the seven faceless flying head draw by AI(python)
[chess] puzzles, special rules, lessons|#chess
มุมมอง 41หลายเดือนก่อน
[chess] puzzles, special rules, lessons|#chess
[google colaboratory][python] drawing a goofy mario |#googlecolab #python #colab
มุมมอง 31หลายเดือนก่อน
[google colaboratory][python] drawing a goofy mario |#googlecolab #python #colab
[chess] puzzles, vs another player, special rules|#chess
มุมมอง 11หลายเดือนก่อน
[chess] puzzles, vs another player, special rules|#chess
[chess] puzzles, vs other players, lessons| #chess
มุมมอง 89หลายเดือนก่อน
[chess] puzzles, vs other players, lessons| #chess
the codes: import os MAX_LADDER = 50 player_position = 0 def print_ladder(player_position): """Display the ladder and the player's position""" os.system('cls' if os.name == 'nt' else 'clear') print("Ladder Climbing Game") print(f"Currently on ladder {player_position}") print("=" * (MAX_LADDER +10)) for i in range(MAX_LADDER, -1, -1): if i == player_position: print(f" Player is on ladder {i} <--") else: print(f"Ladder {i}") print("=" * (MAX_LADDER +10)) print("Press 'W' to climb up, 'S' to climb down, 'Q' to quit") def move_player(command): """Change the player's position based on the command""" global player_position if command.lower() == 'w' and player_position < MAX_LADDER: player_position += 1 elif command.lower() == 's' and player_position > 0: player_position -= 1 elif command.lower() == 'q': return False return True def main(): """Maim game loop""" global player_position while True: print_ladder(player_position) command = input ("Enter your command: ") if not move_player(command): print("Game Over!") break if __name__ == "__main__": main() # no victory and traps yet
don't forget to like and sub if you liked these types of videos!
Game name
the code: import pygame import random pygame.init() screen_width = 800 screen_height = 600 screen = pygame.display.set_mode((screen_width, screen_height)) pygame.display.set_caption("little bee game") clock = pygame.time.Clock() WHITE = (225, 225, 225) YELLOW = (225, 225, 0) BLACK = (0, 0, 0) class Bee(pygame.sprite.Sprite): def __init__(self): super().__init__() self.image = pygame.Surface((50,50)) self.image.fill(YELLOW) self.rect = self.image.get_rect() self.rect.center = (screen_width //2, screen_height // 2) self.speed = 5 def update(self): keys = pygame.key.get_pressed() if keys[pygame.K_LEFT]: self.rect.x -=self.speed if keys[pygame.K_RIGHT]: self.rect.x +=self.speed if keys[pygame.K_UP]: self.rect.y -=self.speed if keys[pygame.K_DOWN]: self.rect.y +=self.speed if self.rect.left < 0: self.rect.left = 0 if self.rect.right > screen_width: self.rect.right = screen_width if self.rect.top < 0: self.rect.top = 0 if self.rect.bottom > screen_height: self.rect.bottom = screen_height class Enemy(pygame.sprite.Sprite): def __init__(self): super().__init__() self.image = pygame.Surface((30,30)) self.image.fill(BLACK) self.rect = self.image.get_rect() self.rect.x = random.randint(0, screen_width - self.rect.width) self.rect.y = random.randint(-100, -40) self.speed = random.randint(3,6) def update(self): self.rect.y += self.speed if self.rect.top > screen_height: self.rect.x = random.randint(0, screen_width - self.rect.width) self.rect.y = random.randint(-100, -40) all_sprites = pygame.sprite.Group() enemies = pygame.sprite.Group() bee = Bee() all_sprites.add(bee) for _ in range(5): enemy = Enemy() all_sprites.add(enemy) enemies.add(enemy) score = 0 font = pygame.font.Font(None, 36) running = True while running: clock.tick(60) for event in pygame.event.get(): if event.type == pygame.QUIT: running = False all_sprites.update() if pygame.sprite.spritecollide(bee, enemies, True): print(f"GAME OVER! THE SCORE IS: {score}") running = False score += 1 screen.fill(WHITE) score_text = font.render(f"the score: {score}", True, (0,0,0)) screen.blit(score_text,(10, 10)) all_sprites.draw(screen) pygame.display.flip() screen.fill(WHITE) game_over_text = font.render(f"GAME OVER! THE SCORE IS: {score}", True, (225, 0, 0)) screen.blit(game_over_text, (screen_width // 2 - game_over_text.get_width() // 2, screen_height // 2)) pygame.display.flip() pygame.time.wait(2000) pygame.quit()
like and sub for bobux and keys 🤑
Bro you are soo good,my username is Kuba789210 or Kub_sir
And also suubed
Keep it up 😊❤
like and sub for more luck on these kind of waves
like and sub for more of the old games!
I beat it at t0
i almost got it!!!! sadly we don't have any more pros afterwards💸💸💸... like and sub for more luck!
like and sub or the zomies will eat you while you sleep! 🧟♂🧟♂🧟♂
Whats this game?
can anyone tell me how to chat in the game?😑
Create new folders or files for each project because otherwise you will not be able to understand them in the future and if you are going to share them with people who do not know, it is better that you do it separately but with key names.
github.com/chanaldrich/project3 all codes :)
Bro I’ve been max lv since like 2-3 months ago
nice job
noob
sure bud
Godd job can u add me as a friend my username name is FOLTYNFANOT86
AFTER ALL THOSE DAYS!!! I'VE FINALY CAME TO THE SECOND SEA!!!!!
19:07 i never seen what does that pingus here
top 5 weapon better
the school started :( cuz of the school, there will be less video then before, sorry for that
What the Name of The Game?
I have a 70 hours in this demo
I alone am the honored one I have gotten 10 eternals and a 1 in 9 mil eternal my best my first too and I think like 30-40 mythics
amazing video!
I am the luckiest man on earth I guess, cuz I got 4 eternals including the rarest one!
How to get chlorophyte??
go to my github page to see all of my python project : github.com/chanaldrich/project3
THANKS FOR THE 100 SUBS!!!!!!!!
my first stickman fighting game!!!! like and sub for more of stick it to the stickman!
i have Top 5 weapon
i have a long time not playing this game...
Ha😂😂😂
Congrats on getting to swamp! Go to the middle of the lobby and click battle for new troops now
4 mythics 1 day
I have glogloglorb's power and all his stuff + good gun at past tome when the 2 boss only needed 20 reset
me too
tbh,the game didn't received that good update.But still good
Ooh lala some good utmm game..
i am sorry about the "secrete i typed in" i was ganna type "secret" not that word, i am truely sorry if you think i saying that is weird :(
plz sub
LEES GOOOOOOOOOOOOOOOOOOOOOOOOOO
What weapon and soul did you use to kill the boss and how do you get it?
which boss?
@@AldrichC-jo7twthe old lobby is better😢
Thx for covering this its gonna help me alot :)
you're welcome :)
@@AldrichC-jo7tw what obby thing do you say
the obby that you get best weapon fr fr (before the big map update)
my luck was crazier i got 6 legs and 1 mythic
woah you're so lucky
How to do this
idk
get to wave 8 for goa to spwan he may or may not erase u /ban u bc the only way ur supposed to get to wave 8 is never its not out yet
Can you solo for me please
idk your user name tho
Nvm things can happen in the next 3 days you know
fr
CONEY IS ME , WOOHOO, IF YOU ARE WONDERING WHY AM I IN A DIFFERENT ACCOUNT, IT'S BECAUSE THAT ACCOUNT MY BROTHER DELETED IT FOR "Safety Reasons." anyway i am super mad<(  ̄^ ̄)(θ(θ☆( >_<
I like your video
tysm
thx for coney that let my video got longer :) he is a pro |) i like him=) but not the crazy way tho
half the video is about him helping me doing this so plz be nice to him if you met him😳
bobux is free if you sub to me .o. 🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑
I HATE RIP RAY AND RD'S NUKE, I HATE THEM LIKE HOW I HATE MY LIFE. dont hate your life like me
every rhyme is true
i got him 3 in row
HOW
@@LucasAraya-d3o dude i just dont know i server hop
@@Undefined101-bc7vv dawg ok
I think a admin spawned it
im so confused