Pnkj01 commited on
Commit
68135fb
·
verified ·
1 Parent(s): c8d8ed8

Make a full powerfull headshot panel for mobile Android and I phone for free fire with 100% headshot and auto aimlock on head, no bullet spread and 0 recoil and no performance drop and error free and auto error fix with high sensitivity which effect in the real game out real aimlock aimbot logic - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +311 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Hii
3
- emoji: 📈
4
- colorFrom: pink
5
  colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: hii
3
+ emoji: 🐳
4
+ colorFrom: green
5
  colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,311 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Free Fire Training Panel</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
12
+ }
13
+ .panel-glass {
14
+ background: rgba(255, 255, 255, 0.1);
15
+ backdrop-filter: blur(10px);
16
+ -webkit-backdrop-filter: blur(10px);
17
+ border: 1px solid rgba(255, 255, 255, 0.2);
18
+ }
19
+ .switch {
20
+ position: relative;
21
+ display: inline-block;
22
+ width: 60px;
23
+ height: 34px;
24
+ }
25
+ .switch input {
26
+ opacity: 0;
27
+ width: 0;
28
+ height: 0;
29
+ }
30
+ .slider {
31
+ position: absolute;
32
+ cursor: pointer;
33
+ top: 0;
34
+ left: 0;
35
+ right: 0;
36
+ bottom: 0;
37
+ background-color: #ccc;
38
+ transition: .4s;
39
+ border-radius: 34px;
40
+ }
41
+ .slider:before {
42
+ position: absolute;
43
+ content: "";
44
+ height: 26px;
45
+ width: 26px;
46
+ left: 4px;
47
+ bottom: 4px;
48
+ background-color: white;
49
+ transition: .4s;
50
+ border-radius: 50%;
51
+ }
52
+ input:checked + .slider {
53
+ background-color: #3b82f6;
54
+ }
55
+ input:checked + .slider:before {
56
+ transform: translateX(26px);
57
+ }
58
+ .range-slider::-webkit-slider-thumb {
59
+ -webkit-appearance: none;
60
+ appearance: none;
61
+ width: 20px;
62
+ height: 20px;
63
+ background: #3b82f6;
64
+ cursor: pointer;
65
+ border-radius: 50%;
66
+ }
67
+ .range-slider::-moz-range-thumb {
68
+ width: 20px;
69
+ height: 20px;
70
+ background: #3b82f6;
71
+ cursor: pointer;
72
+ border-radius: 50%;
73
+ }
74
+ </style>
75
+ </head>
76
+ <body class="gradient-bg min-h-screen text-white font-sans">
77
+ <div class="container mx-auto px-4 py-8">
78
+ <!-- Header -->
79
+ <header class="flex justify-between items-center mb-8">
80
+ <div class="flex items-center">
81
+ <img src="https://via.placeholder.com/50" alt="Logo" class="w-12 h-12 rounded-full mr-3">
82
+ <div>
83
+ <h1 class="text-2xl font-bold">Free Fire Trainer</h1>
84
+ <p class="text-sm opacity-75">Improve your skills legitimately</p>
85
+ </div>
86
+ </div>
87
+ <div class="flex items-center space-x-3">
88
+ <button class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-full text-sm font-medium transition">
89
+ <i class="fas fa-user mr-1"></i> Profile
90
+ </button>
91
+ </div>
92
+ </header>
93
+
94
+ <!-- Main Panel -->
95
+ <div class="panel-glass rounded-2xl p-6 mb-8">
96
+ <div class="flex justify-between items-center mb-6">
97
+ <h2 class="text-xl font-bold">Training Configuration</h2>
98
+ <div class="flex items-center">
99
+ <span class="mr-2 text-sm">Active</span>
100
+ <label class="switch">
101
+ <input type="checkbox" checked>
102
+ <span class="slider"></span>
103
+ </label>
104
+ </div>
105
+ </div>
106
+
107
+ <!-- Sensitivity Controls -->
108
+ <div class="mb-6">
109
+ <h3 class="font-medium mb-3 flex items-center">
110
+ <i class="fas fa-bullseye mr-2 text-blue-400"></i> Sensitivity Settings
111
+ </h3>
112
+ <div class="space-y-4">
113
+ <div>
114
+ <div class="flex justify-between mb-1">
115
+ <span>General Sensitivity</span>
116
+ <span class="font-mono">85%</span>
117
+ </div>
118
+ <input type="range" min="0" max="100" value="85" class="w-full range-slider h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
119
+ </div>
120
+ <div>
121
+ <div class="flex justify-between mb-1">
122
+ <span>ADS Sensitivity</span>
123
+ <span class="font-mono">75%</span>
124
+ </div>
125
+ <input type="range" min="0" max="100" value="75" class="w-full range-slider h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
126
+ </div>
127
+ <div>
128
+ <div class="flex justify-between mb-1">
129
+ <span>Scoped Sensitivity</span>
130
+ <span class="font-mono">65%</span>
131
+ </div>
132
+ <input type="range" min="0" max="100" value="65" class="w-full range-slider h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
133
+ </div>
134
+ </div>
135
+ </div>
136
+
137
+ <!-- Training Modes -->
138
+ <div class="mb-6">
139
+ <h3 class="font-medium mb-3 flex items-center">
140
+ <i class="fas fa-running mr-2 text-green-400"></i> Training Modes
141
+ </h3>
142
+ <div class="grid grid-cols-2 gap-3">
143
+ <button class="bg-blue-500 hover:bg-blue-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
144
+ <i class="fas fa-crosshairs mr-2"></i> Headshot Practice
145
+ </button>
146
+ <button class="bg-purple-500 hover:bg-purple-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
147
+ <i class="fas fa-bullseye mr-2"></i> Target Tracking
148
+ </button>
149
+ <button class="bg-green-500 hover:bg-green-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
150
+ <i class="fas fa-fire mr-2"></i> Recoil Control
151
+ </button>
152
+ <button class="bg-yellow-500 hover:bg-yellow-600 py-3 px-4 rounded-xl text-sm font-medium transition flex items-center justify-center">
153
+ <i class="fas fa-arrows-alt mr-2"></i> Movement Drills
154
+ </button>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Advanced Settings -->
159
+ <div>
160
+ <h3 class="font-medium mb-3 flex items-center">
161
+ <i class="fas fa-cog mr-2 text-yellow-400"></i> Advanced Settings
162
+ </h3>
163
+ <div class="space-y-3">
164
+ <div class="flex justify-between items-center">
165
+ <span>Show Hit Markers</span>
166
+ <label class="switch">
167
+ <input type="checkbox" checked>
168
+ <span class="slider"></span>
169
+ </label>
170
+ </div>
171
+ <div class="flex justify-between items-center">
172
+ <span>Display Crosshair</span>
173
+ <label class="switch">
174
+ <input type="checkbox" checked>
175
+ <span class="slider"></span>
176
+ </label>
177
+ </div>
178
+ <div class="flex justify-between items-center">
179
+ <span>Recoil Visualization</span>
180
+ <label class="switch">
181
+ <input type="checkbox">
182
+ <span class="slider"></span>
183
+ </label>
184
+ </div>
185
+ <div class="flex justify-between items-center">
186
+ <span>Target Prediction</span>
187
+ <label class="switch">
188
+ <input type="checkbox">
189
+ <span class="slider"></span>
190
+ </label>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+
196
+ <!-- Stats Section -->
197
+ <div class="panel-glass rounded-2xl p-6 mb-8">
198
+ <h2 class="text-xl font-bold mb-4">Training Statistics</h2>
199
+ <div class="grid grid-cols-2 gap-4">
200
+ <div class="bg-blue-500/20 p-4 rounded-xl">
201
+ <div class="flex items-center justify-between">
202
+ <div>
203
+ <p class="text-sm opacity-75">Headshot Accuracy</p>
204
+ <p class="text-2xl font-bold">72%</p>
205
+ </div>
206
+ <i class="fas fa-crosshairs text-3xl opacity-30"></i>
207
+ </div>
208
+ <div class="mt-2 h-1 w-full bg-blue-500/30 rounded-full">
209
+ <div class="h-1 bg-blue-500 rounded-full" style="width: 72%"></div>
210
+ </div>
211
+ </div>
212
+ <div class="bg-green-500/20 p-4 rounded-xl">
213
+ <div class="flex items-center justify-between">
214
+ <div>
215
+ <p class="text-sm opacity-75">Kill Ratio</p>
216
+ <p class="text-2xl font-bold">3.2</p>
217
+ </div>
218
+ <i class="fas fa-skull text-3xl opacity-30"></i>
219
+ </div>
220
+ <div class="mt-2 h-1 w-full bg-green-500/30 rounded-full">
221
+ <div class="h-1 bg-green-500 rounded-full" style="width: 64%"></div>
222
+ </div>
223
+ </div>
224
+ <div class="bg-purple-500/20 p-4 rounded-xl">
225
+ <div class="flex items-center justify-between">
226
+ <div>
227
+ <p class="text-sm opacity-75">Avg. Damage</p>
228
+ <p class="text-2xl font-bold">1,240</p>
229
+ </div>
230
+ <i class="fas fa-bolt text-3xl opacity-30"></i>
231
+ </div>
232
+ <div class="mt-2 h-1 w-full bg-purple-500/30 rounded-full">
233
+ <div class="h-1 bg-purple-500 rounded-full" style="width: 82%"></div>
234
+ </div>
235
+ </div>
236
+ <div class="bg-yellow-500/20 p-4 rounded-xl">
237
+ <div class="flex items-center justify-between">
238
+ <div>
239
+ <p class="text-sm opacity-75">Survival Time</p>
240
+ <p class="text-2xl font-bold">14:32</p>
241
+ </div>
242
+ <i class="fas fa-clock text-3xl opacity-30"></i>
243
+ </div>
244
+ <div class="mt-2 h-1 w-full bg-yellow-500/30 rounded-full">
245
+ <div class="h-1 bg-yellow-500 rounded-full" style="width: 58%"></div>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Quick Start -->
252
+ <div class="panel-glass rounded-2xl p-6">
253
+ <h2 class="text-xl font-bold mb-4">Quick Start Training</h2>
254
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
255
+ <button class="bg-blue-600 hover:bg-blue-700 py-4 px-6 rounded-xl font-medium transition flex flex-col items-center">
256
+ <i class="fas fa-crosshairs text-2xl mb-2"></i>
257
+ <span>Headshot Mastery</span>
258
+ <span class="text-xs opacity-75 mt-1">15 min session</span>
259
+ </button>
260
+ <button class="bg-purple-600 hover:bg-purple-700 py-4 px-6 rounded-xl font-medium transition flex flex-col items-center">
261
+ <i class="fas fa-bullseye text-2xl mb-2"></i>
262
+ <span>Recoil Control</span>
263
+ <span class="text-xs opacity-75 mt-1">10 min session</span>
264
+ </button>
265
+ <button class="bg-green-600 hover:bg-green-700 py-4 px-6 rounded-xl font-medium transition flex flex-col items-center">
266
+ <i class="fas fa-running text-2xl mb-2"></i>
267
+ <span>Movement Drills</span>
268
+ <span class="text-xs opacity-75 mt-1">12 min session</span>
269
+ </button>
270
+ </div>
271
+ </div>
272
+
273
+ <!-- Footer -->
274
+ <footer class="mt-8 text-center text-sm opacity-75">
275
+ <p>This is a training tool to help improve your Free Fire skills through legitimate practice.</p>
276
+ <p class="mt-1">Using cheats or hacks violates game terms of service and is strongly discouraged.</p>
277
+ </footer>
278
+ </div>
279
+
280
+ <script>
281
+ // Simple range value display update
282
+ document.querySelectorAll('.range-slider').forEach(slider => {
283
+ slider.addEventListener('input', function() {
284
+ const valueDisplay = this.nextElementSibling.querySelector('span');
285
+ if (valueDisplay) {
286
+ valueDisplay.textContent = this.value + '%';
287
+ }
288
+ });
289
+ });
290
+
291
+ // Toggle switches
292
+ document.querySelectorAll('.switch input').forEach(switchInput => {
293
+ switchInput.addEventListener('change', function() {
294
+ const panel = document.querySelector('.panel-glass');
295
+ if (this.checked) {
296
+ panel.classList.remove('opacity-75');
297
+ } else {
298
+ panel.classList.add('opacity-75');
299
+ }
300
+ });
301
+ });
302
+
303
+ // Training mode buttons
304
+ document.querySelectorAll('.grid button').forEach(button => {
305
+ button.addEventListener('click', function() {
306
+ alert('Starting training session: ' + this.textContent.trim());
307
+ });
308
+ });
309
+ </script>
310
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Pnkj01/hii" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
311
+ </html>