Skip to content

Commit

Permalink
Update XVM 8.1.2 - custom
Browse files Browse the repository at this point in the history
  • Loading branch information
kipphan committed Oct 22, 2019
1 parent 6107188 commit 03410f4
Show file tree
Hide file tree
Showing 72 changed files with 162 additions and 160 deletions.
4 changes: 0 additions & 4 deletions source/8.1.1_31

This file was deleted.

4 changes: 4 additions & 0 deletions source/8.1.2_23
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
8.1.2
23
bdfd9605c8051c3592016e3e60ff96e7e51bd9c6
master
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.
6 changes: 3 additions & 3 deletions source/res_mods/configs/xvm/default/@xvm.xc
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@

// Supported version of the game.
// Поддерживаемая версия игры.
"gameVersion": "1.6.1.0",
"gameVersion": "1.6.1.1",

// The minimum required version of the XVM mod.
// Минимально необходимая версия мода XVM.
"modMinVersion": "8.1.0",
"modMinVersion": "8.1.2",

// Config last modified.
// Дата последней модификации конфига.
"date": "08.10.2019"
"date": "14.10.2019"
},

// Parameters for login screen.
Expand Down
12 changes: 6 additions & 6 deletions source/res_mods/configs/xvm/default/alpha.xc
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@
// Если вы хотите использовать свои собственные границы прозрачности вместо стандартных,
// раскомментируйте блок и замените "rating_name" на одно из следующих значений: "eff", "wn8", "wtr", "wgr".
// "rating_name": [
// { "value": 500, "alpha": ${"def.colorRating.very_bad" } }, // 0 - 500 - very bad
// { "value": 1000, "alpha": ${"def.colorRating.bad" } }, // 501 - 1000 - bad
// { "value": 2000, "alpha": ${"def.colorRating.normal" } }, // 1001 - 2000 - normal
// { "value": 3000, "alpha": ${"def.colorRating.good" } }, // 2001 - 3000 - good
// { "value": 5000, "alpha": ${"def.colorRating.very_good"} }, // 3001 - 5000 - very good
// { "value": 99999, "alpha": ${"def.colorRating.unique" } } // 5001 - 99999 - unique
// { "value": 500, "alpha": ${"def.alphaRating.very_bad" } }, // 0 - 500 - very bad
// { "value": 1000, "alpha": ${"def.alphaRating.bad" } }, // 501 - 1000 - bad
// { "value": 2000, "alpha": ${"def.alphaRating.normal" } }, // 1001 - 2000 - normal
// { "value": 3000, "alpha": ${"def.alphaRating.good" } }, // 2001 - 3000 - good
// { "value": 5000, "alpha": ${"def.alphaRating.very_good"} }, // 3001 - 5000 - very good
// { "value": 99999, "alpha": ${"def.alphaRating.unique" } } // 5001 - 99999 - unique
// ],
// Dynamic transparency by win percent.
// Динамическая прозрачность по проценту побед.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Autologin",
"description": "XVM Autologin module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
12 changes: 7 additions & 5 deletions source/res_mods/mods/xfw_packages/xvm_battle/python/minimap.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,17 @@ def _ArenaVehiclesPlugin__switchToVehicle(base, self, prevCtrlID):
if g_minimap.viewPointID:
self._invoke(g_minimap.viewPointID, 'xvm_setVehicleID', self._ctrlVehicleID)

@registerEvent(PersonalEntriesPlugin, '_PersonalEntriesPlugin__updateViewPointEntry')
def _PersonalEntriesPlugin__updateViewPointEntry(self, vehicleID=0):
g_minimap.viewPointID = self._getViewPointID()
@overrideMethod(PersonalEntriesPlugin, '_PersonalEntriesPlugin__updateViewPointEntry')
def _PersonalEntriesPlugin__updateViewPointEntry(base, self, vehicleID=0):
base(self, vehicleID)
g_minimap.viewPointID = self._getViewPointID()


# Minimap dead switch

@registerEvent(PostMortemControlMode, 'onMinimapClicked')
def _PostMortemControlMode_onMinimapClicked(self, worldPos):
@overrideMethod(PostMortemControlMode, 'onMinimapClicked')
def _PostMortemControlMode_onMinimapClicked(base, self, worldPos):
base(self, worldPos)
#log('_PostMortemControlMode_onMinimapClicked active=' + str(g_minimap.active))
if g_minimap.active and g_minimap.opt_minimapDeadSwitch:
try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Battle",
"description": "XVM Battle module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Battle Results",
"description": "XVM Battle Results module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Contacts",
"description": "XVM Contacts",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Crew",
"description": "XVM Crew Module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Equip",
"description": "XVM Equip Module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Export",
"description": "XVM Export Module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Hangar",
"description": "XVM Hangar Module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "XVM Hotfix",
"description": "XVM Hotfix Module",

"version": "8.1.1.31",
"version": "8.1.2.23",
"dependencies": ["com.modxvm.xvm"],

"url": "https://modxvm.com/",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file was created automatically from build script
__xvm_version__ = '8.1.1'
__xvm_version__ = '8.1.2'
__wot_version__ = '1.6.1.1'
__revision__ = '31'
__revision__ = '23'
__branch__ = 'master'
__node__ = '14cb4688e67948b6dea37008cce45f8d23b86585'
__development__ = 'True'
__node__ = 'bdfd9605c8051c3592016e3e60ff96e7e51bd9c6'
__development__ = 'False'
Loading

0 comments on commit 03410f4

Please sign in to comment.