effigy_wire 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/BIN_README.txt +18 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +40 -0
- data/LICENSE.txt +21 -0
- data/README.md +7 -0
- data/Rakefile +2 -0
- data/bin/clarity-protobuf/clean +36 -0
- data/bin/clarity-protobuf/copy +75 -0
- data/bin/effigy/compile-proto +81 -0
- data/bin/effigy/mk-require-turds +43 -0
- data/bin/effigy/package +56 -0
- data/bin/effigy/tweak-proto +30 -0
- data/bin/effigy/tweak-rb +20 -0
- data/effigy_wire.gemspec +24 -0
- data/lib/effigy/wire/demo.pb.rb +205 -0
- data/lib/effigy/wire/dota_commonmessages.pb.rb +209 -0
- data/lib/effigy/wire/dota_modifiers.pb.rb +78 -0
- data/lib/effigy/wire/dota_usermessages.pb.rb +1315 -0
- data/lib/effigy/wire/netmessages.pb.rb +177 -0
- data/lib/effigy/wire/networkbasetypes.pb.rb +268 -0
- data/lib/effigy/wire/s1/s1_dota_usermessages.pb.rb +102 -0
- data/lib/effigy/wire/s1/s1_netmessages.pb.rb +121 -0
- data/lib/effigy/wire/s1/s1_usermessages.pb.rb +271 -0
- data/lib/effigy/wire/s1.rb +3 -0
- data/lib/effigy/wire/s2/s2_base_gcmessages.pb.rb +57 -0
- data/lib/effigy/wire/s2/s2_dota_gcmessages_common.pb.rb +214 -0
- data/lib/effigy/wire/s2/s2_dota_match_metadata.pb.rb +106 -0
- data/lib/effigy/wire/s2/s2_dota_usermessages.pb.rb +117 -0
- data/lib/effigy/wire/s2/s2_gameevents.pb.rb +172 -0
- data/lib/effigy/wire/s2/s2_netmessages.pb.rb +158 -0
- data/lib/effigy/wire/s2/s2_te.pb.rb +330 -0
- data/lib/effigy/wire/s2/s2_usermessages.pb.rb +514 -0
- data/lib/effigy/wire/s2.rb +3 -0
- data/lib/effigy/wire.rb +9 -0
- data/lib/effigy.rb +3 -0
- data/proto/demo.proto +157 -0
- data/proto/dota_commonmessages.proto +183 -0
- data/proto/dota_modifiers.proto +54 -0
- data/proto/dota_usermessages.proto +1152 -0
- data/proto/netmessages.proto +133 -0
- data/proto/networkbasetypes.proto +219 -0
- data/proto/s1/google/protobuf/descriptor.proto +622 -0
- data/proto/s1/s1_dota_usermessages.proto +89 -0
- data/proto/s1/s1_netmessages.proto +86 -0
- data/proto/s1/s1_usermessages.proto +217 -0
- data/proto/s2/google/protobuf/descriptor.proto +622 -0
- data/proto/s2/s2_base_gcmessages.proto +37 -0
- data/proto/s2/s2_dota_gcmessages_common.proto +177 -0
- data/proto/s2/s2_dota_match_metadata.proto +67 -0
- data/proto/s2/s2_dota_usermessages.proto +104 -0
- data/proto/s2/s2_gameevents.proto +125 -0
- data/proto/s2/s2_netmessages.proto +120 -0
- data/proto/s2/s2_te.proto +276 -0
- data/proto/s2/s2_usermessages.proto +434 -0
- metadata +148 -0
@@ -0,0 +1,1315 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
##
|
4
|
+
# This file is auto-generated. DO NOT EDIT!
|
5
|
+
#
|
6
|
+
require 'protobuf/message'
|
7
|
+
|
8
|
+
|
9
|
+
##
|
10
|
+
# Imports
|
11
|
+
#
|
12
|
+
require_relative 'networkbasetypes.pb'
|
13
|
+
require_relative 'dota_commonmessages.pb'
|
14
|
+
|
15
|
+
module Effigy
|
16
|
+
module Wire
|
17
|
+
|
18
|
+
##
|
19
|
+
# Enum Classes
|
20
|
+
#
|
21
|
+
class DOTA_COMBATLOG_TYPES < ::Protobuf::Enum
|
22
|
+
define :DOTA_COMBATLOG_DAMAGE, 0
|
23
|
+
define :DOTA_COMBATLOG_HEAL, 1
|
24
|
+
define :DOTA_COMBATLOG_MODIFIER_ADD, 2
|
25
|
+
define :DOTA_COMBATLOG_MODIFIER_REMOVE, 3
|
26
|
+
define :DOTA_COMBATLOG_DEATH, 4
|
27
|
+
define :DOTA_COMBATLOG_ABILITY, 5
|
28
|
+
define :DOTA_COMBATLOG_ITEM, 6
|
29
|
+
define :DOTA_COMBATLOG_LOCATION, 7
|
30
|
+
define :DOTA_COMBATLOG_GOLD, 8
|
31
|
+
define :DOTA_COMBATLOG_GAME_STATE, 9
|
32
|
+
define :DOTA_COMBATLOG_XP, 10
|
33
|
+
define :DOTA_COMBATLOG_PURCHASE, 11
|
34
|
+
define :DOTA_COMBATLOG_BUYBACK, 12
|
35
|
+
define :DOTA_COMBATLOG_ABILITY_TRIGGER, 13
|
36
|
+
define :DOTA_COMBATLOG_PLAYERSTATS, 14
|
37
|
+
define :DOTA_COMBATLOG_MULTIKILL, 15
|
38
|
+
define :DOTA_COMBATLOG_KILLSTREAK, 16
|
39
|
+
define :DOTA_COMBATLOG_TEAM_BUILDING_KILL, 17
|
40
|
+
define :DOTA_COMBATLOG_FIRST_BLOOD, 18
|
41
|
+
define :DOTA_COMBATLOG_MODIFIER_REFRESH, 19
|
42
|
+
define :DOTA_COMBATLOG_NEUTRAL_CAMP_STACK, 20
|
43
|
+
define :DOTA_COMBATLOG_PICKUP_RUNE, 21
|
44
|
+
define :DOTA_COMBATLOG_REVEALED_INVISIBLE, 22
|
45
|
+
define :DOTA_COMBATLOG_HERO_SAVED, 23
|
46
|
+
define :DOTA_COMBATLOG_MANA_RESTORED, 24
|
47
|
+
define :DOTA_COMBATLOG_HERO_LEVELUP, 25
|
48
|
+
define :DOTA_COMBATLOG_BOTTLE_HEAL_ALLY, 26
|
49
|
+
define :DOTA_COMBATLOG_ENDGAME_STATS, 27
|
50
|
+
define :DOTA_COMBATLOG_INTERRUPT_CHANNEL, 28
|
51
|
+
define :DOTA_COMBATLOG_ALLIED_GOLD, 29
|
52
|
+
define :DOTA_COMBATLOG_AEGIS_TAKEN, 30
|
53
|
+
end
|
54
|
+
|
55
|
+
class DOTA_CHAT_MESSAGE < ::Protobuf::Enum
|
56
|
+
define :CHAT_MESSAGE_INVALID, -1
|
57
|
+
define :CHAT_MESSAGE_HERO_KILL, 0
|
58
|
+
define :CHAT_MESSAGE_HERO_DENY, 1
|
59
|
+
define :CHAT_MESSAGE_BARRACKS_KILL, 2
|
60
|
+
define :CHAT_MESSAGE_TOWER_KILL, 3
|
61
|
+
define :CHAT_MESSAGE_TOWER_DENY, 4
|
62
|
+
define :CHAT_MESSAGE_FIRSTBLOOD, 5
|
63
|
+
define :CHAT_MESSAGE_STREAK_KILL, 6
|
64
|
+
define :CHAT_MESSAGE_BUYBACK, 7
|
65
|
+
define :CHAT_MESSAGE_AEGIS, 8
|
66
|
+
define :CHAT_MESSAGE_ROSHAN_KILL, 9
|
67
|
+
define :CHAT_MESSAGE_COURIER_LOST, 10
|
68
|
+
define :CHAT_MESSAGE_COURIER_RESPAWNED, 11
|
69
|
+
define :CHAT_MESSAGE_GLYPH_USED, 12
|
70
|
+
define :CHAT_MESSAGE_ITEM_PURCHASE, 13
|
71
|
+
define :CHAT_MESSAGE_CONNECT, 14
|
72
|
+
define :CHAT_MESSAGE_DISCONNECT, 15
|
73
|
+
define :CHAT_MESSAGE_DISCONNECT_WAIT_FOR_RECONNECT, 16
|
74
|
+
define :CHAT_MESSAGE_DISCONNECT_TIME_REMAINING, 17
|
75
|
+
define :CHAT_MESSAGE_DISCONNECT_TIME_REMAINING_PLURAL, 18
|
76
|
+
define :CHAT_MESSAGE_RECONNECT, 19
|
77
|
+
define :CHAT_MESSAGE_PLAYER_LEFT, 20
|
78
|
+
define :CHAT_MESSAGE_SAFE_TO_LEAVE, 21
|
79
|
+
define :CHAT_MESSAGE_RUNE_PICKUP, 22
|
80
|
+
define :CHAT_MESSAGE_RUNE_BOTTLE, 23
|
81
|
+
define :CHAT_MESSAGE_INTHEBAG, 24
|
82
|
+
define :CHAT_MESSAGE_SECRETSHOP, 25
|
83
|
+
define :CHAT_MESSAGE_ITEM_AUTOPURCHASED, 26
|
84
|
+
define :CHAT_MESSAGE_ITEMS_COMBINED, 27
|
85
|
+
define :CHAT_MESSAGE_SUPER_CREEPS, 28
|
86
|
+
define :CHAT_MESSAGE_CANT_USE_ACTION_ITEM, 29
|
87
|
+
define :CHAT_MESSAGE_CHARGES_EXHAUSTED, 30
|
88
|
+
define :CHAT_MESSAGE_CANTPAUSE, 31
|
89
|
+
define :CHAT_MESSAGE_NOPAUSESLEFT, 32
|
90
|
+
define :CHAT_MESSAGE_CANTPAUSEYET, 33
|
91
|
+
define :CHAT_MESSAGE_PAUSED, 34
|
92
|
+
define :CHAT_MESSAGE_UNPAUSE_COUNTDOWN, 35
|
93
|
+
define :CHAT_MESSAGE_UNPAUSED, 36
|
94
|
+
define :CHAT_MESSAGE_AUTO_UNPAUSED, 37
|
95
|
+
define :CHAT_MESSAGE_YOUPAUSED, 38
|
96
|
+
define :CHAT_MESSAGE_CANTUNPAUSETEAM, 39
|
97
|
+
define :CHAT_MESSAGE_VOICE_TEXT_BANNED, 41
|
98
|
+
define :CHAT_MESSAGE_SPECTATORS_WATCHING_THIS_GAME, 42
|
99
|
+
define :CHAT_MESSAGE_REPORT_REMINDER, 43
|
100
|
+
define :CHAT_MESSAGE_ECON_ITEM, 44
|
101
|
+
define :CHAT_MESSAGE_TAUNT, 45
|
102
|
+
define :CHAT_MESSAGE_RANDOM, 46
|
103
|
+
define :CHAT_MESSAGE_RD_TURN, 47
|
104
|
+
define :CHAT_MESSAGE_DROP_RATE_BONUS, 49
|
105
|
+
define :CHAT_MESSAGE_NO_BATTLE_POINTS, 50
|
106
|
+
define :CHAT_MESSAGE_DENIED_AEGIS, 51
|
107
|
+
define :CHAT_MESSAGE_INFORMATIONAL, 52
|
108
|
+
define :CHAT_MESSAGE_AEGIS_STOLEN, 53
|
109
|
+
define :CHAT_MESSAGE_ROSHAN_CANDY, 54
|
110
|
+
define :CHAT_MESSAGE_ITEM_GIFTED, 55
|
111
|
+
define :CHAT_MESSAGE_HERO_KILL_WITH_GREEVIL, 56
|
112
|
+
define :CHAT_MESSAGE_HOLDOUT_TOWER_DESTROYED, 57
|
113
|
+
define :CHAT_MESSAGE_HOLDOUT_WALL_DESTROYED, 58
|
114
|
+
define :CHAT_MESSAGE_HOLDOUT_WALL_FINISHED, 59
|
115
|
+
define :CHAT_MESSAGE_PLAYER_LEFT_LIMITED_HERO, 62
|
116
|
+
define :CHAT_MESSAGE_ABANDON_LIMITED_HERO_EXPLANATION, 63
|
117
|
+
define :CHAT_MESSAGE_DISCONNECT_LIMITED_HERO, 64
|
118
|
+
define :CHAT_MESSAGE_LOW_PRIORITY_COMPLETED_EXPLANATION, 65
|
119
|
+
define :CHAT_MESSAGE_RECRUITMENT_DROP_RATE_BONUS, 66
|
120
|
+
define :CHAT_MESSAGE_FROSTIVUS_SHINING_BOOSTER_ACTIVE, 67
|
121
|
+
define :CHAT_MESSAGE_PLAYER_LEFT_AFK, 73
|
122
|
+
define :CHAT_MESSAGE_PLAYER_LEFT_DISCONNECTED_TOO_LONG, 74
|
123
|
+
define :CHAT_MESSAGE_PLAYER_ABANDONED, 75
|
124
|
+
define :CHAT_MESSAGE_PLAYER_ABANDONED_AFK, 76
|
125
|
+
define :CHAT_MESSAGE_PLAYER_ABANDONED_DISCONNECTED_TOO_LONG, 77
|
126
|
+
define :CHAT_MESSAGE_WILL_NOT_BE_SCORED, 78
|
127
|
+
define :CHAT_MESSAGE_WILL_NOT_BE_SCORED_RANKED, 79
|
128
|
+
define :CHAT_MESSAGE_WILL_NOT_BE_SCORED_NETWORK, 80
|
129
|
+
define :CHAT_MESSAGE_WILL_NOT_BE_SCORED_NETWORK_RANKED, 81
|
130
|
+
define :CHAT_MESSAGE_CAN_QUIT_WITHOUT_ABANDON, 82
|
131
|
+
define :CHAT_MESSAGE_RANKED_GAME_STILL_SCORED_LEAVERS_GET_LOSS, 83
|
132
|
+
define :CHAT_MESSAGE_ABANDON_RANKED_BEFORE_FIRST_BLOOD_PARTY, 84
|
133
|
+
define :CHAT_MESSAGE_COMPENDIUM_LEVEL, 85
|
134
|
+
define :CHAT_MESSAGE_VICTORY_PREDICTION_STREAK, 86
|
135
|
+
define :CHAT_MESSAGE_ASSASSIN_ANNOUNCE, 87
|
136
|
+
define :CHAT_MESSAGE_ASSASSIN_SUCCESS, 88
|
137
|
+
define :CHAT_MESSAGE_ASSASSIN_DENIED, 89
|
138
|
+
define :CHAT_MESSAGE_VICTORY_PREDICTION_SINGLE_USER_CONFIRM, 90
|
139
|
+
define :CHAT_MESSAGE_EFFIGY_KILL, 91
|
140
|
+
define :CHAT_MESSAGE_VOICE_TEXT_BANNED_OVERFLOW, 92
|
141
|
+
define :CHAT_MESSAGE_YEAR_BEAST_KILLED, 93
|
142
|
+
define :CHAT_MESSAGE_PAUSE_COUNTDOWN, 94
|
143
|
+
define :CHAT_MESSAGE_COINS_WAGERED, 95
|
144
|
+
define :CHAT_MESSAGE_HERO_NOMINATED_BAN, 96
|
145
|
+
define :CHAT_MESSAGE_HERO_BANNED, 97
|
146
|
+
define :CHAT_MESSAGE_HERO_BAN_COUNT, 98
|
147
|
+
end
|
148
|
+
|
149
|
+
class DOTA_NO_BATTLE_POINTS_REASONS < ::Protobuf::Enum
|
150
|
+
define :NO_BATTLE_POINTS_WRONG_LOBBY_TYPE, 1
|
151
|
+
define :NO_BATTLE_POINTS_PRACTICE_BOTS, 2
|
152
|
+
define :NO_BATTLE_POINTS_CHEATS_ENABLED, 3
|
153
|
+
define :NO_BATTLE_POINTS_LOW_PRIORITY, 4
|
154
|
+
end
|
155
|
+
|
156
|
+
class DOTA_CHAT_INFORMATIONAL < ::Protobuf::Enum
|
157
|
+
define :INFO_COOP_BATTLE_POINTS_RULES, 1
|
158
|
+
define :INFO_FROSTIVUS_ABANDON_REMINDER, 2
|
159
|
+
define :INFO_RANKED_REMINDER, 3
|
160
|
+
define :INFO_COOP_LOW_PRIORITY_PASSIVE_REMINDER, 4
|
161
|
+
end
|
162
|
+
|
163
|
+
class DOTA_ABILITY_PING_TYPE < ::Protobuf::Enum
|
164
|
+
define :ABILITY_PING_READY, 1
|
165
|
+
define :ABILITY_PING_MANA, 2
|
166
|
+
define :ABILITY_PING_COOLDOWN, 3
|
167
|
+
define :ABILITY_PING_ENEMY, 4
|
168
|
+
define :ABILITY_PING_UNLEARNED, 5
|
169
|
+
end
|
170
|
+
|
171
|
+
class EDotaEntityMessages < ::Protobuf::Enum
|
172
|
+
define :DOTA_UNIT_SPEECH, 0
|
173
|
+
define :DOTA_UNIT_SPEECH_MUTE, 1
|
174
|
+
define :DOTA_UNIT_ADD_GESTURE, 2
|
175
|
+
define :DOTA_UNIT_REMOVE_GESTURE, 3
|
176
|
+
define :DOTA_UNIT_REMOVE_ALL_GESTURES, 4
|
177
|
+
define :DOTA_UNIT_FADE_GESTURE, 6
|
178
|
+
define :DOTA_UNIT_SPEECH_CLIENTSIDE_RULES, 7
|
179
|
+
end
|
180
|
+
|
181
|
+
class DOTA_PARTICLE_MESSAGE < ::Protobuf::Enum
|
182
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_CREATE, 0
|
183
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE, 1
|
184
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE_FORWARD, 2
|
185
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE_ORIENTATION, 3
|
186
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE_FALLBACK, 4
|
187
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE_ENT, 5
|
188
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE_OFFSET, 6
|
189
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_DESTROY, 7
|
190
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_DESTROY_INVOLVING, 8
|
191
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_RELEASE, 9
|
192
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_LATENCY, 10
|
193
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_SHOULD_DRAW, 11
|
194
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_FROZEN, 12
|
195
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_CHANGE_CONTROL_POINT_ATTACHMENT, 13
|
196
|
+
define :DOTA_PARTICLE_MANAGER_EVENT_UPDATE_ENTITY_POSITION, 14
|
197
|
+
end
|
198
|
+
|
199
|
+
class DOTA_OVERHEAD_ALERT < ::Protobuf::Enum
|
200
|
+
define :OVERHEAD_ALERT_GOLD, 0
|
201
|
+
define :OVERHEAD_ALERT_DENY, 1
|
202
|
+
define :OVERHEAD_ALERT_CRITICAL, 2
|
203
|
+
define :OVERHEAD_ALERT_XP, 3
|
204
|
+
define :OVERHEAD_ALERT_BONUS_SPELL_DAMAGE, 4
|
205
|
+
define :OVERHEAD_ALERT_MISS, 5
|
206
|
+
define :OVERHEAD_ALERT_DAMAGE, 6
|
207
|
+
define :OVERHEAD_ALERT_EVADE, 7
|
208
|
+
define :OVERHEAD_ALERT_BLOCK, 8
|
209
|
+
define :OVERHEAD_ALERT_BONUS_POISON_DAMAGE, 9
|
210
|
+
define :OVERHEAD_ALERT_HEAL, 10
|
211
|
+
define :OVERHEAD_ALERT_MANA_ADD, 11
|
212
|
+
define :OVERHEAD_ALERT_MANA_LOSS, 12
|
213
|
+
define :OVERHEAD_ALERT_LAST_HIT_EARLY, 13
|
214
|
+
define :OVERHEAD_ALERT_LAST_HIT_CLOSE, 14
|
215
|
+
define :OVERHEAD_ALERT_LAST_HIT_MISS, 15
|
216
|
+
define :OVERHEAD_ALERT_MAGICAL_BLOCK, 16
|
217
|
+
end
|
218
|
+
|
219
|
+
class DOTA_POSITION_CATEGORY < ::Protobuf::Enum
|
220
|
+
define :DOTA_POSITION_NONE, 0
|
221
|
+
define :DOTA_POSITION_BOTTOM_LANE, 1
|
222
|
+
define :DOTA_POSITION_MID_LANE, 2
|
223
|
+
define :DOTA_POSITION_TOP_LANE, 3
|
224
|
+
define :DOTA_POSITION_RADIANT_JUNGLE, 4
|
225
|
+
define :DOTA_POSITION_DIRE_JUNGLE, 5
|
226
|
+
define :DOTA_POSITION_RADIANT_ANCIENTS, 6
|
227
|
+
define :DOTA_POSITION_DIRE_ANCIENTS, 7
|
228
|
+
define :DOTA_POSITION_RADIANT_SECRET_SHOP, 8
|
229
|
+
define :DOTA_POSITION_DIRE_SECRET_SHOP, 9
|
230
|
+
define :DOTA_POSITION_RIVER, 10
|
231
|
+
define :DOTA_POSITION_ROSHAN_PIT, 11
|
232
|
+
define :DOTA_POSITION_RADIANT_BASE, 12
|
233
|
+
define :DOTA_POSITION_DIRE_BASE, 13
|
234
|
+
define :DOTA_POSITION_FOUNTAIN, 14
|
235
|
+
define :DOTA_POSITION_OTHER, 15
|
236
|
+
end
|
237
|
+
|
238
|
+
class DOTA_ABILITY_TARGET_TYPE < ::Protobuf::Enum
|
239
|
+
define :DOTA_ABILITY_TARGET_NONE, 0
|
240
|
+
define :DOTA_ABILITY_TARGET_SELF, 1
|
241
|
+
define :DOTA_ABILITY_TARGET_ALLY_HERO, 2
|
242
|
+
define :DOTA_ABILITY_TARGET_ALLY_CREEP, 3
|
243
|
+
define :DOTA_ABILITY_TARGET_ENEMY_HERO, 4
|
244
|
+
define :DOTA_ABILITY_TARGET_ENEMY_CREEP, 5
|
245
|
+
end
|
246
|
+
|
247
|
+
class EHeroStatType < ::Protobuf::Enum
|
248
|
+
define :K_EHeroStatType_None, 0
|
249
|
+
define :K_EHeroStatType_AxeTotalDamage, 2000
|
250
|
+
define :K_EHeroStatType_BattleHungerDamage, 2001
|
251
|
+
define :K_EHeroStatType_CounterHelixDamage, 2002
|
252
|
+
define :K_EHeroStatType_CullingBladeDamage, 2003
|
253
|
+
define :K_EHeroStatType_BerserkersCallCastCount, 2004
|
254
|
+
define :K_EHeroStatType_BerserkersCallHeroesHitAverage, 2005
|
255
|
+
define :K_EHeroStatType_BerserkersCallOtherUnitsHit, 2006
|
256
|
+
define :K_EHeroStatType_BerserkersCallHeroAttacksTaken, 2007
|
257
|
+
define :K_EHeroStatType_BerserkersCallOtherAttacksTaken, 2008
|
258
|
+
define :K_EHeroStatType_BattleHungerCastCount, 2009
|
259
|
+
define :K_EHeroStatType_BattleHungerPotentialDuration, 2010
|
260
|
+
define :K_EHeroStatType_BattleHungerAverageDuration, 2011
|
261
|
+
define :K_EHeroStatType_CounterHelixProcCount, 2012
|
262
|
+
define :K_EHeroStatType_CounterHelixHeroProcCount, 2013
|
263
|
+
define :K_EHeroStatType_CounterHelixHeroesHitAverage, 2014
|
264
|
+
define :K_EHeroStatType_CounterHelixOtherUnitsHitCount, 2015
|
265
|
+
define :K_EHeroStatType_CullingBladeCastCount, 2016
|
266
|
+
define :K_EHeroStatType_CullingBladeKillCount, 2017
|
267
|
+
define :K_EHeroStatType_CullingBladeAverageHealthCulled, 2018
|
268
|
+
define :K_EHeroStatType_CullingBladeAverageDamageAvailable, 2019
|
269
|
+
define :K_EHeroStatType_CullingBladeHeroBuffAverage, 2020
|
270
|
+
end
|
271
|
+
|
272
|
+
class EPlayerVoiceListenState < ::Protobuf::Enum
|
273
|
+
define :KPVLS_None, 0
|
274
|
+
define :KPVLS_DeniedChatBanned, 1
|
275
|
+
define :KPVLS_DeniedPartner, 2
|
276
|
+
define :KPVLS_DeniedHLTVTalkerNotSpectator, 3
|
277
|
+
define :KPVLS_DeniedHLTVNoTalkerPlayerID, 4
|
278
|
+
define :KPVLS_DeniedHLTVTalkerNotBroadcaster, 5
|
279
|
+
define :KPVLS_DeniedTeamSpectator, 6
|
280
|
+
define :KPVLS_DeniedStudent, 8
|
281
|
+
define :KPVLS_Denied, 64
|
282
|
+
define :KPVLS_AllowHLTVTalkerIsBroadcaster, 65
|
283
|
+
define :KPVLS_AllowCoBroadcaster, 66
|
284
|
+
define :KPVLS_AllowAllChat, 67
|
285
|
+
define :KPVLS_AllowStudentToCoach, 68
|
286
|
+
define :KPVLS_AllowFellowStudent, 69
|
287
|
+
define :KPVLS_AllowTalkerIsCoach, 70
|
288
|
+
define :KPVLS_AllowCoachHearTeam, 71
|
289
|
+
define :KPVLS_AllowSameTeam, 72
|
290
|
+
define :KPVLS_AllowShowcase, 73
|
291
|
+
end
|
292
|
+
|
293
|
+
class EProjectionEvent < ::Protobuf::Enum
|
294
|
+
define :EPE_FirstBlood, 0
|
295
|
+
end
|
296
|
+
|
297
|
+
|
298
|
+
##
|
299
|
+
# Message Classes
|
300
|
+
#
|
301
|
+
class CDOTAUserMsg_AIDebugLine < ::Protobuf::Message; end
|
302
|
+
class CDOTAUserMsg_Ping < ::Protobuf::Message; end
|
303
|
+
class CDOTAUserMsg_SwapVerify < ::Protobuf::Message; end
|
304
|
+
class CDOTAUserMsg_ChatEvent < ::Protobuf::Message; end
|
305
|
+
class CDOTAUserMsg_CombatLogShowDeath < ::Protobuf::Message; end
|
306
|
+
class CDOTAUserMsg_BotChat < ::Protobuf::Message; end
|
307
|
+
class CDOTAUserMsg_CombatHeroPositions < ::Protobuf::Message; end
|
308
|
+
class CDOTAUserMsg_MiniKillCamInfo < ::Protobuf::Message
|
309
|
+
class Attacker < ::Protobuf::Message
|
310
|
+
class Ability < ::Protobuf::Message; end
|
311
|
+
|
312
|
+
end
|
313
|
+
|
314
|
+
|
315
|
+
end
|
316
|
+
|
317
|
+
class CDOTAUserMsg_GlobalLightColor < ::Protobuf::Message; end
|
318
|
+
class CDOTAUserMsg_GlobalLightDirection < ::Protobuf::Message; end
|
319
|
+
class CDOTAUserMsg_LocationPing < ::Protobuf::Message; end
|
320
|
+
class CDOTAUserMsg_ItemAlert < ::Protobuf::Message; end
|
321
|
+
class CDOTAUserMsg_EnemyItemAlert < ::Protobuf::Message; end
|
322
|
+
class CDOTAUserMsg_ModifierAlert < ::Protobuf::Message; end
|
323
|
+
class CDOTAUserMsg_HPManaAlert < ::Protobuf::Message; end
|
324
|
+
class CDOTAUserMsg_GlyphAlert < ::Protobuf::Message; end
|
325
|
+
class CDOTAUserMsg_WillPurchaseAlert < ::Protobuf::Message; end
|
326
|
+
class CDOTAUserMsg_BuyBackStateAlert < ::Protobuf::Message; end
|
327
|
+
class CDOTAUserMsg_QuickBuyAlert < ::Protobuf::Message; end
|
328
|
+
class CDOTAUserMsg_CourierKilledAlert < ::Protobuf::Message; end
|
329
|
+
class CDOTAUserMsg_MinimapEvent < ::Protobuf::Message; end
|
330
|
+
class CDOTAUserMsg_MapLine < ::Protobuf::Message; end
|
331
|
+
class CDOTAUserMsg_MinimapDebugPoint < ::Protobuf::Message; end
|
332
|
+
class CDOTAUserMsg_CreateLinearProjectile < ::Protobuf::Message; end
|
333
|
+
class CDOTAUserMsg_DestroyLinearProjectile < ::Protobuf::Message; end
|
334
|
+
class CDOTAUserMsg_DodgeTrackingProjectiles < ::Protobuf::Message; end
|
335
|
+
class CDOTAUserMsg_SpectatorPlayerClick < ::Protobuf::Message; end
|
336
|
+
class CDOTAUserMsg_SpectatorPlayerUnitOrders < ::Protobuf::Message; end
|
337
|
+
class CDOTAUserMsg_NevermoreRequiem < ::Protobuf::Message; end
|
338
|
+
class CDOTAUserMsg_InvalidCommand < ::Protobuf::Message; end
|
339
|
+
class CDOTAUserMsg_HudError < ::Protobuf::Message; end
|
340
|
+
class CDOTAUserMsg_SharedCooldown < ::Protobuf::Message; end
|
341
|
+
class CDOTAUserMsg_SetNextAutobuyItem < ::Protobuf::Message; end
|
342
|
+
class CDOTAUserMsg_HalloweenDrops < ::Protobuf::Message; end
|
343
|
+
class CDOTAUserMsg_PredictionResult < ::Protobuf::Message
|
344
|
+
class Prediction < ::Protobuf::Message
|
345
|
+
class EResult < ::Protobuf::Enum
|
346
|
+
define :K_eResult_ItemGranted, 1
|
347
|
+
define :K_eResult_Destroyed, 2
|
348
|
+
end
|
349
|
+
|
350
|
+
end
|
351
|
+
|
352
|
+
|
353
|
+
end
|
354
|
+
|
355
|
+
class CDOTAResponseQuerySerialized < ::Protobuf::Message
|
356
|
+
class Fact < ::Protobuf::Message
|
357
|
+
class ValueType < ::Protobuf::Enum
|
358
|
+
define :NUMERIC, 1
|
359
|
+
define :STRING, 2
|
360
|
+
end
|
361
|
+
|
362
|
+
end
|
363
|
+
|
364
|
+
|
365
|
+
end
|
366
|
+
|
367
|
+
class CDOTASpeechMatchOnClient < ::Protobuf::Message; end
|
368
|
+
class CDOTAUserMsg_UnitEvent < ::Protobuf::Message
|
369
|
+
class Speech < ::Protobuf::Message; end
|
370
|
+
class SpeechMute < ::Protobuf::Message; end
|
371
|
+
class AddGesture < ::Protobuf::Message; end
|
372
|
+
class RemoveGesture < ::Protobuf::Message; end
|
373
|
+
class BloodImpact < ::Protobuf::Message; end
|
374
|
+
class FadeGesture < ::Protobuf::Message; end
|
375
|
+
|
376
|
+
end
|
377
|
+
|
378
|
+
class CDOTAUserMsg_ItemPurchased < ::Protobuf::Message; end
|
379
|
+
class CDOTAUserMsg_ItemFound < ::Protobuf::Message; end
|
380
|
+
class CDOTAUserMsg_ParticleManager < ::Protobuf::Message
|
381
|
+
class ReleaseParticleIndex < ::Protobuf::Message; end
|
382
|
+
class CreateParticle < ::Protobuf::Message; end
|
383
|
+
class DestroyParticle < ::Protobuf::Message; end
|
384
|
+
class DestroyParticleInvolving < ::Protobuf::Message; end
|
385
|
+
class UpdateParticle < ::Protobuf::Message; end
|
386
|
+
class UpdateParticleFwd < ::Protobuf::Message; end
|
387
|
+
class UpdateParticleOrient < ::Protobuf::Message; end
|
388
|
+
class UpdateParticleFallback < ::Protobuf::Message; end
|
389
|
+
class UpdateParticleOffset < ::Protobuf::Message; end
|
390
|
+
class UpdateParticleEnt < ::Protobuf::Message; end
|
391
|
+
class UpdateParticleSetFrozen < ::Protobuf::Message; end
|
392
|
+
class UpdateParticleShouldDraw < ::Protobuf::Message; end
|
393
|
+
class ChangeControlPointAttachment < ::Protobuf::Message; end
|
394
|
+
class UpdateEntityPosition < ::Protobuf::Message; end
|
395
|
+
|
396
|
+
end
|
397
|
+
|
398
|
+
class CDOTAUserMsg_OverheadEvent < ::Protobuf::Message; end
|
399
|
+
class CDOTAUserMsg_TutorialTipInfo < ::Protobuf::Message; end
|
400
|
+
class CDOTAUserMsg_TutorialFinish < ::Protobuf::Message; end
|
401
|
+
class CDOTAUserMsg_TutorialMinimapPosition < ::Protobuf::Message; end
|
402
|
+
class CDOTAUserMsg_SendGenericToolTip < ::Protobuf::Message; end
|
403
|
+
class CDOTAUserMsg_WorldLine < ::Protobuf::Message; end
|
404
|
+
class CDOTAUserMsg_ChatWheel < ::Protobuf::Message; end
|
405
|
+
class CDOTAUserMsg_ReceivedXmasGift < ::Protobuf::Message; end
|
406
|
+
class CDOTAUserMsg_ShowSurvey < ::Protobuf::Message; end
|
407
|
+
class CDOTAUserMsg_UpdateSharedContent < ::Protobuf::Message; end
|
408
|
+
class CDOTAUserMsg_TutorialRequestExp < ::Protobuf::Message; end
|
409
|
+
class CDOTAUserMsg_TutorialFade < ::Protobuf::Message; end
|
410
|
+
class CDOTAUserMsg_TutorialPingMinimap < ::Protobuf::Message; end
|
411
|
+
class CDOTAUserMsg_GamerulesStateChanged < ::Protobuf::Message; end
|
412
|
+
class CDOTAUserMsg_AddQuestLogEntry < ::Protobuf::Message; end
|
413
|
+
class CDOTAUserMsg_SendStatPopup < ::Protobuf::Message; end
|
414
|
+
class CDOTAUserMsg_SendRoshanPopup < ::Protobuf::Message; end
|
415
|
+
class CDOTAUserMsg_SendFinalGold < ::Protobuf::Message; end
|
416
|
+
class CDOTAUserMsg_CustomMsg < ::Protobuf::Message; end
|
417
|
+
class CDOTAUserMsg_CoachHUDPing < ::Protobuf::Message; end
|
418
|
+
class CDOTAUserMsg_ClientLoadGridNav < ::Protobuf::Message; end
|
419
|
+
class CDOTAUserMsg_TE_Projectile < ::Protobuf::Message; end
|
420
|
+
class CDOTAUserMsg_TE_ProjectileLoc < ::Protobuf::Message; end
|
421
|
+
class CDOTAUserMsg_TE_DotaBloodImpact < ::Protobuf::Message; end
|
422
|
+
class CDOTAUserMsg_AbilityPing < ::Protobuf::Message; end
|
423
|
+
class CDOTAUserMsg_TE_UnitAnimation < ::Protobuf::Message; end
|
424
|
+
class CDOTAUserMsg_TE_UnitAnimationEnd < ::Protobuf::Message; end
|
425
|
+
class CDOTAUserMsg_ShowGenericPopup < ::Protobuf::Message; end
|
426
|
+
class CDOTAUserMsg_VoteStart < ::Protobuf::Message; end
|
427
|
+
class CDOTAUserMsg_VoteUpdate < ::Protobuf::Message; end
|
428
|
+
class CDOTAUserMsg_VoteEnd < ::Protobuf::Message; end
|
429
|
+
class CDOTAUserMsg_BoosterStatePlayer < ::Protobuf::Message; end
|
430
|
+
class CDOTAUserMsg_BoosterState < ::Protobuf::Message; end
|
431
|
+
class CDOTAUserMsg_PlayerMMR < ::Protobuf::Message; end
|
432
|
+
class CDOTAUserMsg_AbilitySteal < ::Protobuf::Message; end
|
433
|
+
class CDOTAUserMsg_StatsHeroLookup < ::Protobuf::Message; end
|
434
|
+
class CDOTAUserMsg_StatsHeroPositionInfo < ::Protobuf::Message
|
435
|
+
class PositionPair < ::Protobuf::Message; end
|
436
|
+
|
437
|
+
end
|
438
|
+
|
439
|
+
class CDOTAUserMsg_StatsHeroMinuteDetails < ::Protobuf::Message; end
|
440
|
+
class CDOTAUserMsg_StatsTeamMinuteDetails < ::Protobuf::Message
|
441
|
+
class LocationPerformance < ::Protobuf::Message; end
|
442
|
+
|
443
|
+
end
|
444
|
+
|
445
|
+
class CDOTAUserMsg_StatsPlayerKillShare < ::Protobuf::Message; end
|
446
|
+
class CDOTAUserMsg_StatsKillDetails < ::Protobuf::Message; end
|
447
|
+
class CDOTAUserMsg_StatsMatchDetails < ::Protobuf::Message
|
448
|
+
class CDOTAUserMsg_StatsFightTeamDetails < ::Protobuf::Message; end
|
449
|
+
class CDOTAUserMsg_StatsFightDetails < ::Protobuf::Message; end
|
450
|
+
|
451
|
+
end
|
452
|
+
|
453
|
+
class CDOTAUserMsg_MiniTaunt < ::Protobuf::Message; end
|
454
|
+
class CDOTAUserMsg_SpeechBubble < ::Protobuf::Message; end
|
455
|
+
class CDOTAUserMsg_CustomHeaderMessage < ::Protobuf::Message; end
|
456
|
+
class CMsgHeroAbilityStat < ::Protobuf::Message; end
|
457
|
+
class CMsgCombatAnalyzerPlayerStat < ::Protobuf::Message; end
|
458
|
+
class CMsgCombatAnalyzerStats < ::Protobuf::Message; end
|
459
|
+
class CDOTAUserMsg_BeastChat < ::Protobuf::Message; end
|
460
|
+
class CDOTAUserMsg_CustomHudElement_Create < ::Protobuf::Message; end
|
461
|
+
class CDOTAUserMsg_CustomHudElement_Modify < ::Protobuf::Message; end
|
462
|
+
class CDOTAUserMsg_CustomHudElement_Destroy < ::Protobuf::Message; end
|
463
|
+
class CDOTAUserMsg_CompendiumStatePlayer < ::Protobuf::Message; end
|
464
|
+
class CDOTAUserMsg_CompendiumState < ::Protobuf::Message; end
|
465
|
+
class CDOTAUserMsg_ProjectionAbility < ::Protobuf::Message; end
|
466
|
+
class CDOTAUserMsg_ProjectionEvent < ::Protobuf::Message; end
|
467
|
+
class CDOTAUserMsg_XPAlert < ::Protobuf::Message; end
|
468
|
+
class CDOTAUserMsg_UpdateQuestProgress < ::Protobuf::Message; end
|
469
|
+
class CMsgDOTACombatLogEntry < ::Protobuf::Message; end
|
470
|
+
|
471
|
+
|
472
|
+
##
|
473
|
+
# Message Fields
|
474
|
+
#
|
475
|
+
class CDOTAUserMsg_AIDebugLine
|
476
|
+
optional :string, :message, 1
|
477
|
+
optional :uint32, :ping, 2
|
478
|
+
optional :uint32, :loss, 3
|
479
|
+
end
|
480
|
+
|
481
|
+
class CDOTAUserMsg_Ping
|
482
|
+
optional :string, :message, 1
|
483
|
+
end
|
484
|
+
|
485
|
+
class CDOTAUserMsg_SwapVerify
|
486
|
+
optional :uint32, :player_id, 1
|
487
|
+
end
|
488
|
+
|
489
|
+
class CDOTAUserMsg_ChatEvent
|
490
|
+
optional ::Effigy::Wire::DOTA_CHAT_MESSAGE, :type, 1, :default => ::Effigy::Wire::DOTA_CHAT_MESSAGE::CHAT_MESSAGE_INVALID
|
491
|
+
optional :uint32, :value, 2
|
492
|
+
optional :sint32, :playerid_1, 3, :default => -1
|
493
|
+
optional :sint32, :playerid_2, 4, :default => -1
|
494
|
+
optional :sint32, :playerid_3, 5, :default => -1
|
495
|
+
optional :sint32, :playerid_4, 6, :default => -1
|
496
|
+
optional :sint32, :playerid_5, 7, :default => -1
|
497
|
+
optional :sint32, :playerid_6, 8, :default => -1
|
498
|
+
optional :uint32, :value2, 9
|
499
|
+
optional :uint32, :value3, 10
|
500
|
+
end
|
501
|
+
|
502
|
+
class CDOTAUserMsg_BotChat
|
503
|
+
optional :uint32, :player_id, 1
|
504
|
+
optional :string, :format, 2
|
505
|
+
optional :string, :message, 3
|
506
|
+
optional :string, :target, 4
|
507
|
+
end
|
508
|
+
|
509
|
+
class CDOTAUserMsg_CombatHeroPositions
|
510
|
+
optional :uint32, :index, 1
|
511
|
+
optional :int32, :time, 2
|
512
|
+
optional ::Effigy::Wire::CMsgVector2D, :world_pos, 3
|
513
|
+
optional :int32, :health, 4
|
514
|
+
end
|
515
|
+
|
516
|
+
class CDOTAUserMsg_MiniKillCamInfo
|
517
|
+
class Attacker
|
518
|
+
class Ability
|
519
|
+
optional :uint32, :ability, 1
|
520
|
+
optional :int32, :damage, 2
|
521
|
+
end
|
522
|
+
|
523
|
+
optional :uint32, :attacker, 1
|
524
|
+
optional :int32, :total_damage, 2
|
525
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_MiniKillCamInfo::Attacker::Ability, :abilities, 3
|
526
|
+
end
|
527
|
+
|
528
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_MiniKillCamInfo::Attacker, :attackers, 1
|
529
|
+
end
|
530
|
+
|
531
|
+
class CDOTAUserMsg_GlobalLightColor
|
532
|
+
optional :uint32, :color, 1
|
533
|
+
optional :float, :duration, 2
|
534
|
+
end
|
535
|
+
|
536
|
+
class CDOTAUserMsg_GlobalLightDirection
|
537
|
+
optional ::Effigy::Wire::CMsgVector, :direction, 1
|
538
|
+
optional :float, :duration, 2
|
539
|
+
end
|
540
|
+
|
541
|
+
class CDOTAUserMsg_LocationPing
|
542
|
+
optional :uint32, :player_id, 1
|
543
|
+
optional ::Effigy::Wire::CDOTAMsg_LocationPing, :location_ping, 2
|
544
|
+
end
|
545
|
+
|
546
|
+
class CDOTAUserMsg_ItemAlert
|
547
|
+
optional :uint32, :player_id, 1
|
548
|
+
optional ::Effigy::Wire::CDOTAMsg_ItemAlert, :item_alert, 2
|
549
|
+
end
|
550
|
+
|
551
|
+
class CDOTAUserMsg_EnemyItemAlert
|
552
|
+
optional :uint32, :player_id, 1
|
553
|
+
optional :uint32, :target_player_id, 2
|
554
|
+
optional :int32, :itemid, 3
|
555
|
+
optional :uint32, :rune_type, 4
|
556
|
+
end
|
557
|
+
|
558
|
+
class CDOTAUserMsg_ModifierAlert
|
559
|
+
optional :uint32, :player_id, 1
|
560
|
+
optional :string, :class_name, 2
|
561
|
+
optional :uint32, :stack_count, 3
|
562
|
+
optional :bool, :is_debuff, 4
|
563
|
+
optional :uint32, :target_entindex, 5
|
564
|
+
end
|
565
|
+
|
566
|
+
class CDOTAUserMsg_HPManaAlert
|
567
|
+
optional :uint32, :player_id, 1
|
568
|
+
optional :uint32, :target_entindex, 2
|
569
|
+
end
|
570
|
+
|
571
|
+
class CDOTAUserMsg_GlyphAlert
|
572
|
+
optional :uint32, :player_id, 1
|
573
|
+
optional :bool, :negative, 2
|
574
|
+
end
|
575
|
+
|
576
|
+
class CDOTAUserMsg_WillPurchaseAlert
|
577
|
+
optional :int32, :itemid, 1
|
578
|
+
optional :int32, :player_id, 2
|
579
|
+
optional :uint32, :gold_remaining, 3
|
580
|
+
end
|
581
|
+
|
582
|
+
class CDOTAUserMsg_BuyBackStateAlert
|
583
|
+
optional :int32, :player_id, 1
|
584
|
+
end
|
585
|
+
|
586
|
+
class CDOTAUserMsg_QuickBuyAlert
|
587
|
+
optional :int32, :player_id, 1
|
588
|
+
optional :int32, :itemid, 2
|
589
|
+
optional :int32, :gold_required, 3
|
590
|
+
end
|
591
|
+
|
592
|
+
class CDOTAUserMsg_CourierKilledAlert
|
593
|
+
optional :uint32, :team, 1
|
594
|
+
optional :uint32, :gold_value, 2
|
595
|
+
optional :int32, :entity_handle, 3
|
596
|
+
optional :int32, :timestamp, 4
|
597
|
+
end
|
598
|
+
|
599
|
+
class CDOTAUserMsg_MinimapEvent
|
600
|
+
optional :int32, :event_type, 1
|
601
|
+
optional :int32, :entity_handle, 2
|
602
|
+
optional :int32, :x, 3
|
603
|
+
optional :int32, :y, 4
|
604
|
+
optional :int32, :duration, 5
|
605
|
+
end
|
606
|
+
|
607
|
+
class CDOTAUserMsg_MapLine
|
608
|
+
optional :int32, :player_id, 1
|
609
|
+
optional ::Effigy::Wire::CDOTAMsg_MapLine, :mapline, 2
|
610
|
+
end
|
611
|
+
|
612
|
+
class CDOTAUserMsg_MinimapDebugPoint
|
613
|
+
optional ::Effigy::Wire::CMsgVector, :location, 1
|
614
|
+
optional :uint32, :color, 2
|
615
|
+
optional :int32, :size, 3
|
616
|
+
optional :float, :duration, 4
|
617
|
+
optional :int32, :index, 5
|
618
|
+
end
|
619
|
+
|
620
|
+
class CDOTAUserMsg_CreateLinearProjectile
|
621
|
+
optional ::Effigy::Wire::CMsgVector, :origin, 1
|
622
|
+
optional ::Effigy::Wire::CMsgVector2D, :velocity, 2
|
623
|
+
optional :int32, :latency, 3
|
624
|
+
optional :int32, :entindex, 4
|
625
|
+
optional :uint64, :particle_index, 5
|
626
|
+
optional :int32, :handle, 6
|
627
|
+
optional ::Effigy::Wire::CMsgVector2D, :acceleration, 7
|
628
|
+
optional :float, :max_speed, 8
|
629
|
+
end
|
630
|
+
|
631
|
+
class CDOTAUserMsg_DestroyLinearProjectile
|
632
|
+
optional :int32, :handle, 1
|
633
|
+
end
|
634
|
+
|
635
|
+
class CDOTAUserMsg_DodgeTrackingProjectiles
|
636
|
+
required :int32, :entindex, 1
|
637
|
+
optional :bool, :attacks_only, 2
|
638
|
+
end
|
639
|
+
|
640
|
+
class CDOTAUserMsg_SpectatorPlayerClick
|
641
|
+
required :int32, :entindex, 1
|
642
|
+
optional :int32, :order_type, 2
|
643
|
+
optional :int32, :target_index, 3
|
644
|
+
end
|
645
|
+
|
646
|
+
class CDOTAUserMsg_SpectatorPlayerUnitOrders
|
647
|
+
optional :int32, :entindex, 1
|
648
|
+
optional :int32, :order_type, 2
|
649
|
+
repeated :int32, :units, 3
|
650
|
+
optional :int32, :target_index, 4
|
651
|
+
optional :int32, :ability_index, 5
|
652
|
+
optional ::Effigy::Wire::CMsgVector, :position, 6
|
653
|
+
optional :bool, :queue, 7
|
654
|
+
optional :int32, :sequence_number, 8
|
655
|
+
end
|
656
|
+
|
657
|
+
class CDOTAUserMsg_NevermoreRequiem
|
658
|
+
optional :int32, :entity_handle, 1
|
659
|
+
optional :int32, :lines, 2
|
660
|
+
optional ::Effigy::Wire::CMsgVector, :origin, 3
|
661
|
+
optional :bool, :reverse, 4
|
662
|
+
end
|
663
|
+
|
664
|
+
class CDOTAUserMsg_InvalidCommand
|
665
|
+
optional :string, :message, 1
|
666
|
+
end
|
667
|
+
|
668
|
+
class CDOTAUserMsg_HudError
|
669
|
+
optional :int32, :order_id, 1
|
670
|
+
end
|
671
|
+
|
672
|
+
class CDOTAUserMsg_SharedCooldown
|
673
|
+
optional :int32, :entindex, 1
|
674
|
+
optional :string, :name, 2
|
675
|
+
optional :float, :cooldown, 3
|
676
|
+
optional :int32, :name_index, 4
|
677
|
+
end
|
678
|
+
|
679
|
+
class CDOTAUserMsg_SetNextAutobuyItem
|
680
|
+
optional :string, :name, 1
|
681
|
+
end
|
682
|
+
|
683
|
+
class CDOTAUserMsg_HalloweenDrops
|
684
|
+
repeated :uint32, :item_defs, 1
|
685
|
+
repeated :uint32, :player_ids, 2
|
686
|
+
optional :uint32, :prize_list, 3
|
687
|
+
end
|
688
|
+
|
689
|
+
class CDOTAUserMsg_PredictionResult
|
690
|
+
class Prediction
|
691
|
+
optional :uint32, :item_def, 1
|
692
|
+
optional :uint32, :num_correct, 2
|
693
|
+
optional :uint32, :num_fails, 3
|
694
|
+
optional ::Effigy::Wire::CDOTAUserMsg_PredictionResult::Prediction::EResult, :result, 4, :default => ::Effigy::Wire::CDOTAUserMsg_PredictionResult::Prediction::EResult::K_eResult_ItemGranted
|
695
|
+
repeated :uint32, :granted_item_defs, 6
|
696
|
+
end
|
697
|
+
|
698
|
+
optional :uint32, :account_id, 1
|
699
|
+
optional :uint64, :match_id, 2
|
700
|
+
optional :bool, :correct, 3
|
701
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_PredictionResult::Prediction, :predictions, 4
|
702
|
+
end
|
703
|
+
|
704
|
+
class CDOTAResponseQuerySerialized
|
705
|
+
class Fact
|
706
|
+
required :int32, :key, 1
|
707
|
+
required ::Effigy::Wire::CDOTAResponseQuerySerialized::Fact::ValueType, :valtype, 2, :default => ::Effigy::Wire::CDOTAResponseQuerySerialized::Fact::ValueType::NUMERIC
|
708
|
+
optional :float, :val_numeric, 3
|
709
|
+
optional :string, :val_string, 4
|
710
|
+
end
|
711
|
+
|
712
|
+
repeated ::Effigy::Wire::CDOTAResponseQuerySerialized::Fact, :facts, 1
|
713
|
+
end
|
714
|
+
|
715
|
+
class CDOTASpeechMatchOnClient
|
716
|
+
optional :int32, :concept, 1
|
717
|
+
optional :int32, :recipient_type, 2
|
718
|
+
optional ::Effigy::Wire::CDOTAResponseQuerySerialized, :responsequery, 3
|
719
|
+
optional :sfixed32, :randomseed, 4, :default => 0
|
720
|
+
end
|
721
|
+
|
722
|
+
class CDOTAUserMsg_UnitEvent
|
723
|
+
class Speech
|
724
|
+
optional :int32, :concept, 1
|
725
|
+
optional :string, :response, 2
|
726
|
+
optional :int32, :recipient_type, 3
|
727
|
+
optional :int32, :level, 4
|
728
|
+
optional :bool, :muteable, 5, :default => false
|
729
|
+
end
|
730
|
+
|
731
|
+
class SpeechMute
|
732
|
+
optional :float, :delay, 1, :default => 0.5
|
733
|
+
end
|
734
|
+
|
735
|
+
class AddGesture
|
736
|
+
optional :int32, :activity, 1
|
737
|
+
optional :int32, :slot, 2
|
738
|
+
optional :float, :fade_in, 3, :default => 0
|
739
|
+
optional :float, :fade_out, 4, :default => 0.1
|
740
|
+
end
|
741
|
+
|
742
|
+
class RemoveGesture
|
743
|
+
optional :int32, :activity, 1
|
744
|
+
end
|
745
|
+
|
746
|
+
class BloodImpact
|
747
|
+
optional :int32, :scale, 1
|
748
|
+
optional :int32, :x_normal, 2
|
749
|
+
optional :int32, :y_normal, 3
|
750
|
+
end
|
751
|
+
|
752
|
+
class FadeGesture
|
753
|
+
optional :int32, :activity, 1
|
754
|
+
end
|
755
|
+
|
756
|
+
required ::Effigy::Wire::EDotaEntityMessages, :msg_type, 1, :default => ::Effigy::Wire::EDotaEntityMessages::DOTA_UNIT_SPEECH
|
757
|
+
required :int32, :entity_index, 2
|
758
|
+
optional ::Effigy::Wire::CDOTAUserMsg_UnitEvent::Speech, :speech, 3
|
759
|
+
optional ::Effigy::Wire::CDOTAUserMsg_UnitEvent::SpeechMute, :speech_mute, 4
|
760
|
+
optional ::Effigy::Wire::CDOTAUserMsg_UnitEvent::AddGesture, :add_gesture, 5
|
761
|
+
optional ::Effigy::Wire::CDOTAUserMsg_UnitEvent::RemoveGesture, :remove_gesture, 6
|
762
|
+
optional ::Effigy::Wire::CDOTAUserMsg_UnitEvent::BloodImpact, :blood_impact, 7
|
763
|
+
optional ::Effigy::Wire::CDOTAUserMsg_UnitEvent::FadeGesture, :fade_gesture, 8
|
764
|
+
optional ::Effigy::Wire::CDOTASpeechMatchOnClient, :speech_match_on_client, 9
|
765
|
+
end
|
766
|
+
|
767
|
+
class CDOTAUserMsg_ItemPurchased
|
768
|
+
optional :int32, :item_index, 1
|
769
|
+
end
|
770
|
+
|
771
|
+
class CDOTAUserMsg_ItemFound
|
772
|
+
optional :int32, :player, 1
|
773
|
+
optional :int32, :quality, 2
|
774
|
+
optional :int32, :rarity, 3
|
775
|
+
optional :int32, :method, 4
|
776
|
+
optional :int32, :itemdef, 5
|
777
|
+
end
|
778
|
+
|
779
|
+
class CDOTAUserMsg_ParticleManager
|
780
|
+
class CreateParticle
|
781
|
+
optional :fixed64, :particle_name_index, 1
|
782
|
+
optional :int32, :attach_type, 2
|
783
|
+
optional :int32, :entity_handle, 3
|
784
|
+
optional :int32, :entity_handle_for_modifiers, 4
|
785
|
+
end
|
786
|
+
|
787
|
+
class DestroyParticle
|
788
|
+
optional :bool, :destroy_immediately, 1
|
789
|
+
end
|
790
|
+
|
791
|
+
class DestroyParticleInvolving
|
792
|
+
optional :bool, :destroy_immediately, 1
|
793
|
+
optional :int32, :entity_handle, 3
|
794
|
+
end
|
795
|
+
|
796
|
+
class UpdateParticle
|
797
|
+
optional :int32, :control_point, 1
|
798
|
+
optional ::Effigy::Wire::CMsgVector, :position, 2
|
799
|
+
end
|
800
|
+
|
801
|
+
class UpdateParticleFwd
|
802
|
+
optional :int32, :control_point, 1
|
803
|
+
optional ::Effigy::Wire::CMsgVector, :forward, 2
|
804
|
+
end
|
805
|
+
|
806
|
+
class UpdateParticleOrient
|
807
|
+
optional :int32, :control_point, 1
|
808
|
+
optional ::Effigy::Wire::CMsgVector, :forward, 2
|
809
|
+
optional ::Effigy::Wire::CMsgVector, :right, 3
|
810
|
+
optional ::Effigy::Wire::CMsgVector, :up, 4
|
811
|
+
end
|
812
|
+
|
813
|
+
class UpdateParticleFallback
|
814
|
+
optional :int32, :control_point, 1
|
815
|
+
optional ::Effigy::Wire::CMsgVector, :position, 2
|
816
|
+
end
|
817
|
+
|
818
|
+
class UpdateParticleOffset
|
819
|
+
optional :int32, :control_point, 1
|
820
|
+
optional ::Effigy::Wire::CMsgVector, :origin_offset, 2
|
821
|
+
end
|
822
|
+
|
823
|
+
class UpdateParticleEnt
|
824
|
+
optional :int32, :control_point, 1
|
825
|
+
optional :int32, :entity_handle, 2
|
826
|
+
optional :int32, :attach_type, 3
|
827
|
+
optional :int32, :attachment, 4
|
828
|
+
optional ::Effigy::Wire::CMsgVector, :fallback_position, 5
|
829
|
+
optional :bool, :include_wearables, 6
|
830
|
+
end
|
831
|
+
|
832
|
+
class UpdateParticleSetFrozen
|
833
|
+
optional :bool, :set_frozen, 1
|
834
|
+
end
|
835
|
+
|
836
|
+
class UpdateParticleShouldDraw
|
837
|
+
optional :bool, :should_draw, 1
|
838
|
+
end
|
839
|
+
|
840
|
+
class ChangeControlPointAttachment
|
841
|
+
optional :int32, :attachment_old, 1
|
842
|
+
optional :int32, :attachment_new, 2
|
843
|
+
optional :int32, :entity_handle, 3
|
844
|
+
end
|
845
|
+
|
846
|
+
class UpdateEntityPosition
|
847
|
+
optional :int32, :entity_handle, 1
|
848
|
+
optional ::Effigy::Wire::CMsgVector, :position, 2
|
849
|
+
end
|
850
|
+
|
851
|
+
required ::Effigy::Wire::DOTA_PARTICLE_MESSAGE, :type, 1, :default => ::Effigy::Wire::DOTA_PARTICLE_MESSAGE::DOTA_PARTICLE_MANAGER_EVENT_CREATE
|
852
|
+
required :uint32, :index, 2
|
853
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::ReleaseParticleIndex, :release_particle_index, 3
|
854
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::CreateParticle, :create_particle, 4
|
855
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::DestroyParticle, :destroy_particle, 5
|
856
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::DestroyParticleInvolving, :destroy_particle_involving, 6
|
857
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticle, :update_particle, 7
|
858
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleFwd, :update_particle_fwd, 8
|
859
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleOrient, :update_particle_orient, 9
|
860
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleFallback, :update_particle_fallback, 10
|
861
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleOffset, :update_particle_offset, 11
|
862
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleEnt, :update_particle_ent, 12
|
863
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleShouldDraw, :update_particle_should_draw, 14
|
864
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateParticleSetFrozen, :update_particle_set_frozen, 15
|
865
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::ChangeControlPointAttachment, :change_control_point_attachment, 16
|
866
|
+
optional ::Effigy::Wire::CDOTAUserMsg_ParticleManager::UpdateEntityPosition, :update_entity_position, 17
|
867
|
+
end
|
868
|
+
|
869
|
+
class CDOTAUserMsg_OverheadEvent
|
870
|
+
required ::Effigy::Wire::DOTA_OVERHEAD_ALERT, :message_type, 1, :default => ::Effigy::Wire::DOTA_OVERHEAD_ALERT::OVERHEAD_ALERT_GOLD
|
871
|
+
optional :int32, :value, 2
|
872
|
+
optional :int32, :target_player_entindex, 3
|
873
|
+
optional :int32, :target_entindex, 4
|
874
|
+
optional :int32, :source_player_entindex, 5
|
875
|
+
end
|
876
|
+
|
877
|
+
class CDOTAUserMsg_TutorialTipInfo
|
878
|
+
optional :string, :name, 1
|
879
|
+
optional :int32, :progress, 2
|
880
|
+
end
|
881
|
+
|
882
|
+
class CDOTAUserMsg_TutorialFinish
|
883
|
+
optional :string, :heading, 1
|
884
|
+
optional :string, :emblem, 2
|
885
|
+
optional :string, :body, 3
|
886
|
+
optional :bool, :success, 4
|
887
|
+
end
|
888
|
+
|
889
|
+
class CDOTAUserMsg_SendGenericToolTip
|
890
|
+
optional :string, :title, 1
|
891
|
+
optional :string, :text, 2
|
892
|
+
optional :int32, :entindex, 3
|
893
|
+
optional :bool, :close, 4
|
894
|
+
end
|
895
|
+
|
896
|
+
class CDOTAUserMsg_WorldLine
|
897
|
+
optional :int32, :player_id, 1
|
898
|
+
optional ::Effigy::Wire::CDOTAMsg_WorldLine, :worldline, 2
|
899
|
+
end
|
900
|
+
|
901
|
+
class CDOTAUserMsg_ChatWheel
|
902
|
+
optional ::Effigy::Wire::EDOTAChatWheelMessage, :chat_message, 1, :default => ::Effigy::Wire::EDOTAChatWheelMessage::K_EDOTA_CW_Ok
|
903
|
+
optional :uint32, :player_id, 2
|
904
|
+
optional :uint32, :account_id, 3
|
905
|
+
optional :uint32, :param_hero_id, 4
|
906
|
+
end
|
907
|
+
|
908
|
+
class CDOTAUserMsg_ReceivedXmasGift
|
909
|
+
optional :int32, :player_id, 1
|
910
|
+
optional :string, :item_name, 2
|
911
|
+
optional :int32, :inventory_slot, 3
|
912
|
+
end
|
913
|
+
|
914
|
+
class CDOTAUserMsg_ShowSurvey
|
915
|
+
optional :int32, :survey_id, 1
|
916
|
+
optional :uint32, :match_id, 2
|
917
|
+
optional :string, :response_style, 3
|
918
|
+
optional :uint32, :teammate_hero_id, 4
|
919
|
+
optional :string, :teammate_name, 5
|
920
|
+
optional :uint32, :teammate_account_id, 6
|
921
|
+
end
|
922
|
+
|
923
|
+
class CDOTAUserMsg_UpdateSharedContent
|
924
|
+
optional :int32, :slot_type, 1
|
925
|
+
end
|
926
|
+
|
927
|
+
class CDOTAUserMsg_TutorialFade
|
928
|
+
optional :int32, :tgt_alpha, 1
|
929
|
+
end
|
930
|
+
|
931
|
+
class CDOTAUserMsg_TutorialPingMinimap
|
932
|
+
optional :uint32, :player_id, 1
|
933
|
+
optional :float, :pos_x, 2
|
934
|
+
optional :float, :pos_y, 3
|
935
|
+
optional :float, :pos_z, 4
|
936
|
+
optional :int32, :entity_index, 5
|
937
|
+
end
|
938
|
+
|
939
|
+
class CDOTAUserMsg_GamerulesStateChanged
|
940
|
+
optional :uint32, :state, 1
|
941
|
+
end
|
942
|
+
|
943
|
+
class CDOTAUserMsg_AddQuestLogEntry
|
944
|
+
optional :string, :npc_name, 1
|
945
|
+
optional :string, :npc_dialog, 2
|
946
|
+
end
|
947
|
+
|
948
|
+
class CDOTAUserMsg_SendStatPopup
|
949
|
+
optional :int32, :player_id, 1
|
950
|
+
optional ::Effigy::Wire::CDOTAMsg_SendStatPopup, :statpopup, 2
|
951
|
+
end
|
952
|
+
|
953
|
+
class CDOTAUserMsg_SendRoshanPopup
|
954
|
+
optional :bool, :reclaimed, 1
|
955
|
+
optional :int32, :gametime, 2
|
956
|
+
end
|
957
|
+
|
958
|
+
class CDOTAUserMsg_SendFinalGold
|
959
|
+
repeated :uint32, :reliable_gold, 1
|
960
|
+
repeated :uint32, :unreliable_gold, 2
|
961
|
+
end
|
962
|
+
|
963
|
+
class CDOTAUserMsg_CustomMsg
|
964
|
+
optional :string, :message, 1
|
965
|
+
optional :int32, :player_id, 2
|
966
|
+
optional :int32, :value, 3
|
967
|
+
end
|
968
|
+
|
969
|
+
class CDOTAUserMsg_CoachHUDPing
|
970
|
+
optional :uint32, :player_id, 1
|
971
|
+
optional ::Effigy::Wire::CDOTAMsg_CoachHUDPing, :hud_ping, 2
|
972
|
+
end
|
973
|
+
|
974
|
+
class CDOTAUserMsg_TE_Projectile
|
975
|
+
optional :int32, :hSource, 1
|
976
|
+
optional :int32, :hTarget, 2
|
977
|
+
optional :int32, :moveSpeed, 3
|
978
|
+
optional :int32, :sourceAttachment, 4
|
979
|
+
optional :int64, :particleSystemHandle, 5
|
980
|
+
optional :bool, :dodgeable, 6
|
981
|
+
optional :bool, :isAttack, 7
|
982
|
+
optional :bool, :isEvaded, 8
|
983
|
+
optional :float, :expireTime, 9
|
984
|
+
optional :float, :maximpacttime, 10
|
985
|
+
optional :fixed32, :colorgemcolor, 11
|
986
|
+
end
|
987
|
+
|
988
|
+
class CDOTAUserMsg_TE_ProjectileLoc
|
989
|
+
optional ::Effigy::Wire::CMsgVector, :vSourceLoc, 1
|
990
|
+
optional :int32, :hTarget, 2
|
991
|
+
optional :int32, :moveSpeed, 3
|
992
|
+
optional :int64, :particleSystemHandle, 4
|
993
|
+
optional :bool, :dodgeable, 5
|
994
|
+
optional :bool, :isAttack, 6
|
995
|
+
optional :bool, :isEvaded, 8
|
996
|
+
optional :float, :expireTime, 9
|
997
|
+
optional ::Effigy::Wire::CMsgVector, :vTargetLoc, 10
|
998
|
+
optional :fixed32, :colorgemcolor, 11
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class CDOTAUserMsg_TE_DotaBloodImpact
|
1002
|
+
optional :int32, :entity, 1
|
1003
|
+
optional :float, :scale, 2
|
1004
|
+
optional :float, :xnormal, 3
|
1005
|
+
optional :float, :ynormal, 4
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
class CDOTAUserMsg_AbilityPing
|
1009
|
+
optional :uint32, :player_id, 1
|
1010
|
+
optional :uint32, :ability_id, 2
|
1011
|
+
optional ::Effigy::Wire::DOTA_ABILITY_PING_TYPE, :type, 3, :default => ::Effigy::Wire::DOTA_ABILITY_PING_TYPE::ABILITY_PING_READY
|
1012
|
+
optional :uint32, :cooldown_seconds, 4
|
1013
|
+
optional :uint32, :level, 5
|
1014
|
+
optional :bool, :passive, 6
|
1015
|
+
optional :uint32, :mana_needed, 7
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class CDOTAUserMsg_TE_UnitAnimation
|
1019
|
+
optional :int32, :entity, 1
|
1020
|
+
optional :int32, :sequenceVariant, 2
|
1021
|
+
optional :float, :playbackrate, 3
|
1022
|
+
optional :float, :castpoint, 4
|
1023
|
+
optional :int32, :type, 5
|
1024
|
+
optional :int32, :activity, 6
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class CDOTAUserMsg_TE_UnitAnimationEnd
|
1028
|
+
optional :int32, :entity, 1
|
1029
|
+
optional :bool, :snap, 2
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
class CDOTAUserMsg_ShowGenericPopup
|
1033
|
+
required :string, :header, 1
|
1034
|
+
required :string, :body, 2
|
1035
|
+
optional :string, :param1, 3
|
1036
|
+
optional :string, :param2, 4
|
1037
|
+
optional :bool, :tint_screen, 5
|
1038
|
+
optional :bool, :show_no_other_dialogs, 6
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class CDOTAUserMsg_VoteStart
|
1042
|
+
optional :string, :title, 1
|
1043
|
+
optional :float, :duration, 2
|
1044
|
+
optional :int32, :choice_count, 3
|
1045
|
+
repeated :string, :choices, 4
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
class CDOTAUserMsg_VoteUpdate
|
1049
|
+
repeated :int32, :choice_counts, 1
|
1050
|
+
end
|
1051
|
+
|
1052
|
+
class CDOTAUserMsg_VoteEnd
|
1053
|
+
optional :int32, :selected_choice, 1
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class CDOTAUserMsg_BoosterStatePlayer
|
1057
|
+
optional :uint32, :player_id, 1
|
1058
|
+
optional :float, :bonus, 2
|
1059
|
+
optional :float, :event_bonus, 3
|
1060
|
+
optional :uint32, :bonus_item_id, 4
|
1061
|
+
optional :uint32, :event_bonus_item_id, 5
|
1062
|
+
end
|
1063
|
+
|
1064
|
+
class CDOTAUserMsg_BoosterState
|
1065
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_BoosterStatePlayer, :boosted_players, 1
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
class CDOTAUserMsg_PlayerMMR
|
1069
|
+
repeated :sint32, :mmr, 1, :packed => true
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class CDOTAUserMsg_AbilitySteal
|
1073
|
+
optional :uint32, :player_id, 1
|
1074
|
+
optional :uint32, :ability_id, 2
|
1075
|
+
optional :uint32, :ability_level, 3
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class CDOTAUserMsg_StatsHeroLookup
|
1079
|
+
optional :int32, :player_id, 1
|
1080
|
+
optional :int32, :hero_id, 2
|
1081
|
+
optional :string, :hero_name, 3
|
1082
|
+
optional :string, :persona, 4
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class CDOTAUserMsg_StatsHeroPositionInfo
|
1086
|
+
class PositionPair
|
1087
|
+
optional ::Effigy::Wire::DOTA_POSITION_CATEGORY, :position_category, 1, :default => ::Effigy::Wire::DOTA_POSITION_CATEGORY::DOTA_POSITION_NONE
|
1088
|
+
optional :uint32, :position_count, 2
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
optional :float, :average_position, 1
|
1092
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsHeroPositionInfo::PositionPair, :position_details, 2
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class CDOTAUserMsg_StatsHeroMinuteDetails
|
1096
|
+
optional :uint32, :last_hits, 1
|
1097
|
+
optional :uint32, :hero_kills, 2
|
1098
|
+
optional :uint32, :hero_damage, 3
|
1099
|
+
optional :uint32, :tower_damage, 4
|
1100
|
+
optional ::Effigy::Wire::CDOTAUserMsg_StatsHeroPositionInfo, :position_info, 5
|
1101
|
+
optional :uint32, :total_xp, 6
|
1102
|
+
optional :uint32, :NET_worth, 7
|
1103
|
+
optional :uint32, :harvested_creep_gold, 8
|
1104
|
+
optional :uint32, :claimed_farm, 9
|
1105
|
+
optional :uint32, :wards_placed, 10
|
1106
|
+
optional :uint32, :runes_collected, 11
|
1107
|
+
optional :uint32, :tps_used, 12
|
1108
|
+
repeated :uint32, :mana_spent, 13
|
1109
|
+
repeated :uint32, :damage_absorbed, 14
|
1110
|
+
repeated :uint32, :damage_done, 15
|
1111
|
+
end
|
1112
|
+
|
1113
|
+
class CDOTAUserMsg_StatsTeamMinuteDetails
|
1114
|
+
class LocationPerformance
|
1115
|
+
optional :uint32, :location_category, 1
|
1116
|
+
optional :uint32, :stat_type, 2
|
1117
|
+
optional :uint32, :value, 3
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsHeroMinuteDetails, :player_stats, 1
|
1121
|
+
optional :uint32, :tower_kills, 2
|
1122
|
+
optional :uint32, :barrack_kills, 3
|
1123
|
+
optional :uint32, :available_lane_creep_gold, 4
|
1124
|
+
optional :uint32, :balance_kill_value, 5
|
1125
|
+
optional :uint32, :balance_tower_value, 6
|
1126
|
+
optional :uint32, :balance_barracks_value, 7
|
1127
|
+
optional :uint32, :balance_gold_value, 8
|
1128
|
+
optional :uint32, :balance_xp_value, 9
|
1129
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsTeamMinuteDetails::LocationPerformance, :lane_performance, 10
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class CDOTAUserMsg_StatsPlayerKillShare
|
1133
|
+
optional :int32, :player_id, 1
|
1134
|
+
optional :float, :kill_share_percent, 2
|
1135
|
+
optional :float, :player_loc_x, 3
|
1136
|
+
optional :float, :player_loc_y, 4
|
1137
|
+
optional :float, :health_percent, 5
|
1138
|
+
optional :float, :mana_percent, 6
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class CDOTAUserMsg_StatsKillDetails
|
1142
|
+
optional :uint32, :victim_id, 1
|
1143
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsPlayerKillShare, :kill_shares, 2
|
1144
|
+
optional :uint32, :damage_to_kill, 3
|
1145
|
+
optional :uint32, :effective_health, 4
|
1146
|
+
optional :float, :death_time, 5
|
1147
|
+
optional :uint32, :killer_id, 6
|
1148
|
+
end
|
1149
|
+
|
1150
|
+
class CDOTAUserMsg_StatsMatchDetails
|
1151
|
+
class CDOTAUserMsg_StatsFightTeamDetails
|
1152
|
+
repeated :uint32, :participants, 1
|
1153
|
+
repeated :uint32, :deaths, 2
|
1154
|
+
optional :uint32, :gold_delta, 3
|
1155
|
+
optional :uint32, :xp_delta, 4
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
class CDOTAUserMsg_StatsFightDetails
|
1159
|
+
optional :float, :start_time, 1
|
1160
|
+
optional :float, :end_time, 2
|
1161
|
+
optional ::Effigy::Wire::CDOTAUserMsg_StatsMatchDetails::CDOTAUserMsg_StatsFightTeamDetails, :radiant_fight_details, 3
|
1162
|
+
optional ::Effigy::Wire::CDOTAUserMsg_StatsMatchDetails::CDOTAUserMsg_StatsFightTeamDetails, :dire_fight_details, 4
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsHeroLookup, :hero_lookup, 1
|
1166
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsTeamMinuteDetails, :radiant_stats, 2
|
1167
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsTeamMinuteDetails, :dire_stats, 3
|
1168
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsKillDetails, :radiant_kills, 4
|
1169
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsKillDetails, :dire_kills, 5
|
1170
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_StatsMatchDetails::CDOTAUserMsg_StatsFightDetails, :fight_details, 6
|
1171
|
+
end
|
1172
|
+
|
1173
|
+
class CDOTAUserMsg_MiniTaunt
|
1174
|
+
optional :uint32, :taunting_player_id, 1
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class CDOTAUserMsg_SpeechBubble
|
1178
|
+
optional :bool, :destroy_all, 1
|
1179
|
+
end
|
1180
|
+
|
1181
|
+
class CDOTAUserMsg_CustomHeaderMessage
|
1182
|
+
optional :uint32, :player_id, 1
|
1183
|
+
optional :float, :duration, 2
|
1184
|
+
optional :string, :message, 3
|
1185
|
+
optional :int32, :value, 4
|
1186
|
+
end
|
1187
|
+
|
1188
|
+
class CMsgHeroAbilityStat
|
1189
|
+
optional ::Effigy::Wire::EHeroStatType, :stat_type, 1, :default => ::Effigy::Wire::EHeroStatType::K_EHeroStatType_None
|
1190
|
+
optional :int32, :int_value, 2
|
1191
|
+
optional :float, :float_value, 3
|
1192
|
+
end
|
1193
|
+
|
1194
|
+
class CMsgCombatAnalyzerPlayerStat
|
1195
|
+
optional :uint32, :account_id, 1
|
1196
|
+
repeated ::Effigy::Wire::CMsgHeroAbilityStat, :hero_ability_stats, 2
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class CMsgCombatAnalyzerStats
|
1200
|
+
optional :uint64, :match_id, 1
|
1201
|
+
repeated ::Effigy::Wire::CMsgCombatAnalyzerPlayerStat, :player_stats, 2
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
class CDOTAUserMsg_BeastChat
|
1205
|
+
optional :uint32, :team, 1
|
1206
|
+
optional :string, :format, 2
|
1207
|
+
optional :string, :message, 3
|
1208
|
+
optional :string, :target, 4
|
1209
|
+
end
|
1210
|
+
|
1211
|
+
class CDOTAUserMsg_CustomHudElement_Create
|
1212
|
+
optional :string, :element_id, 1
|
1213
|
+
optional :string, :layout_filename, 2
|
1214
|
+
optional :bytes, :data, 3
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
class CDOTAUserMsg_CustomHudElement_Modify
|
1218
|
+
optional :string, :element_id, 1
|
1219
|
+
optional :bool, :modify_visible, 2
|
1220
|
+
optional :bytes, :data, 3
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
class CDOTAUserMsg_CustomHudElement_Destroy
|
1224
|
+
optional :string, :element_id, 1
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class CDOTAUserMsg_CompendiumStatePlayer
|
1228
|
+
optional :uint32, :player_id, 1
|
1229
|
+
optional :uint32, :level, 2
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class CDOTAUserMsg_CompendiumState
|
1233
|
+
repeated ::Effigy::Wire::CDOTAUserMsg_CompendiumStatePlayer, :compendium_players, 1
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
class CDOTAUserMsg_ProjectionAbility
|
1237
|
+
optional :uint32, :ability_id, 1
|
1238
|
+
optional :int32, :caster_ent_index, 2
|
1239
|
+
optional :int32, :caster_team, 3
|
1240
|
+
optional :bool, :channel_end, 4
|
1241
|
+
optional ::Effigy::Wire::CMsgVector, :origin, 5
|
1242
|
+
optional :bool, :track_caster_only, 6
|
1243
|
+
optional :float, :end_time, 7
|
1244
|
+
optional :int32, :victim_ent_index, 8
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class CDOTAUserMsg_ProjectionEvent
|
1248
|
+
optional ::Effigy::Wire::EProjectionEvent, :event_id, 1, :default => ::Effigy::Wire::EProjectionEvent::EPE_FirstBlood
|
1249
|
+
optional :uint32, :team, 2
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
class CDOTAUserMsg_XPAlert
|
1253
|
+
optional :uint32, :player_id, 1
|
1254
|
+
optional :uint32, :target_entindex, 2
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class CMsgDOTACombatLogEntry
|
1258
|
+
optional ::Effigy::Wire::DOTA_COMBATLOG_TYPES, :type, 1, :default => ::Effigy::Wire::DOTA_COMBATLOG_TYPES::DOTA_COMBATLOG_DAMAGE
|
1259
|
+
optional :uint32, :target_name, 2
|
1260
|
+
optional :uint32, :target_source_name, 3
|
1261
|
+
optional :uint32, :attacker_name, 4
|
1262
|
+
optional :uint32, :damage_source_name, 5
|
1263
|
+
optional :uint32, :inflictor_name, 6
|
1264
|
+
optional :bool, :is_attacker_illusion, 7
|
1265
|
+
optional :bool, :is_attacker_hero, 8
|
1266
|
+
optional :bool, :is_target_illusion, 9
|
1267
|
+
optional :bool, :is_target_hero, 10
|
1268
|
+
optional :bool, :is_visible_radiant, 11
|
1269
|
+
optional :bool, :is_visible_dire, 12
|
1270
|
+
optional :uint32, :value, 13
|
1271
|
+
optional :int32, :health, 14
|
1272
|
+
optional :float, :timestamp, 15
|
1273
|
+
optional :float, :stun_duration, 16
|
1274
|
+
optional :float, :slow_duration, 17
|
1275
|
+
optional :bool, :is_ability_toggle_on, 18
|
1276
|
+
optional :bool, :is_ability_toggle_off, 19
|
1277
|
+
optional :uint32, :ability_level, 20
|
1278
|
+
optional :float, :location_x, 21
|
1279
|
+
optional :float, :location_y, 22
|
1280
|
+
optional :uint32, :gold_reason, 23
|
1281
|
+
optional :float, :timestamp_raw, 24
|
1282
|
+
optional :float, :modifier_duration, 25
|
1283
|
+
optional :uint32, :xp_reason, 26
|
1284
|
+
optional :uint32, :last_hits, 27
|
1285
|
+
optional :uint32, :attacker_team, 28
|
1286
|
+
optional :uint32, :target_team, 29
|
1287
|
+
optional :uint32, :obs_wards_placed, 30
|
1288
|
+
optional :uint32, :assist_player0, 31
|
1289
|
+
optional :uint32, :assist_player1, 32
|
1290
|
+
optional :uint32, :assist_player2, 33
|
1291
|
+
optional :uint32, :assist_player3, 34
|
1292
|
+
optional :uint32, :stack_count, 35
|
1293
|
+
optional :bool, :hidden_modifier, 36
|
1294
|
+
optional :bool, :is_target_building, 37
|
1295
|
+
optional :uint32, :neutral_camp_type, 38
|
1296
|
+
optional :uint32, :rune_type, 39
|
1297
|
+
repeated :uint32, :assist_players, 40
|
1298
|
+
optional :bool, :is_heal_save, 41
|
1299
|
+
optional :bool, :is_ultimate_ability, 42
|
1300
|
+
optional :uint32, :attacker_hero_level, 43
|
1301
|
+
optional :uint32, :target_hero_level, 44
|
1302
|
+
optional :uint32, :xpm, 45
|
1303
|
+
optional :uint32, :gpm, 46
|
1304
|
+
optional :uint32, :event_location, 47
|
1305
|
+
optional :bool, :target_is_self, 48
|
1306
|
+
optional :uint32, :damage_type, 49
|
1307
|
+
optional :bool, :invisibility_modifier, 50
|
1308
|
+
optional :uint32, :damage_category, 51
|
1309
|
+
optional :uint32, :networth, 52
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
end
|
1315
|
+
|