-
Notifications
You must be signed in to change notification settings - Fork 60
/
Entrance.py
43 lines (37 loc) · 1.1 KB
/
Entrance.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from sys import platform, version_info
from asyncio import set_event_loop_policy, WindowsSelectorEventLoopPolicy
if platform == "win32" and version_info >= (3, 8, 0):
set_event_loop_policy(WindowsSelectorEventLoopPolicy())
from FFxivPythonTrigger import *
Logger.print_log_level = Logger.DEBUG
try:
register_module("SocketLogger")
"core"
register_modules([
"ChatLog2",
"Command",
"HttpApi",
"XivMemory",
"XivMagic",
"CombatMonitor",
"XivNetwork",
])
"functions"
"delete the '#' in front of each line to register as a default load plugin"
register_modules([
# "MoPlus", # 鼠标功能增强
# "ActorQuery", # actor 查询
# "Zoom2", # 视距解限
# "XivCombo", # 连击绑定(一键系列)
# "XivCraft", # 生产规划器
# "ACTLogLines", # act接口
# "SendKeys", # 按键发送
# "Markings", # 标点功能
# "PartyTroubleMaker", # 小警察
# "RockJail", # 三连桶
])
start()
except Exception:
pass
finally:
close()