- 5
- 178 270
The TechSandwich Show
Czechia
Приєднався 5 тра 2020
this channel is about 2 minute entertaining tech videos.
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
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!!
Well that nice hope someone tutorial a script that make the bot follow a primary player, that would be nice.
I will use this shit to abuse gacha games
the title should be how to install a bot not make one
Is this bannable
My keyboard scancodes are working fine, but mouse commands / inputs will not work. Any idea?
I wish I could make a bot that was reactive to what’s happening in game, like it was playing itself
garbage
im in 2024
It's not a bot. It's a script that doing automated stuff. Bot is working EVEN when "window" is hidden
The definition of bot is "an autonomous program on the internet or another network that can interact with systems or users"
that isn't an AI that's a macro!!
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)
tysm
is it possible to get banned?
Singleplayer not, but anything is possible. Online definitely will get you banned.
Would that be possible for an og fortnite private server?
it's not possible to make a bog by memories?
But my question is, can you program it to complete heists?
ok
Is there even a community pycharm
yeah same
sooo, its tinytask?
Now try to make it copy mouse movements in FiveM haha can’t do it huh
so how i can open the game with like 5 diffrent accounts on the same pc at the same time
anyone trying to bot the game banana too? I need help
Why not just use a mouse recorder at this point? This is not a real bot
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
How is that a Bot? That is just a macro not a bot
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.
Would be cool if someone did this for call of duty for local multiplayer
BRO . HOW CAN YOU INSTALL GTA 5
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?
bro can you give me a cheat for valorant in China ?I will give u money
man what a fking useless tutorial LOL!
Damn, You are showing this so fast, that I have to pause this video often.
Bro my head is confused
dude go use pyautogui instead bruh
watched this on 2x and it was so worth it
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.
Fun fact. The video was fully AI generated. Jks. Great job.
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?
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")
make auto clickr for android subsystem for windows 10 and make bot for cartoon wars 3 game
Darn it, of course it python :( I never liked that language
blud its the easiest
@@oyaoya4024 I don't like the solutions to just be "import it and learn nothing from it"
@@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
@@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.
Bro can we hack dice games
And, if you want make for mmorpg like "metin2", how you make it?
Thank you so so much brooo . This video opened a whole new world for me . ❤❤
My pleasure 😊
Dose it auto repeats its self
You can use "while True: " to repeat it.
Could you make it work in LOL ?
only with deep learning
This is not how to make a bot, this is how to install an already made bot
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?
yes i can do it
So it's Autohotkey with more steps.
HAIYAAAA! CLOULD'VE USED VS CODE!
how can i contact you ?
so is this self improving? if not you should implement deep learning into this super helpful