Giter Club home page Giter Club logo

xahk's People

Contributors

beatso avatar bmiddha avatar dericksonmark avatar histefanhere avatar mmk21hub avatar monpjc avatar nutjob4life avatar ragingfire105 avatar w-rice avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

xahk's Issues

Edit AFK Mob Grind sword interval.

The current sweep speed for the sword in the AFK Mob option is very very slow, and I couldn't find a way to change it. Is there plans to change this?

Fishing mode delay slider doesn't effect actual delay

Changing the slider, as reflected on in the code, doesn't effect the delay between clicks, and it therefore doesn't work on some servers with 500ms.

Sleep 100
	ControlClick, , ahk_id %id%, ,Right, , NAD
Sleep 500
	ControlClick, , ahk_id %id%, ,Right, , NAU

I assume the variable is meant to affect that sleep time, if I can figure out how AHK works I'll fix it and do a pull request myself.

losing fishing rod

I'm not quite sure if this is just an issue with my PC, but when I'm running the auto fisher for an extended period, my fishing rod sometimes goes missing (I have mending on them) without a trace. Again I'm not sure if it's related to the script, but I'd like to know if others experienced something similar.

Multiple Instances

In the newer video it showed this running on 3 different instances of Minecraft. I cant figure that out.

Autoclicker too slow for some farms

I use this autoclicker on mob grinder mode for an enderman farm and it works perfectly. However, using this on a raid farm is fatal, as clicks are too slow to reliably kill evokers before they summon vex. An option to choose click delay would be ideal, but the optimum click delay would be 650ms, as that is the fastest you can attack fully with the diamond sword attack speed. An option to disable auto eating would also help with a raid farm, as that causes issues with right clicking while being moved

Alt-tabbing after setting up auto-fish pauses game

In Xisuma's video, it showed that you could alt-tab and the game wouldn't pause. Whenever I run the auto clicker and alt-tab it takes me to the pause menu. I don't know why it does. Is there a setting I'm missing?

Fishing in 1.16+

Mojang nerfed afk fishing, according to this guy https://www.youtube.com/watch?v=Xr7lb3nlnKY, the most simple afk fishing that is possible is with timer set to 95 tick or 4.75 seconds or 5 second to account for possible lag + travel of bobber and add 2 quick throws in between
FixFishing.txt
I also recompiled with this change
xahk.zip

As says in the video, it should be possible to build the optimal setup and wait for 17 seconds, just change the 5000 to 17000
To be easier to understand, I think there should be an option for the player to input the time between 2 throws

I just made this dirty way because I needed it done

Program attached itself to a different game; text won't go away

XAHK attached itself to the Elder Scrolls Online, and the text "Turn Off This Memo: Ctrl+Alt+W" is stuck on the screen and even appears in in-game screenshots. I've tried restarting my PC, clearing temporary files, but it's still there. I even tried running a repair on the game itself.
image

[Feature Request] Cobblestone miner

An option to farm cobblestone would be nice. I'm currently using the concrete method instead, but it's not the best. Maybe a slider to set the length of each click and an option for how long the gap between each click is?

The generator alt+tab fix wasn't compiled

I know there is already an issue fixed that now allows for alt+tab in generator mode, but it wasn't put in any releases, only in the source code. It's been 7 months since the last commit, but 8 since the last release

Documentation for compiling

the clicker does not not work when not in focus in 1.16.2 i have pause on lost focus disabled.
and add documentation for compiling the script

Links don't work

This repo is still named XAHK, but the links in the Readme go to minescript. This makes the links useless as they are just 404s.

Installation & Configuration

Not an issue for now, but if the app needs to store any configuration information in the future (probably in ini files) then it needs to write files somewhere. And if it needs to do this, it should have a dedicated automatically-generated folder in ProgramFiles or something similar. And if it needs to do this, it should be registered as an app on the system. And if it needs to do this, it needs a nice installation process. Here's a couple links I found during my research for this:

https://www.autohotkey.com/board/topic/14946-how-to-create-installer-for-my-ahk-script/
https://www.createinstall.com/
https://nsis.sourceforge.io/Zip2Exe

Not working for 1 computer but works for another?

Okay so on one of my computers this is working flawlessly. The other one on the other hand doesn't work at all for the fishing one. I have tried ctrl+alt+f and it does nothing... I have tried ctrl+alt+delete to see if maybe my ctrl or alt key isn't working but it works... I also tested the f key to see if that was broken and it worked as well.... I am at a loss here. Is their anything that I can do to fix this issue? Am I missing something from one computer to the next? PS both are on windows 10 latest and both are on minecraft 1.15.1. EDIT: Nevermind, I forgot to click the minecraft window before starting it. You may close this one.

Minimize to taskbar

Hey, would it be possible for this program to get an update which will give it the option to minimize to taskbar?

Minimize to tray

I know that someone asked for a feature similar (#19) but I think what would be better is having the script's window disappear and having mc minimize to the taskbar. I do know that this may not be possible, but It would be a great feature.

Program can target any window

Even though there is a part of the code that checks for the class of the targeted window and checks if it's a Minecraft window or not (checks if it's a GLFW30), the program actually allows you to target any type of window. I think I've found why there's this bug, and it's all at line 12. Instead of being:
targetwinclass := GLFW30
it should be
targetwinclass := "GLFW30"

That's because with the := operator, AutoHotKey doesn't treat the righthandside as a literal string but as the name of a (non-existing) variable. With the "..." it will now treat it as a literal string.

This bug made it so that at line 78, when the InStr looked for targetwinclass inside of targetclass, it was actually looking for the empty string (I'm assuming it's the default value of a non-existing variable) inside whatever targetclass was, and because it was empty it could ALWAYS find it inside any other string.

It's not that important of a bug since it didn't allow the user to make any really dangerous stuff, but since the code for the check was already there, I thought it wouldn't hurt to fix it!

By the way, that's the same reason why the declared wintitle can't actually be used as the title of the window when showing the GUI. By initializing wintitle as
wintitle := "Minecraft X-AHK V0.4"
and calling it in Gui Show as
Gui, Show,, %wintitle %
it will actually show the desidered title

did you try move mouse in minecraft use AHK?

The following is translated by Google, if there is a problem with the sentence, sorry。
I want to use some scripts to move the mouse in my world minecraft 。
I have tried many methods and none of them worked.

winapi wm_sendmessage wm_postmessage
Click work, but moving the mouse doesn't work

ahk
Click work,Move mouse always look down and rotate

Have you tried it?
谢谢!thank you!

Generator and concrete modes stop working after alt+tabbing

Upon inspection, modifying the Generator function to:

Generator:
{
	BreakLoop := 0

	While (BreakLoop = 0)
	{
		If (BreakLoop = 1)
		{
			sleep 10
		}

		ControlClick, , ahk_id %id%, ,Left, , NAD
		sleep 100
	}

	ControlClick, , ahk_id %id%, ,Left, , NAU
	Sleep 100
	Return
}

a.k.a moving the ControlClick, , ahk_id %id%, ,Left, , NAD to inside the while block, makes it function properly.

Documentation for F3 + P toggle

So I just downloaded the script, I got it working the first time. I tried the concrete farming and it worked like a charm, did not have to alt+tab, the window instantly unfocused. I didnt realize it was only for one instance so I launched a second instance of minecraft and then the script wasnt working, obviously. So after closing the second minecraft, I tried to make it work on the first (and only one openned now) instance of minecraft. The script works, but it wont let me unfocus minecraft. If I move my mouse, the charcter moves and if I try to alt+tab the script stops working. What can I do?

Alt Tab on Concrete

Posted by "ArmouredMonkey" via Xisuma x-ahk discord channel https://discord.gg/xisuma

I am not sure if it is me, but the concrete option doesn't seem to keep going when you alt+tab to change window. (Done F3+P to ensure the game doesn't pause). I have managed to get it working by having the x-ahk window open over minecraft then doing ctrl+alt+c to start it. I have probably been doing that with the fishing too so that is my bad

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.