Automate Games with Macro Recorder

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

ความคิดเห็น • 196

  • @durza5979
    @durza5979 5 หลายเดือนก่อน +2

    How can I make a macro that searches for either an "E" and "Q" button press? For example, if the sequence is; QEEQE, how can I make it so my macro will record press the right buttons at the right time? Even if there isn't a website involved?

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

      To wait for e then q, create 2 Wait for hotkey actions:
      i.postimg.cc/L4Jf8fF4/2024-07-23-19h47-33.png

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

      @@solidbugs Okay, and then what do I have to do?

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

    Hey how did you took that mini screenshot at 3:00

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

      Its a autohotkey script: screenclip.net/

    • @juanchito9225
      @juanchito9225 2 หลายเดือนก่อน +1

      @@solidbugs I found out you can also do it with windows+shift+s but that program is better

  • @EmmyExe
    @EmmyExe ปีที่แล้ว +4

    Works with pressing but to hold down to move my character. Does not work

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

      Same. Looks like a glitch with key emulation in games. Works fine outside of games though.

  • @badhumoryt
    @badhumoryt ปีที่แล้ว +3

    hi could you possibly make a tutorial on macrowin?

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      Thank you for bringing this program to my attention, I will check it out.

  • @honghong3821
    @honghong3821 ปีที่แล้ว +3

    Hey buddy! I want to make it so that it clicks the button when there is an image that pops up that is unrelated to the prompt. My scenairo is that:
    I need to open my setup (In the Setting. This is preopened before activating macro),
    load my base,
    back out to setting menu (by pressing a key)
    and then click on Ascension,
    and repeat this order. Problem is I need cash in order for Ascension to work, and loading the setup is the only way to make money. There is a pop up saying that I can rebirth when I have enough money (it appears suddenly near the Ascension button, no fade in fade out). Can i do that?

  • @avro7770
    @avro7770 ปีที่แล้ว

    Is there a way to keep the macro recorder winodw on top of all the windows while its playing?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      that's the case by default, but you could also use a third party app/script to achieve that: www.groovypost.com/howto/howto/windows-programs-always-on-top/

  • @yadunknow3436
    @yadunknow3436 ปีที่แล้ว

    is there a way to make a process repeat whilst holding down left click? I'll explain what im trying to do so this is what i want... "left click", wait 0.5 seconds, double press "e". and have that loop whilst holding down left click and stop when i let go.

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      if I understand correctly you want to use left mouse down as a trigger for the action "double press e". You probably need PhareExpress for that to work, see th-cam.com/video/CKsJgb3GeuM/w-d-xo.html
      But the following AutoHotkey v1 code does what you are asking for:
      ~LButton::
      Loop
      {
      Sleep 500 ; This is the delay between clicks, in milliseconds.
      Send {e 2}
      GetKeyState, LButtonState, LButton, P
      if LButtonState = U ; User has physically released the button, so end the loop.
      break
      MouseClick, Left
      }
      return

    • @yadunknow3436
      @yadunknow3436 ปีที่แล้ว

      @@solidbugs hi man thanks for the response! almost it's just add a left click and a wait 0.5 seconds before the double press "e". And the trigger to be when I hold left mouse button down and for it to loop that process until I let go of the left mouse button. It's for a game called darktide so in game I basically I want it to do a single quick attack (left mouse click), then swap to my secondary and back to my primary weapon (double press "e"). And just have that on a loop when holding down left mouse click. But I don't think it's possible with that program from what I could see. I can do it with autohotkey but it's inconsistent like it doesn't work correctly it's like the wait commands are not precise and it will switch to the wrong weapon. If there's no other way than using autohotkey then don't worry about it man, I appreciate you trying to help me out.

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@yadunknow3436 You can automate anything with AHK. I suggest to ask in the forum. They are very noob friendly and I assume someone can/will help you there. Good Luck!

    • @yadunknow3436
      @yadunknow3436 ปีที่แล้ว +1

      @@solidbugs yeah for sure will have to try that. Thanks very much for your time ♥️.

  • @mrcash8518
    @mrcash8518 ปีที่แล้ว

    Hello, I was wondering if there was a way to detect an image and when that image changes it continues the macro

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Have a look at the wait function. Wait for pixel color change:
      www.macrorecorder.com/doc/wait/

  • @zipy4900
    @zipy4900 ปีที่แล้ว

    Anyway to make the image detector more reliable?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Try "Wait for pixel color change"
      www.macrorecorder.com/docs/02/wait/#pixel

  • @VA-Zero
    @VA-Zero ปีที่แล้ว

    hey so i was wondering if there is a way i can make a macro for a game where u have to click a letter on the keyboard that matches the one on screen example is lets say on the wack a mole game instead of the animals and u needing to click them it was random letters lets say A-Z and when lets say B appeared u would have to press B on the keyboard and if Z came up u would have to press Z I play a game where some of the leveling requires doing something like this for hours and i dont have the time to do it so it would be amazing to have a macro setup to do it for me while im working

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      sounds like a captcha solver to me 😁... should be possible. Maybe this video is useful to you:
      th-cam.com/video/WVUUAA3TTyI/w-d-xo.html

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

      ​@@solidbugs My - Play stops automatically when script starts (searching for image) not going to next step ?

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

    Do you have something similar for phone apps?

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

      What do you mean? What are you trying to automate?

  • @NovatusRSGaming
    @NovatusRSGaming ปีที่แล้ว +1

    Is there a way to add mouse movement between each of these actions to make it harder to detect in some games? Like how can I add a mouse movement before a detection sequence if the mouse clock is practically random?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      you can randomize parameters
      th-cam.com/video/3oblDsu8Klw/w-d-xo.html

    • @MEMELORD.Z
      @MEMELORD.Z 11 หลายเดือนก่อน

      ​@@solidbugs is the macro recorder available for Android

    • @solidbugs
      @solidbugs  11 หลายเดือนก่อน +1

      @@MEMELORD.Z Windows and Mac only

  • @asdfdsadsfsdf
    @asdfdsadsfsdf 10 วันที่ผ่านมา

    thanks a lot you have saved a lot of my time

    • @solidbugs
      @solidbugs  8 วันที่ผ่านมา +1

      You're welcome, I'm glad I could help and save you some time. I plan to do another tutorial on automation using free software.

  • @yandirs
    @yandirs ปีที่แล้ว

    I want to know what application you screenshot using?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      CapturePlus

    • @yandirs
      @yandirs ปีที่แล้ว

      @@solidbugs when taking screenshots without opening the app

    • @yandirs
      @yandirs ปีที่แล้ว

      @@solidbugs how to use the application like in your video, I have tried it but can't

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@yandirs I use a AutoHotkey script, like this one: www.autohotkey.com/boards/viewtopic.php?t=115622

  • @adriandraganescu6040
    @adriandraganescu6040 ปีที่แล้ว

    In a game I'm playing I need to swap my weapon before I can use a skill I want, however I want to keep using the skill and after I'm done, I would like it to swap back after a short delay, is that possible with this?

  • @lapaci3708
    @lapaci3708 ปีที่แล้ว

    Hi, thanks for the video! i have a question. how can i make that macro for undetectable?

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      Use "Randomize Parameters" Action. But use with caution especially with online games...

    • @lapaci3708
      @lapaci3708 ปีที่แล้ว

      @@solidbugs Thank you so much! subscribed :)

  • @yandirs
    @yandirs ปีที่แล้ว

    What version of Captureplus are you using so that it looks like in your video?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      For creating Screenshots I use a AutoHotkey Script: www.autohotkey.com/boards/viewtopic.php?t=115622
      I think I have a beginner AutoHotkey Tutorial on my channel.

  • @deisevfarias
    @deisevfarias 3 หลายเดือนก่อน +1

    How can i hire you to do this for me?

  • @mintforest
    @mintforest ปีที่แล้ว

    is there a way to make it color detect in only a certain part of the screen?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      There is an action called "Wait for pixel color".

  • @vibv495
    @vibv495 ปีที่แล้ว

    heyy i wanted to know if it was possible to make it so that when an imagine passes over an image then the mouse clicks ( for eg when a line passes over the image i want the mouse to click )

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Should be possible. Create a screenshot of the line then search for it and click on it.

  • @qwertuiop3005
    @qwertuiop3005 ปีที่แล้ว

    Could you help me with something? I want to drag an object on the screen that spawns randomly in a small area on the screen to a specific point. How would I do that.
    I know I can use the image detect, bur how do I make it drag?

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      Use the Mouse click action. Select "Down". Then use mouse move action. In the end use Mouse click action and select "Up".

  • @background_character_1128
    @background_character_1128 ปีที่แล้ว

    Hello! How do you do 2 actions at the same time? What I'm trying to do is holding down the W key while holding down the left button on the mouse.

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      From the Mouse menu select Button (Left) from the Action Drop Down select (Down). From Text/key menu select Key press option (Down) from Key Drop Down select (W)

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

    do you know any way to make it so the macro can time certain key presses? I'm playing one of those 4k rhythm games and it doesn't click the arrows at the correct times have any tips?
    Edit: is there also a way to make it so it holds down a pacific key for a certain duration?

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

      look out for a bot like this one:
      www.blakekuzemchak.com/osubot

  • @Kompszz
    @Kompszz ปีที่แล้ว +1

    i want to do an automatic farm on a game but i dont know how because when you enter the game it can spawn you in different places and i need to go into a elevator to start the game

  • @asmurk1276
    @asmurk1276 ปีที่แล้ว +5

    I would like a macro that holds down W for a few seconds, then waits a bit(to regain energy), and then holds down S for a few seconds. Repeat.
    It's for a game called Valheim. I want to sneak back and forth to level up the skill. How would I do this?

    • @solidbugs
      @solidbugs  ปีที่แล้ว +2

      Pretty simple task: 1. Add a "Key Down" Action (Key = W) 2. Add a Wait Action (eg. 3000 ms) 3. Add a "Key Up" Action (Key = W)
      Repeat Steps 1-3 for the second Key (S). Hope this helps.
      i.postimg.cc/XvVfMMj0/solution.jpg

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

    hey im trying to make macro for a game i play and i need help. So bascially all i have to do is a press something on the screen that makes me sit down. While im sat a progress bar will fill up and when the progress bar fills up a "breakthrough" image will show up and i have to click the "breakthrough" image. After the breakthrough image is clicked the game will forcefully make u stand up so i also i need the macro to sit me down again and repeat. One more thing the progress bar doesnt really fill up like same time, so like it could take 10 minutes for one to fill up while the next one takes 20 minutes. so the time it takes to fill up the progress bar varies.

  • @yoyo-i5u5y
    @yoyo-i5u5y ปีที่แล้ว

    So I’m trying to macro a game where you collect chests and I wanted to make it to where I typed ;openall every five minutes is that possible?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Use the "Output text" action to post the text. Then add a 300,000 ms "Wait" action. At the end add "Repeat".

  • @JD-AlphaMedia
    @JD-AlphaMedia ปีที่แล้ว

    What about racing games? As theybare much more complex.. Can you automate them with this, or what would your approach be

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      You can basically automate everything. However, when it becomes more complex, it is better to use another tool like AutoHotkey. By the way, AutoHotkey's users are very helpful. Search for AutoHotkey + YOUR RACING GAME, maybe a script already exists.

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

    Great job explaining. Can you help me apply a macro to a trading site?

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

      Automation for Trading is usually done inside a trading application with scripts, eg
      www.mql5.com/en/code/mt4/scripts

  • @YesOkayDone
    @YesOkayDone 4 หลายเดือนก่อน +1

    My - Play stops automatically when script starts (searching for image) not going to next step ?

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

      I assume the image is not found? 🤷‍♀ Try to change the tolerance.

  • @learnthroughit245
    @learnthroughit245 2 ปีที่แล้ว +2

    Great video

    • @solidbugs
      @solidbugs  2 ปีที่แล้ว

      Thank You!!!!

  • @lmbits1047
    @lmbits1047 ปีที่แล้ว

    Just tried this and space isn't recognized by the tool. Can't use it without that. It looks like it could be a bug?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      What do you mean by space?

    • @lmbits1047
      @lmbits1047 ปีที่แล้ว

      @@solidbugs Space bar function. At least it wasn't recognized by a game I was trying this on. Game is in window mode.

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

    Hi does it works with QTE ?

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

    Did you buy the full version?

  • @pookiechipz227
    @pookiechipz227 ปีที่แล้ว

    Hi, I ran my game in window mode. After clicking window focus, I pressed the icon beside the application then click my game. But I doesn’t detect it and nothing happened. Is there a way to solve this issue? Thank you

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      difficult to understand/troubleshoot your issue. try this: use the action "set window focus" to focus a window. to detect a certain image play with the color tolerance. Hope this helps.

  • @Thanosre
    @Thanosre ปีที่แล้ว

    is it possible to hold mouse click and let go when it sees the image

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      should be possible, try Left Button, Down Action:
      postimg.cc/344K4QvK

  • @Graemesmith286
    @Graemesmith286 ปีที่แล้ว

    could this work for dayz? i have a very repetative action i am required to do

    • @Graemesmith286
      @Graemesmith286 ปีที่แล้ว

      all i need it to do is find a specific item or image and click and drag it from the floor into anoither bag

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@Graemesmith286 Might work, but for complex scripts you are probably better off with AutoHotkey. This is an AutoRun AutoHotkey script for dayz: gist.github.com/Au1st3in/ed55e9a256b1f35c14ee48f5f24660de

  • @Ghostly907
    @Ghostly907 ปีที่แล้ว

    Hey boss, wondering if its possible to make it so left shift is able to be a character action, trying to make a macro which involves rolling in game but when i record pressing L shift only comes up with keypress down/up for shift instead of character. When i press play, it does not roll my character in game. Please help

    • @Ghostly907
      @Ghostly907 ปีที่แล้ว

      Is there a way i can contact you, can you message me through youtube?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      ​ @Ghostly Hey Ghostly. Try this: From "Record and Edit" Tab select "Key press" from "Text/key" drop-down menu. Hope this helps.

    • @Ghostly907
      @Ghostly907 ปีที่แล้ว

      @@solidbugs sorry I don’t think you’re understanding properly is there a better way to get in contact with for a faster response?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@Ghostly907 sorry for the misunderstanding, please try the help file or contact MR support: www.macrorecorder.com/support/

  • @IMnOtAR3alHumAN
    @IMnOtAR3alHumAN 4 หลายเดือนก่อน +2

    this is good 😊

  • @RealBolter
    @RealBolter ปีที่แล้ว

    anytime i clcik my game the macro stops though?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Maybe you need to focus the game to apply actions to it. If possible run the game in Window Mode then Use "Focus Window" from Misc Tab in Macro Recorder. Hope this helps.

  • @somedudeinlivestreams8287
    @somedudeinlivestreams8287 ปีที่แล้ว

    Is it possible to do a macro where, when it sees a image it closes the application, but if it’s a certain Image, it won’t close and stay until it changes to an undesired image?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Sure. Use "Detect Image" action to find the image, then use "Execute program" action to run a batch. In the batch file add something like "taskkill /IM notepad.exe /F". In my other video "How To Use Message Boxes in Macro Recorder" I explain how run applications from batch files triggered by Macro Recorder.

  • @taekein7320
    @taekein7320 ปีที่แล้ว

    Hi, is there a way to automate the action of pressing a letter or mouse 1 that pops up on a screen. It's hard to explain but think of a mini game that involves pressing a specific letter or mouse button at a specific time.

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      Hey, in principle you need a trigger like "Wait for pixel" or "Detect Image" to execute an action like "Mouse Click" or "Key Press". To perform an action at a specific time, you might use the "Wait for file" with Watch for "File attribute change" or use the "at" command:
      learn.microsoft.com/en-us/troubleshoot/windows-client/system-management-components/use-at-command-to-schedule-tasks

    • @taekein7320
      @taekein7320 ปีที่แล้ว

      @@solidbugs thank you!

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@taekein7320 my pleasure

  • @DekoohRm
    @DekoohRm ปีที่แล้ว +1

    Hi, i would like to know how i could make it so i can shoot and rapidly press r and press r again to aim and stop aiming and repeat the process as fast as possible. I've tried different combinations and programs, and i wasnt able to get what i aspired to 100%. Also, great content.

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      I'm afraid you need another tool to have hotkeys in macrorecorder. th-cam.com/video/CKsJgb3GeuM/w-d-xo.html
      But, what you want to achieve can be easily done in AutoHotkey. Simply post your question here: www.autohotkey.com/boards/viewforum.php?f=82
      And don't be shy, the ppl there are very noob-friendly.
      Here is another link to see what can be done in the AHK in conjunction with games:
      www.autohotkey.com/board/topic/111737-how-to-make-ahk-work-in-most-games-the-basics/
      Good Luck!

  • @hassenn6960
    @hassenn6960 ปีที่แล้ว

    i want to automate a mini game where i need it to press the number it shows on the screen, is that possible?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      should be possible. all you need to do is define the image area in each number, if you want to do the same as shown in the video analog with the moles.

  • @kyniro.
    @kyniro. 4 หลายเดือนก่อน +2

    Hey man I love your channel - is it possible to set a macro where it clicks on 1 point of the screen, then another on a textbox to type an amount for money (100,000) and loop it with 10ms delay and set an activation hotkey?

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

      thanks. sure you can do that easily. Use "Smart click" to press the button, and "Text" to enter the text. To trigger via hotkey use "PhraseExpress". See here: www.macrorecorder.com/doc/playback/trigger-macro-by-hotkey/

  • @HenryPayne-v2v
    @HenryPayne-v2v 10 หลายเดือนก่อน

    I'm having issues with the window focus, I follow that first step but when i select the image area it acts like i'm selecting my desktop, now the window.

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

      That's probably bcause your running the game in full screen mode. Set to windowed mode and try again.

  • @yandirs
    @yandirs ปีที่แล้ว

    how to use the application like in your video, I have tried it but can't

  • @skewbiesnacks
    @skewbiesnacks 11 หลายเดือนก่อน +1

    Do you guys know of anything like this for Android?

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

      Clickmate seems to be a good alternative:
      play.google.com/store/apps/details?id=com.inscode.autoclicker

  • @KaneoYT
    @KaneoYT 2 ปีที่แล้ว

    is there a way to make a hotkey setup so for example if I press "0" the script will activate?

    • @solidbugs
      @solidbugs  2 ปีที่แล้ว

      Add "Wait for hotkey press" command from "Wait" drop-down menu as first command. Run the script. By default Macro Recorder waits for you to press the hotkey for 120 Seconds, if pressed it executes the next actions. You can also define a label to jump to, when hotkey is pressed.

  • @Nick88126
    @Nick88126 ปีที่แล้ว

    would using macro work for flappy bird ?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      I guess you're referring to the Android game running in an Emulator running in window mode. Yeah it should work...

  • @ember-ops2245
    @ember-ops2245 9 หลายเดือนก่อน

    i m looking for pokemon farming bot..can u suggest me any

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

      Unfortunately not. I don't play any games atm.

  • @ravi3647
    @ravi3647 ปีที่แล้ว

    Can you please provide step to create hay day bot?
    I am using emulator

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Make sure you run the emulator in windowed mode (not full screen) and then automate the game.

    • @ravi3647
      @ravi3647 ปีที่แล้ว

      @@solidbugs I want to know the steps to create such bots

    • @ravi3647
      @ravi3647 ปีที่แล้ว

      @@solidbugs write it and delete it after some time to avoid strike form supercell

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@ravi3647 there seem to be various youtube videos on that topic. I cannot help you, as I don't play that game.

  • @ianpd2541
    @ianpd2541 ปีที่แล้ว

    Hello, I have been using it specifically in an mmo doing some tests and trying to create a gathering bot. I have a problem when the character is moving, the images are variable and not static like this example, and increasing the tolerance percentage makes it click in random places and not on the item, there is a solution that is not just increasing the tolerance?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      You can try to limit the search area when using "wait for image" or maybe try a different approach with "Wait for pixe color".

  • @JennyX69
    @JennyX69 ปีที่แล้ว +3

    I've used this before for almost a year, love it!
    Is there a way to make a script repeat at a specific part of an hour instead of looping over and over?

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      Just add a wait command. The highest value is 2147483647ms, which corresponds to 596.5 hours.
      Alternatively, you can use the Windows Task Scheduler and have a script run at a specific time. I have already made a video on Macro Recorder showing how to run scripts with batch files.

    • @JennyX69
      @JennyX69 ปีที่แล้ว +1

      @@solidbugs looking g for it now

  • @hayatmz7743
    @hayatmz7743 ปีที่แล้ว

    Hey there, i want to click on a position and then if image found click it and i want to this infinite loop but i can't did it. can you help me with that? thanks.

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      Sorry missed your comment. In "Misc Tab" select "Repeat" in "Label" drop-down select "Start"

    • @hayatmz7743
      @hayatmz7743 ปีที่แล้ว +1

      @@solidbugs thank you so much!

  • @Cricket_universe_ind
    @Cricket_universe_ind ปีที่แล้ว

    hi I want to use macro for run mine but these macro has limited loops but I need muliple loops for free

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Unfortunately that feature is for the paid version only. Have a look at AutoHotkey, it's a free scripting language and very powerful.

  • @iconx4213
    @iconx4213 ปีที่แล้ว

    hi can this macro recorder software be detected by anti-cheat ?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      It depends on the game, of course, but I think it's actually very easy to detect.

  • @fiyu8973
    @fiyu8973 ปีที่แล้ว +1

    its nice but very expensive & is there any way to use this macro repeatedly ? couldnt find crack or licences for free tho x)

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Yes, it is expensive. Have a look at AutoHotkey, it's free. I think I have a beginner's video about it on my channel...

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

    Can it run in background ?

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

      Yes it can, simply create a batch file. Watch my videos where I show you how. Also check this:
      www.macrorecorder.com/doc/command-line-parameter/

  • @Mnl9187
    @Mnl9187 ปีที่แล้ว

    Hi, I tried to automate a very short race, but the game doesn't even react to Macro Recorder. I tried a different one before, but switched because it wasn't precise enough but it worked

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Try this: Run the game in windowed mode if possible. Then run "Window Focus" before any action.

  • @orhanozel94
    @orhanozel94 ปีที่แล้ว

    We would like to see this in the JitBit Macro Recorder (Macro Recorder Manual 2004-2011) version.

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Should be possible in JitBit Macro Recorder, it has all the features needed from what I can tell.

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

      ​@@solidbugscan you make for jitbit?

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

      @@brammanucandra6251 I don't use JitBit Macro Recorder, but it seems to be popular. I might make a video some day. ATM I am working on a CapCut Video.

  • @barttledoo3561
    @barttledoo3561 ปีที่แล้ว

    Not sure what the deal is, but after letting my macro run for about 20 times, a popup message always appears saying I have to pay because of many different reasons as to how I am using the macro. It seems impossible to get around this, because one of the reasons it requires to pay is when using the repeat function, which repeats the macro, and is the whole reason to even bother using this software to begin with.

    • @solidbugs
      @solidbugs  ปีที่แล้ว +1

      The standard/freeware version is limited to max 10 repetitions.

    • @barttledoo3561
      @barttledoo3561 ปีที่แล้ว +2

      @@solidbugs Yeah. Thank you for pointing that out.

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

    I want to set up Macro for a game called "Hitwicket Superstars". If you can set up, I can pay you. Please reply.

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

      The game your talking about seems to be an Android game. Have a look at fiverr, maybe you can hire someone there. Good Luck!

  • @ExtreemMCgamer
    @ExtreemMCgamer ปีที่แล้ว

    Is there a way to develo a macro for battle royale game, in which it will land the player in the corner of the map for camping 😢
    (In Short i need a macro which will land the player in the corner of the map)
    Game: Garena Free Fire

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Garena Free Fire is a mobile game. Macro Recorder is only for Mac/Pc. Maybe "MacroDroid" can do this?

  • @arcegerardo2001
    @arcegerardo2001 ปีที่แล้ว

    License ley?

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      www.macrorecorder.com/shop/

  • @nikofernadez2808
    @nikofernadez2808 ปีที่แล้ว

    Is this work on call of duty

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      depending on what you are looking for, but in general you are better off with AutoHotkey for more complex scripting tasks.

    • @nikofernadez2808
      @nikofernadez2808 ปีที่แล้ว

      @@solidbugs can you give me the macro for call of duty ahk

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      @@nikofernadez2808 unfortunately not. it all depends on what you want to achieve, wall hack, aimbot, rapidfire ... I've read they have implemented some sort of anti cheat in the game. Run the game in window mode, then you should be able to automate any game, here are some tips: www.autohotkey.com/boards/viewtopic.php?t=11084
      use on you own risk! be careful as you might get banned! good luck!

  • @lossa2bz
    @lossa2bz 2 ปีที่แล้ว

    Hello, i dont know if u want know VALORANT. But do u think is that possible to create a macro to autolock fast an agent ? Can u make a tutorial that will help a tons of players !

    • @solidbugs
      @solidbugs  2 ปีที่แล้ว

      Hello, thank you for bringing VALORANT to my attention. If I understand correctly, you are looking for an Aimbot. AutoHotkey is a scripting language that is better suited for creating complex game cheats. Search for "Valorant Aimbot Autohotkey" and you will probably find what you are looking for. Please note: Using cheats such as aimbots, wallhacks, etc. can potentially get you banned. Hope this helps!

    • @adammmc5331
      @adammmc5331 2 ปีที่แล้ว

      @@solidbugs he meant to get an character faster than anyone like 1 ms

    • @solidbugs
      @solidbugs  2 ปีที่แล้ว

      @@adammmc5331 I created and published a macro recorder tutorial showing the "Wait for pixel color" function. 1ms is probably way too fast. No script is likely to work because the screen refresh rate is often only 60-120 hertz.

  • @zombieboyxx
    @zombieboyxx 11 หลายเดือนก่อน +3

    it costs 70 dollars or else you keep getting pop ups don't use this

    • @-o-5522
      @-o-5522 3 หลายเดือนก่อน +1

      Yeah how to remove it popin up

  • @enkubik
    @enkubik 2 ปีที่แล้ว

    I'm searching for a macro (only specific windows) when I for instance watch youtube at the same time.

    • @solidbugs
      @solidbugs  2 ปีที่แล้ว

      Use the "Focus Window" command to ensure that actions are applied to the correct window.

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

    download?

    • @solidbugs
      @solidbugs  9 หลายเดือนก่อน +1

      www.macrorecorder.com/download/
      Windows and Mac.

  • @doSteps
    @doSteps ปีที่แล้ว +1

    expensive!

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Couldn't agree more.

  • @yandirs
    @yandirs ปีที่แล้ว

    when taking screenshots without opening the app

  • @Harley457
    @Harley457 ปีที่แล้ว

    What about android:(

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      Macro Recorder is only compatible with Microsoft Windows 10/11 and Apple macOS 11.0 "Big Sur" - 14.0 "Sonoma"

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

    only 10 repeat. always error.

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

      yeah, know limitation buy standard/pro/enterprise to remove the limit

  • @Sierrabravo150
    @Sierrabravo150 ปีที่แล้ว

    i require the premium version to make my script.

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      You can buy a license at "www.macrorecorder.com/shop/". If you can't afford one, check out AutoHotkey at "www.autohotkey.com/". It's free and more powerful, but has a steeper learning curve.

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

    Why did my pc start going bonkers

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

      Moving the mouse quickly should stop the script from playing. If that's what you're talking about...

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

      @@solidbugs yeah like it went all over the place and it wouldn’t stop

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

      @@Voidsplaysgamesto avoid play with the color tolerance settings and move the mouse quickly to escape

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

    dont like bcs i have to pay 70 DOLLARS for it to repeat infinitly

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

      Yeah, it's not cheap but user friendly. Check out AutoHotkey, it's free and you can do the same and more, but the learning curve is a lot steeper.

  • @drallersouldust3054
    @drallersouldust3054 ปีที่แล้ว +5

    it should be illegal in any online game

    • @Len-v8k
      @Len-v8k ปีที่แล้ว +3

      It kinda is bc you could get banned for using macro

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

      As it should be

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

      He daid illegal not against company policy ​@flits-tq8ny

  • @SpYBukkit
    @SpYBukkit 3 หลายเดือนก่อน +1

    can i contact you ?

  • @TawhidStudio
    @TawhidStudio ปีที่แล้ว

    What is your discord ? I need help creating a script and I feel like it might be a challenge for you tooz

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      I don't have a Discord account or any other social media presence.

    • @TawhidStudio
      @TawhidStudio ปีที่แล้ว

      @@solidbugs I followed your exact steps and it didn’t work

    • @solidbugs
      @solidbugs  ปีที่แล้ว

      It takes some time and practice. What exactly did not work for you?