1
0

新版本初次提交

This commit is contained in:
Z 2024-06-13 01:28:08 +08:00
commit 15d65bd655
63 changed files with 195 additions and 0 deletions

25
Config/Heaven.ini Normal file
View File

@ -0,0 +1,25 @@
[Heaven]
._WndType=WndFrame
._Parent=Lowest
Left=0
Top=0
Width=0
Height=0
DragAreaLeft=0
DragAreaTop=0
DragAreaRight=0
DragAreaBottom=0
AnimateStartPosX=0
AnimateStartPosY=0
AnimateEndPosX=0
AnimateEndPosY=0
AnimateTimeSpace=0
AnimateMoveSpeed=0
ScriptFile=
IsCustomDragable=0
DragAreaWidth=0
DragAreaHeight=0
DummyWnd=1
DisableBringToTop=1
DisableBreath=0
BreatheWhenHide=1

35
Config/PubgAssist.ini Normal file
View File

@ -0,0 +1,35 @@
[PubgAssist]
._WndType=WndFrame
._Parent=Lowest
Left=0
Top=0
Width=0
Height=0
DragAreaLeft=0
DragAreaTop=0
DragAreaRight=0
DragAreaBottom=0
AnimateStartPosX=0
AnimateStartPosY=0
AnimateEndPosX=0
AnimateEndPosY=0
AnimateTimeSpace=0
AnimateMoveSpeed=0
IsCustomDragable=0
DragAreaWidth=0
DragAreaHeight=0
DummyWnd=0
DisableBreath=0
DisableBringToTop=0
BreatheWhenHide=1
MousePenetrable=1
[Handle_Total]
._WndType=Handle
._Parent=PubgAssist
HandleType=0
FirstItemPosType=0
Left=0
Top=0
PosType=0

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,19 @@
{
"LibraryName": "Heaven陆服怀旧服核心库",
"Library": [
"TableTitle.lib",
"Core.lib",
"Event.lib",
"Assist.lib",
"Object.lib",
"Skill.lib",
"Buff.lib",
"PvpBuffs.lib",
"PvpAssist.lib",
"DungeonAssist.lib",
"ScriptEngine.lib"
],
"EngineLibrary": [
"EngineBase.lib"
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Library/CN_CORE/Assist.lib Normal file

Binary file not shown.

BIN
Library/CN_CORE/Buff.lib Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,20 @@
{
"LibraryName": "Heaven陆服核心库",
"Library": [
"ChatMonitor.lib",
"Core.lib",
"Event.lib",
"Assist.lib",
"Object.lib",
"Skill.lib",
"Buff.lib",
"PvpBuffs.lib",
"PvpAssist.lib",
"DungeonAssist.lib",
"ScriptEngine.lib",
"AroundForList.lib"
],
"EngineLibrary": [
"EngineBase.lib"
]
}

BIN
Library/CN_CORE/Core.lib Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Library/CN_CORE/Event.lib Normal file

Binary file not shown.

BIN
Library/CN_CORE/Object.lib Normal file

Binary file not shown.

Binary file not shown.

BIN
Library/CN_CORE/Skill.lib Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Library/CN_EXPCORE/Buff.lib Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,20 @@
{
"LibraryName": "Heaven陆服体验服核心库",
"Library": [
"ChatMonitor.lib",
"Core.lib",
"Event.lib",
"Assist.lib",
"Object.lib",
"Skill.lib",
"Buff.lib",
"PvpBuffs.lib",
"PvpAssist.lib",
"DungeonAssist.lib",
"ScriptEngine.lib",
"AroundForList.lib"
],
"EngineLibrary": [
"EngineBase.lib"
]
}

BIN
Library/CN_EXPCORE/Core.lib Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,6 @@
{
"LibraryName": "Heaven陆服插件库",
"Library": [
"Pubg.lib"
]
}

BIN
Library/CN_ROLE/Pubg.lib Normal file

Binary file not shown.

45
Library/Config.json Normal file
View File

@ -0,0 +1,45 @@
{
"CN":{
"Role":[
"GAME_PLUGIN",
"CN_ROLE"
],
"Game":[
"CN_CORE"
]
},
"CN_EXP":{
"Role":[
"GAME_PLUGIN",
"CN_ROLE"
],
"Game":[
"CN_EXPCORE"
]
},
"CN_CLASSIC":{
"Role":[
],
"Game":[
"CN_CLASSIC_CORE"
]
},
"TC":{
"Role":[
"GAME_PLUGIN",
"TC_ROLE"
],
"Game":[
"TC_CORE"
]
},
"TC_CLASSIC":{
"Role":[
],
"Game":[
"TC_CLASSIC_CORE"
]
}
}

View File

@ -0,0 +1,6 @@
{
"LibraryName": "HeavenPluginLib",
"Library": [
"xBuffTime.lib"
]
}

Binary file not shown.

BIN
Loader.exe Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

19
Start.bat Normal file
View File

@ -0,0 +1,19 @@
@echo off
chcp 65001
cls
git fetch --all
git reset --hard origin/master
git pull
start Loader.exe
exit /b
:promptUser
echo 輸入1正式服(dx11),輸入2測試服(dx12)
set /p userinput=
if "%userinput%"=="1" (
) else if "%userinput%"=="2" (
start Loader_Exp.exe
) else (
echo 输入无效,请重新输入。
goto promptUser
)
exit /b