This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local json = require("dkjson") | |
function get_registry_info() | |
local data = {} | |
for _i, registry in ipairs(fusion:GetRegList()) do | |
data[registry.ID] = {} | |
for k, v in pairs(fusion:GetRegAttrs(registry.ID)) do | |
table.insert(data[registry.ID], k) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reg_map = fusion:GetRegList() -- dict[int, Registry] | |
for _i, reg in ipairs(reg_map) do | |
comp:AddTool(reg.ID) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# stdlib modules | |
import sys | |
import time | |
# third party modules | |
from PySide2 import QtCore, QtWidgets | |
class AbstractProgressBar(QtCore.QObject): | |
# signals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Piano Tiles 2 auto clicker bot. | |
This is an auto clicker bot for the online Piano Tiles 2 game. | |
I wrote this on a late night after watching a video of a similar project and | |
decided to give it a go myself. I'm fun at parties, trust me. | |
Dependencies: | |
- pyautogui | |
- fastgrab 0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# stdlib module | |
import os | |
if __name__ == "__main__": | |
# get all loaders in current comp | |
loaders = comp.GetToolList(False, "Loader").values() | |
savers = comp.GetToolList(False, "Saver").values() | |
nodes = [] |