The TechSandwich Show
The TechSandwich Show
  • 5
  • 178 270
How to make a key recorder. (SUPER EZ)
In this show se sandwich a lot of content into a small tech sandwich ENJOY
python: www.python.org/
pycharm: www.jetbrains.com/pycharm/
how to make a bot: ua-cam.com/video/RPiQ_PXMf3w/v-deo.html
grab the code here: github.com/nikinov/key-recoreder
Переглядів: 1 375

Відео

How to drive your facebook friends NUTS?
Переглядів 1984 роки тому
In this show I have exactly 2 minutes to show you something interesting in tech. ENJOY!! installing pycharm and python make a game bot: ua-cam.com/video/RPiQ_PXMf3w/v-deo.html chrome driver: chromedriver.chromium.org/ python: www.python.org/ pycharm: www.jetbrains.com/pycharm/ code: github.com/nikinov/how-to-drive-your-friends-nuts/edit/master/README.md
How to make an epic prank!!! (ONLY WITH BROWSER)
Переглядів 1534 роки тому
In this show I have exactly 2 minutes to show you something interesting in tech. ENJOY!!
How to make a game bot (FOR BEGINNERS) ANY GAME!!!
Переглядів 177 тис.4 роки тому
In this show I have exactly 2 minutes to show you something interesting in tech. ENJOY!! first link: www.python.org/downloads/windows/ second link: www.jetbrains.com/pycharm/download/#section=windows third link: stackoverflow.com/questions/14489013/simulate-python-keypresses-for-controlling-a-game fourth link: wiki.nexusmods.com/index.php/DirectX_Scancodes_And_How_To_Use_Them
Do you need an external SATA SSD?
Переглядів 734 роки тому
In this show I have exactly 2 minutes to show you something interesting in tech. ENJOY!!

КОМЕНТАРІ

  • @evangelynemaria2718
    @evangelynemaria2718 17 годин тому

    Well that nice hope someone tutorial a script that make the bot follow a primary player, that would be nice.

  • @flavjetto123
    @flavjetto123 27 днів тому

    I will use this shit to abuse gacha games

  • @recurecuu8592
    @recurecuu8592 Місяць тому

    the title should be how to install a bot not make one

  • @imhere2103-m7t
    @imhere2103-m7t Місяць тому

    Is this bannable

  • @HermWasHere
    @HermWasHere 2 місяці тому

    My keyboard scancodes are working fine, but mouse commands / inputs will not work. Any idea?

  • @The_zenithgod
    @The_zenithgod 2 місяці тому

    I wish I could make a bot that was reactive to what’s happening in game, like it was playing itself

  • @rabomeister
    @rabomeister 2 місяці тому

    garbage

  • @RipLucy_8008
    @RipLucy_8008 2 місяці тому

    im in 2024

  • @haxidenti6001
    @haxidenti6001 3 місяці тому

    It's not a bot. It's a script that doing automated stuff. Bot is working EVEN when "window" is hidden

    • @stanmarshinVR
      @stanmarshinVR 16 днів тому

      The definition of bot is "an autonomous program on the internet or another network that can interact with systems or users"

  • @j.jarvis7460
    @j.jarvis7460 3 місяці тому

    that isn't an AI that's a macro!!

  • @Mkj_lj
    @Mkj_lj 3 місяці тому

    import ctypes import time SendInput = ctypes.windll.user32.SendInput # C struct redefinitions PUL = ctypes.POINTER(ctypes.c_ulong) class KeyBdInput(ctypes.Structure): _fields_ = [("wVk", ctypes.c_ushort), ("wScan", ctypes.c_ushort), ("dwFlags", ctypes.c_ulong), ("time", ctypes.c_ulong), ("dwExtraInfo", PUL)] class HardwareInput(ctypes.Structure): _fields_ = [("uMsg", ctypes.c_ulong), ("wParamL", ctypes.c_short), ("wParamH", ctypes.c_ushort)] class MouseInput(ctypes.Structure): _fields_ = [("dx", ctypes.c_long), ("dy", ctypes.c_long), ("mouseData", ctypes.c_ulong), ("dwFlags", ctypes.c_ulong), ("time",ctypes.c_ulong), ("dwExtraInfo", PUL)] class Input_I(ctypes.Union): _fields_ = [("ki", KeyBdInput), ("mi", MouseInput), ("hi", HardwareInput)] class Input(ctypes.Structure): _fields_ = [("type", ctypes.c_ulong), ("ii", Input_I)] # Actuals Functions def PressKey(hexKeyCode): extra = ctypes.c_ulong(0) ii_ = Input_I() ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008, 0, ctypes.pointer(extra) ) x = Input( ctypes.c_ulong(1), ii_ ) ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x)) def ReleaseKey(hexKeyCode): extra = ctypes.c_ulong(0) ii_ = Input_I() ii_.ki = KeyBdInput( 0, hexKeyCode, 0x0008 | 0x0002, 0, ctypes.pointer(extra) ) x = Input( ctypes.c_ulong(1), ii_ ) ctypes.windll.user32.SendInput(1, ctypes.pointer(x), ctypes.sizeof(x)) # directx scan codes www.gamespp.com/directx/directInputKeyboardScanCodes.html while (True): PressKey(0x11) time.sleep(1) ReleaseKey(0x11) time.sleep(1)

  • @Mkj_lj
    @Mkj_lj 3 місяці тому

    tysm

  • @RLLLx
    @RLLLx 3 місяці тому

    is it possible to get banned?

    • @SpankZorOwnsYa
      @SpankZorOwnsYa 3 місяці тому

      Singleplayer not, but anything is possible. Online definitely will get you banned.

  • @NicoOrlando-ef6wd
    @NicoOrlando-ef6wd 3 місяці тому

    Would that be possible for an og fortnite private server?

  • @fuckingu
    @fuckingu 4 місяці тому

    it's not possible to make a bog by memories?

  • @deathtomerryweather8275
    @deathtomerryweather8275 4 місяці тому

    But my question is, can you program it to complete heists?

  • @sleeptalkenthusiast
    @sleeptalkenthusiast 4 місяці тому

    ok

  • @rom5457
    @rom5457 4 місяці тому

    Is there even a community pycharm

  • @Sirlexia
    @Sirlexia 4 місяці тому

    sooo, its tinytask?

  • @DaRealistInIt
    @DaRealistInIt 4 місяці тому

    Now try to make it copy mouse movements in FiveM haha can’t do it huh

  • @EPICEDEN-g7f
    @EPICEDEN-g7f 4 місяці тому

    so how i can open the game with like 5 diffrent accounts on the same pc at the same time

  • @zatu518
    @zatu518 4 місяці тому

    anyone trying to bot the game banana too? I need help

  • @codlevelup7652
    @codlevelup7652 4 місяці тому

    Why not just use a mouse recorder at this point? This is not a real bot

  • @erenhocaoglu8920
    @erenhocaoglu8920 5 місяців тому

    hey man im checking the nexus link and it says that 256 is supposed to be left click but it actually means 0. Like when you do presskey 257 it goes back to 1 and presses escape instead. If you can help me find the number for left click I would be very greatfull

  • @theradomguy5581
    @theradomguy5581 5 місяців тому

    How is that a Bot? That is just a macro not a bot

  • @dawnbigelow73
    @dawnbigelow73 5 місяців тому

    how would i make this affect up to 9 windows of the same game? im trying to make sure the alt accounts in my game dont go afk, but i still want to retain functionality to one of the windows.

  • @omarguerrero6417
    @omarguerrero6417 5 місяців тому

    Would be cool if someone did this for call of duty for local multiplayer

  • @AmiraSoakri
    @AmiraSoakri 5 місяців тому

    BRO . HOW CAN YOU INSTALL GTA 5

  • @davidowl767
    @davidowl767 6 місяців тому

    how can i import game data in a certain frame? Like, i want to import the positions of some objects, how can i do it?

  • @ReynaZ-wx8nq
    @ReynaZ-wx8nq 6 місяців тому

    bro can you give me a cheat for valorant in China ?I will give u money

  • @xorkatoss
    @xorkatoss 6 місяців тому

    man what a fking useless tutorial LOL!

  • @Wolfiennn
    @Wolfiennn 6 місяців тому

    Damn, You are showing this so fast, that I have to pause this video often.

  • @GgggLi-s7n
    @GgggLi-s7n 7 місяців тому

    Bro my head is confused

    • @oyaoya4024
      @oyaoya4024 7 місяців тому

      dude go use pyautogui instead bruh

  • @anunnakiiscomming9810
    @anunnakiiscomming9810 7 місяців тому

    watched this on 2x and it was so worth it

  • @kaitygames
    @kaitygames 8 місяців тому

    Anyone know how to send the key commands to a specific window? Because if you run this code, it will just print the keys on the python code. It will be the active window.

  • @aidenheeth7764
    @aidenheeth7764 8 місяців тому

    Fun fact. The video was fully AI generated. Jks. Great job.

  • @hydro5291
    @hydro5291 8 місяців тому

    is uthere a way to press multiple keys at a time like it presses and hold w and s key at the same time and releases them at the same time?

    • @user-q8hylm90hg
      @user-q8hylm90hg 7 місяців тому

      import pyautogui import time def hold(key, key2): pyautogui.keyDown(key) pyautogui.keyDown(key2) #time.sleep(put the delay here (must be an integer or float)) pyautogui.keyUp("s") hold("w", "s")

  • @tryingtoopen3rdeye
    @tryingtoopen3rdeye 8 місяців тому

    make auto clickr for android subsystem for windows 10 and make bot for cartoon wars 3 game

  • @draft_fusion
    @draft_fusion 8 місяців тому

    Darn it, of course it python :( I never liked that language

    • @oyaoya4024
      @oyaoya4024 7 місяців тому

      blud its the easiest

    • @draft_fusion
      @draft_fusion 7 місяців тому

      @@oyaoya4024 I don't like the solutions to just be "import it and learn nothing from it"

    • @user-q8hylm90hg
      @user-q8hylm90hg 7 місяців тому

      ​​​@@draft_fusion Never met someone who never liked python that is excluding it's speed. It is one of the most easiest, if not the easiest language to learn. For how easy it is, you can actually do so much with it. Python has a lot of libraries, because it is supposed to. Saying "import it and learn nothing from it" is like saying c++, c, java, etcetera are all just "import it and learn nothing from it" if you mean by libraries. If you mean copy and paste then why the hell are you even programming anyways? (If you even are). Plus if you mean the libraries, the libraries are extremely useful and helpful too. You just need to learn the documentation and how to do stuff. If you don't like python and using libraries and just like to stick to the normal language, use something like autohotkey or autoit. They barely use any libraries, complicated programs in those scripting languages barely even use more than 3 libraries. It's not like you need to learn another language just because you are going to import a library to your code. it doesn't make sense

    • @user-q8hylm90hg
      @user-q8hylm90hg 7 місяців тому

      ​@@draft_fusion I don't know what you are trying to say, but if you mean like python libraries, you probably never even tried learning it before, programming in it, or straight up just quitting when you heard what the fuck dictionaries are. If you did program in it then it's not the language for what you want to do ig.

  • @Funnyvideosfunny212
    @Funnyvideosfunny212 8 місяців тому

    Bro can we hack dice games

  • @WaterColourL2
    @WaterColourL2 8 місяців тому

    And, if you want make for mmorpg like "metin2", how you make it?

  • @facknarcos
    @facknarcos 9 місяців тому

    Thank you so so much brooo . This video opened a whole new world for me . ❤❤

  • @captaindoge9714
    @captaindoge9714 9 місяців тому

    Dose it auto repeats its self

    • @user-q8hylm90hg
      @user-q8hylm90hg 7 місяців тому

      You can use "while True: " to repeat it.

  • @Retrocrema
    @Retrocrema 9 місяців тому

    Could you make it work in LOL ?

    • @okok-kn6ee
      @okok-kn6ee 9 місяців тому

      only with deep learning

  • @maxito9984
    @maxito9984 9 місяців тому

    This is not how to make a bot, this is how to install an already made bot

  • @englishroom8176
    @englishroom8176 9 місяців тому

    Hello, I need to create a bot for the 3 tutorial maps in league of legends, its really simple. I'm hiring whoever can do it, do you think u can help?

  • @SilverTwinkle
    @SilverTwinkle 10 місяців тому

    So it's Autohotkey with more steps.

  • @Yellow_300
    @Yellow_300 10 місяців тому

    HAIYAAAA! CLOULD'VE USED VS CODE!

  • @lediable-l3z
    @lediable-l3z 10 місяців тому

    how can i contact you ?

  • @spencerfunk6697
    @spencerfunk6697 Рік тому

    so is this self improving? if not you should implement deep learning into this super helpful