forked from aquaismissing/INCS2bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame_stats_template.html
279 lines (279 loc) · 9.05 KB
/
game_stats_template.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
<p><code>{{ user_gamestats_generated_with }} <a href=\"https://t.me/INCS2bot\">@INCS2bot</a> ❤️</code></p>
<h3>{{ user_gamestats_header }}</h3>
<ul>
<li>{{ user_gamestats_playtime }} <b>{:,}</b> {{ metrics_hours_short }}</li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_deaths }} <b>{:,}</b></li>
<li>{{ user_gamestats_kd_ratio }} <b>{}</b></li>
</ul>
<br>
<ul>
<li>{{ user_gamestats_matches_played }} <b>{:,}</b></li>
<li>{{ user_gamestats_matches_won }} <b>{:,}</b></li>
<li>{{ user_gamestats_win_percentage }} <b>{}</b>%</li>
<li>{{ user_gamestats_rounds_played }} <b>{:,}</b></li>
<li>{{ user_gamestats_pistol_rounds_won }} <b>{:,}</b></li>
</ul>
<hr>
<h3>{{ user_gamestats_aim_stats }}</h3>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
<li>{{ user_gamestats_hs_percentage }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_maps_stats }}</h3>
<ul>
<li>{{ user_gamestats_best_map }} <b>{}</b></li>
<li>{{ user_gamestats_win_percentage }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_misc_stats }}</h3>
<ul>
<li>{{ user_gamestats_mvp_rewards }} <b>{:,}</b></li>
<li>{{ user_gamestats_total_income }} <b>{:,}</b>$</li>
<li>{{ user_gamestats_hostages_rescued }} <b>{:,}</b></li>
<li>{{ user_gamestats_weapons_dropped }} <b>{:,}</b></li>
<li>{{ user_gamestats_windows_broken }} <b>{:,}</b></li>
</ul>
<br>
<ul>
<li>{{ user_gamestats_dealt_damage }} <b>{:,}</b></li>
<li>{{ user_gamestats_bombs_planted }} <b>{:,}</b></li>
<li>{{ user_gamestats_bombs_defused }} <b>{:,}</b></li>
</ul>
<br>
<ul>
<li>{{ user_gamestats_knife_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_grenade_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_molotov_kills }} <b>{:,}</b></li>
</ul>
<br>
<ul>
<li>{{ user_gamestats_zeus_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_zeus_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_zeus_aim_accuracy }} <b>{}</b>%</li>
</ul>
<br>
<ul>
<li>{{ user_gamestats_knife_fights_won }} <b>{:,}</b></li>
<li>{{ user_gamestats_enemy_weapon_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_flashed_enemies_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_scoped_snipers_kills }} <b>{:,}</b></li>
</ul>
<hr>
<h3>{{ user_gamestats_gun_stats }}</h3>
<h4>AK-47:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>M4A4 / M4A1-S:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>AWP:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_pistols_stats }}</h3>
<h4>Glock-18:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>USP-S / P2000:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>P250:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Dual Berettas:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Five-SeveN / CZ75-Auto:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Tec-9 / CZ75-Auto:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Desert Eagle / R8 Revolver:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_smgs_stats }}</h3>
<h4>MAC-10:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>MP7 / MP5-SD:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>MP9:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>UMP-45:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>PP-Bizon:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>P90:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_rifles_stats }}</h3>
<h4>FAMAS:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Galil AR:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>AUG:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>SG 553:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_snipers_stats }}</h3>
<h4>SSG 08:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>SCAR-20:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>G3SG1:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<hr>
<h3>{{ user_gamestats_heavy_stats }}</h3>
<h4>Nova:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>MAG-7:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Sawed-Off:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>XM1014:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>Negev:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>
<h4>M249:</h4>
<ul>
<li>{{ user_gamestats_shots }} <b>{:,}</b></li>
<li>{{ user_gamestats_hits }} <b>{:,}</b></li>
<li>{{ user_gamestats_kills }} <b>{:,}</b></li>
<li>{{ user_gamestats_aim_accuracy }} <b>{}</b>%</li>
</ul>