1
0
mirror of https://github.com/krislamo/MacroMC synced 2024-09-19 16:40:36 +00:00
MacroMC/macromc.py

40 lines
1.1 KiB
Python
Raw Normal View History

2020-06-16 04:27:58 +00:00
#!/usr/bin/env python3
#
# MacroMC is macro software for Minecraft written in Python 3.
# Copyright (C) 2020 Kris Lamoureux
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
import keyboard
import pyautogui
enabled = False
while True:
toggled = keyboard.is_pressed('z')
if toggled:
if enabled:
print("Macro disabled.")
enabled = False
else:
print("Macro enabled.")
enabled = True
if toggled and not enabled:
pyautogui.mouseUp(0,0)
#pyautogui.keyUp('w')
elif enabled:
pyautogui.mouseDown(0,0)
#pyautogui.keyDown('w')