Aldrich C
Aldrich C
  • 644
  • 42 137

วีดีโอ

[chess] the lessons|#chess
มุมมอง 84 ชั่วโมงที่ผ่านมา
[chess] the lessons|#chess
[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|#chess
มุมมอง 1614 วันที่ผ่านมา
[chess] puzzles|#chess
[chess]puzzles| #chess
มุมมอง 2814 วันที่ผ่านมา
[chess]puzzles| #chess
[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
[chess] puzzles, give aways |#chess
มุมมอง 3321 วันที่ผ่านมา
[chess] puzzles, give aways |#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
มุมมอง 2321 วันที่ผ่านมา
[chess] puzzles
[chess] puzzles, special rules|#chess
มุมมอง 828 วันที่ผ่านมา
[chess] puzzles, special rules|#chess
[chess]puzzles, special rules|#chess
มุมมอง 5หลายเดือนก่อน
[chess]puzzles, special rules|#chess
[chess] puzzles, special rules|#chess
มุมมอง 13หลายเดือนก่อน
[chess] puzzles, special rules|#chess
[chess] puzzles, lessons, special rules|#chess
มุมมอง 19หลายเดือนก่อน
[chess] puzzles, lessons, special rules|#chess
[chess]puzzles, special rules|#chess
มุมมอง 42หลายเดือนก่อน
[chess]puzzles, 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
[chess]puzzles, special rules|#chess
มุมมอง 80หลายเดือนก่อน
[chess]puzzles, special rules|#chess
[chess]puzzles, special rules|#chess
มุมมอง 70หลายเดือนก่อน
[chess]puzzles, special rules|#chess
[chess]puzzles, special rules|#chess
มุมมอง 103หลายเดือนก่อน
[chess]puzzles, special rules|#chess
[chess]puzzles, special rules |#chess
มุมมอง 76หลายเดือนก่อน
[chess]puzzles, special rules |#chess
[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] the lessons. finally i did it!
มุมมอง 81หลายเดือนก่อน
[chess] the lessons. finally i did it!
[chess] the lessons |#chess
มุมมอง 26หลายเดือนก่อน
[chess] the lessons |#chess
[chess] puzzles, vs other players, lessons| #chess
มุมมอง 89หลายเดือนก่อน
[chess] puzzles, vs other players, lessons| #chess

ความคิดเห็น

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 8 วันที่ผ่านมา

    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

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 8 วันที่ผ่านมา

      don't forget to like and sub if you liked these types of videos!

  • @JiaxunLee
    @JiaxunLee 14 วันที่ผ่านมา

    Game name

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 21 วันที่ผ่านมา

    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()

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 26 วันที่ผ่านมา

    like and sub for bobux and keys 🤑

    • @jolakurek-rw1rw
      @jolakurek-rw1rw 22 วันที่ผ่านมา

      Bro you are soo good,my username is Kuba789210 or Kub_sir

    • @jolakurek-rw1rw
      @jolakurek-rw1rw 22 วันที่ผ่านมา

      And also suubed

  • @Blazeeditz422
    @Blazeeditz422 หลายเดือนก่อน

    Keep it up 😊❤

  • @AldrichC-jo7tw
    @AldrichC-jo7tw หลายเดือนก่อน

    like and sub for more luck on these kind of waves

  • @AldrichC-jo7tw
    @AldrichC-jo7tw หลายเดือนก่อน

    like and sub for more of the old games!

  • @trashy8718
    @trashy8718 หลายเดือนก่อน

    I beat it at t0

  • @AldrichC-jo7tw
    @AldrichC-jo7tw หลายเดือนก่อน

    i almost got it!!!! sadly we don't have any more pros afterwards💸💸💸... like and sub for more luck!

  • @AldrichC-jo7tw
    @AldrichC-jo7tw หลายเดือนก่อน

    like and sub or the zomies will eat you while you sleep! 🧟‍♂🧟‍♂🧟‍♂

  • @unknownssb2557
    @unknownssb2557 2 หลายเดือนก่อน

    Whats this game?

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 2 หลายเดือนก่อน

    can anyone tell me how to chat in the game?😑

  • @rickytodev
    @rickytodev 2 หลายเดือนก่อน

    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.

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 2 หลายเดือนก่อน

    github.com/chanaldrich/project3 all codes :)

  • @christophermacasaet1772
    @christophermacasaet1772 3 หลายเดือนก่อน

    Bro I’ve been max lv since like 2-3 months ago

  • @LynixPheonix
    @LynixPheonix 3 หลายเดือนก่อน

    noob

  • @CharbelChebli-j1f
    @CharbelChebli-j1f 3 หลายเดือนก่อน

    Godd job can u add me as a friend my username name is FOLTYNFANOT86

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 3 หลายเดือนก่อน

    AFTER ALL THOSE DAYS!!! I'VE FINALY CAME TO THE SECOND SEA!!!!!

  • @nedzadrama5664
    @nedzadrama5664 3 หลายเดือนก่อน

    19:07 i never seen what does that pingus here

  • @fedora109
    @fedora109 3 หลายเดือนก่อน

    top 5 weapon better

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 3 หลายเดือนก่อน

    the school started :( cuz of the school, there will be less video then before, sorry for that

  • @Alfredofarejando
    @Alfredofarejando 3 หลายเดือนก่อน

    What the Name of The Game?

  • @UZUNBACAKLI-BABACIK
    @UZUNBACAKLI-BABACIK 3 หลายเดือนก่อน

    I have a 70 hours in this demo

  • @vinsmokesanji9381
    @vinsmokesanji9381 3 หลายเดือนก่อน

    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

  • @NotFRL
    @NotFRL 3 หลายเดือนก่อน

    amazing video!

  • @hi_im_tom7892
    @hi_im_tom7892 4 หลายเดือนก่อน

    I am the luckiest man on earth I guess, cuz I got 4 eternals including the rarest one!

  • @DarkouX
    @DarkouX 4 หลายเดือนก่อน

    How to get chlorophyte??

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    go to my github page to see all of my python project : github.com/chanaldrich/project3

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    THANKS FOR THE 100 SUBS!!!!!!!!

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    my first stickman fighting game!!!! like and sub for more of stick it to the stickman!

  • @dungvu4627
    @dungvu4627 4 หลายเดือนก่อน

    i have Top 5 weapon

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    i have a long time not playing this game...

  • @FkfkffFkfkff
    @FkfkffFkfkff 4 หลายเดือนก่อน

    Ha😂😂😂

  • @scripting
    @scripting 4 หลายเดือนก่อน

    Congrats on getting to swamp! Go to the middle of the lobby and click battle for new troops now

  • @PiebaldBrandon
    @PiebaldBrandon 4 หลายเดือนก่อน

    4 mythics 1 day

  • @Bacon-xv9gt
    @Bacon-xv9gt 4 หลายเดือนก่อน

    I have glogloglorb's power and all his stuff + good gun at past tome when the 2 boss only needed 20 reset

  • @MORTY_PRIME-p7o
    @MORTY_PRIME-p7o 4 หลายเดือนก่อน

    tbh,the game didn't received that good update.But still good

  • @raihansarif2060
    @raihansarif2060 4 หลายเดือนก่อน

    Ooh lala some good utmm game..

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    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 :(

  • @Nobody_9107
    @Nobody_9107 4 หลายเดือนก่อน

    LEES GOOOOOOOOOOOOOOOOOOOOOOOOOO

  • @돌웡숭이
    @돌웡숭이 4 หลายเดือนก่อน

    What weapon and soul did you use to kill the boss and how do you get it?

  • @calster1024
    @calster1024 4 หลายเดือนก่อน

    Thx for covering this its gonna help me alot :)

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      you're welcome :)

    • @enzobiladonicamisabiladoni6443
      @enzobiladonicamisabiladoni6443 4 หลายเดือนก่อน

      ​@@AldrichC-jo7tw what obby thing do you say

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      the obby that you get best weapon fr fr (before the big map update)

  • @aminaahmad-h4o
    @aminaahmad-h4o 4 หลายเดือนก่อน

    my luck was crazier i got 6 legs and 1 mythic

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      woah you're so lucky

  • @rip_rengoku857
    @rip_rengoku857 4 หลายเดือนก่อน

    How to do this

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      idk

    • @sebastions-lover
      @sebastions-lover 3 หลายเดือนก่อน

      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

  • @rip_rengoku857
    @rip_rengoku857 4 หลายเดือนก่อน

    Can you solo for me please

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      idk your user name tho

    • @rip_rengoku857
      @rip_rengoku857 4 หลายเดือนก่อน

      Nvm things can happen in the next 3 days you know

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      fr

    • @user-xb5yz4bx3z
      @user-xb5yz4bx3z 4 หลายเดือนก่อน

      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<(  ̄^ ̄)(θ(θ☆( >_<

  • @Batugamer-m5u
    @Batugamer-m5u 4 หลายเดือนก่อน

    I like your video

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    thx for coney that let my video got longer :) he is a pro |) i like him=) but not the crazy way tho

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      half the video is about him helping me doing this so plz be nice to him if you met him😳

  • @AldrichC-jo7tw
    @AldrichC-jo7tw 4 หลายเดือนก่อน

    bobux is free if you sub to me .o. 🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑🤑

    • @AldrichC-jo7tw
      @AldrichC-jo7tw 4 หลายเดือนก่อน

      I HATE RIP RAY AND RD'S NUKE, I HATE THEM LIKE HOW I HATE MY LIFE. dont hate your life like me

    • @OuterRouterOfficial
      @OuterRouterOfficial 3 หลายเดือนก่อน

      every rhyme is true

  • @Undefined101-bc7vv
    @Undefined101-bc7vv 4 หลายเดือนก่อน

    i got him 3 in row

    • @LucasAraya-d3o
      @LucasAraya-d3o 4 หลายเดือนก่อน

      HOW

    • @Undefined101-bc7vv
      @Undefined101-bc7vv 4 หลายเดือนก่อน

      @@LucasAraya-d3o dude i just dont know i server hop

    • @LucasAraya-d3o
      @LucasAraya-d3o 4 หลายเดือนก่อน

      @@Undefined101-bc7vv dawg ok

    • @Oahahhhh_mahgawd
      @Oahahhhh_mahgawd 4 หลายเดือนก่อน

      I think a admin spawned it

  • @noobius_3223
    @noobius_3223 4 หลายเดือนก่อน

    im so confused