-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodDesc.xml
More file actions
68 lines (61 loc) · 2.9 KB
/
modDesc.xml
File metadata and controls
68 lines (61 loc) · 2.9 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<modDesc descVersion="99">
<author>SimGamerJen</author>
<version>2.0.19.0</version>
<title>
<en>Helper Profiles</en>
</title>
<description>
<en>Helper profile selector with optional AvatarSwitcher appearance binding for AI worker vehicle characters. v2.0.19-beta adds the XML appearance binding interface, immediate bind/unbind list updates, corrected unbound slot labels, and finalised default keybinds: semicolon cycles workers, Shift+semicolon toggles hpMode, Right Ctrl+semicolon opens appearance bindings, and Right Alt+semicolon toggles the overlay.</en>
<de>Erstelle dauerhafte Namen und Erscheinungsbilder für beliebig viele Helfer, bis zum maximal im Spiel erlaubten Limit. Unterstützung für AutoDrive und Courseplay wird derzeit entwickelt.</de>
<fr>Créez des noms et des apparences persistants pour n'importe quel nombre d'aides jusqu'au maximum autorisé dans le jeu. La prise en charge de l'intégration d'AutoDrive et de Courseplay est en cours de développement.</fr>
</description>
<multiplayer supported="true"/>
<iconFilename>helperprofiles.dds</iconFilename>
<actions>
<action name="OPEN_HELPER_MENU" category="SYSTEM"/>
<action name="HP_TOGGLE_OVERLAY" category="MISC"/>
<action name="HP_TOGGLE_MODE" category="MISC"/>
<action name="HP_OPEN_APPEARANCE_MENU" category="MISC"/>
</actions>
<inputBinding>
<actionBinding action="OPEN_HELPER_MENU">
<binding device="KB_MOUSE_DEFAULT" input="KEY_semicolon"/>
</actionBinding>
<actionBinding action="HP_TOGGLE_MODE">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lshift KEY_semicolon" />
<binding device="KB_MOUSE_DEFAULT" input="KEY_rshift KEY_semicolon" />
</actionBinding>
<actionBinding action="HP_OPEN_APPEARANCE_MENU">
<binding device="KB_MOUSE_DEFAULT" input="KEY_rctrl KEY_semicolon" />
</actionBinding>
<actionBinding action="HP_TOGGLE_OVERLAY">
<binding device="KB_MOUSE_DEFAULT" input="KEY_ralt KEY_semicolon" />
</actionBinding>
</inputBinding>
<l10n>
<text name="input_OPEN_HELPER_MENU">
<en>Cycle Helper</en>
</text>
<text name="input_HP_TOGGLE_OVERLAY">
<en>Toggle Overlay</en>
</text>
<text name="input_HP_TOGGLE_MODE">
<en>Toggle Helper Mode</en>
</text>
<text name="input_HP_OPEN_APPEARANCE_MENU">
<en>Open Helper Appearance Bindings</en>
</text>
</l10n>
<extraSourceFiles>
<sourceFile filename="scripts/HP_Config.lua"/>
<sourceFile filename="scripts/HP_UI.lua"/>
<sourceFile filename="scripts/HP_Debug.lua"/>
<sourceFile filename="scripts/HP_ASBridge.lua"/>
<sourceFile filename="scripts/HP_WorkerAppearance.lua"/>
<sourceFile filename="scripts/HP_AppearanceMenu.lua"/>
<sourceFile filename="scripts/gui/HP_AppearanceBindingsScreen.lua"/>
<sourceFile filename="scripts/HelperProfiles.lua"/>
<sourceFile filename="scripts/RegisterPlayerActionEvents.lua"/>
</extraSourceFiles>
</modDesc>