Pankajpegu07 commited on
Commit
488bf91
·
verified ·
1 Parent(s): e333307

Make the aimassite logic more aggressive and powerful and Target the head more accurately - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +386 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Aggressive
3
- emoji: 🏆
4
- colorFrom: pink
5
- colorTo: purple
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: aggressive
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: gray
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,386 @@
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 Headshot Configurator</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
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
15
+ min-height: 100vh;
16
+ }
17
+
18
+ .config-card {
19
+ background: rgba(255, 255, 255, 0.05);
20
+ backdrop-filter: blur(10px);
21
+ border: 1px solid rgba(255, 255, 255, 0.1);
22
+ box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
23
+ }
24
+
25
+ .slider-thumb::-webkit-slider-thumb {
26
+ -webkit-appearance: none;
27
+ appearance: none;
28
+ width: 20px;
29
+ height: 20px;
30
+ border-radius: 50%;
31
+ background: #f59e0b;
32
+ cursor: pointer;
33
+ }
34
+
35
+ .toggle-checkbox:checked {
36
+ right: 0;
37
+ border-color: #f59e0b;
38
+ background-color: #f59e0b;
39
+ }
40
+
41
+ .toggle-checkbox:checked + .toggle-label {
42
+ background-color: rgba(245, 158, 11, 0.2);
43
+ }
44
+
45
+ .weapon-selector {
46
+ transition: all 0.3s ease;
47
+ }
48
+
49
+ .weapon-selector:hover {
50
+ transform: translateY(-5px);
51
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
52
+ }
53
+
54
+ .weapon-selector.active {
55
+ border-color: #f59e0b;
56
+ box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
57
+ }
58
+
59
+ .pulse-animation {
60
+ animation: pulse 2s infinite;
61
+ }
62
+
63
+ @keyframes pulse {
64
+ 0% {
65
+ box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
66
+ }
67
+ 70% {
68
+ box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
69
+ }
70
+ 100% {
71
+ box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
72
+ }
73
+ }
74
+ </style>
75
+ </head>
76
+ <body class="text-gray-200">
77
+ <div class="container mx-auto px-4 py-8">
78
+ <div class="text-center mb-10">
79
+ <h1 class="text-4xl font-bold mb-2 bg-gradient-to-r from-yellow-400 to-yellow-600 bg-clip-text text-transparent">
80
+ <i class="fas fa-crosshairs mr-2"></i> Free Fire Headshot Configurator
81
+ </h1>
82
+ <p class="text-gray-400 max-w-2xl mx-auto">Optimize your gameplay with precision headshot settings for all weapons</p>
83
+ </div>
84
+
85
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
86
+ <!-- Main Configuration Panel -->
87
+ <div class="config-card rounded-xl p-6 lg:col-span-2">
88
+ <div class="flex justify-between items-center mb-6">
89
+ <h2 class="text-2xl font-semibold">Headshot Configuration</h2>
90
+ <div class="flex items-center space-x-2">
91
+ <span class="text-sm">Auto Apply</span>
92
+ <div class="relative inline-block w-12 mr-2 align-middle select-none">
93
+ <input type="checkbox" id="auto-apply" class="toggle-checkbox absolute block w-6 h-6 rounded-full bg-white border-4 appearance-none cursor-pointer"/>
94
+ <label for="auto-apply" class="toggle-label block overflow-hidden h-6 rounded-full bg-gray-300 cursor-pointer"></label>
95
+ </div>
96
+ </div>
97
+ </div>
98
+
99
+ <!-- Sensitivity Settings -->
100
+ <div class="mb-8">
101
+ <h3 class="text-lg font-medium mb-4 flex items-center">
102
+ <i class="fas fa-bullseye mr-2 text-yellow-500"></i> Sensitivity Settings
103
+ </h3>
104
+
105
+ <div class="space-y-5">
106
+ <div>
107
+ <div class="flex justify-between mb-2">
108
+ <label class="font-medium">General Sensitivity</label>
109
+ <span id="general-value" class="text-yellow-500">50</span>
110
+ </div>
111
+ <input type="range" min="0" max="100" value="50" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer slider-thumb">
112
+ </div>
113
+
114
+ <div>
115
+ <div class="flex justify-between mb-2">
116
+ <label class="font-medium">Red Dot Sensitivity</label>
117
+ <span id="reddot-value" class="text-yellow-500">65</span>
118
+ </div>
119
+ <input type="range" min="0" max="100" value="65" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer slider-thumb">
120
+ </div>
121
+
122
+ <div>
123
+ <div class="flex justify-between mb-2">
124
+ <label class="font-medium">2x Scope Sensitivity</label>
125
+ <span id="scope2x-value" class="text-yellow-500">60</span>
126
+ </div>
127
+ <input type="range" min="0" max="100" value="60" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer slider-thumb">
128
+ </div>
129
+
130
+ <div>
131
+ <div class="flex justify-between mb-2">
132
+ <label class="font-medium">4x Scope Sensitivity</label>
133
+ <span id="scope4x-value" class="text-yellow-500">55</span>
134
+ </div>
135
+ <input type="range" min="0" max="100" value="55" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer slider-thumb">
136
+ </div>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Advanced Settings -->
141
+ <div>
142
+ <h3 class="text-lg font-medium mb-4 flex items-center">
143
+ <i class="fas fa-cogs mr-2 text-yellow-500"></i> Advanced Settings
144
+ </h3>
145
+
146
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
147
+ <div>
148
+ <label class="block mb-2 font-medium">Recoil Control</label>
149
+ <select class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
150
+ <option>Low</option>
151
+ <option selected>Medium</option>
152
+ <option>High</option>
153
+ <option>Custom</option>
154
+ </select>
155
+ </div>
156
+
157
+ <div>
158
+ <label class="block mb-2 font-medium">Aim Assist</label>
159
+ <select class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
160
+ <option>Off</option>
161
+ <option>Standard</option>
162
+ <option selected>Aggressive</option>
163
+ </select>
164
+ </div>
165
+
166
+ <div>
167
+ <label class="block mb-2 font-medium">Fire Mode</label>
168
+ <select class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
169
+ <option>Single</option>
170
+ <option selected>Burst</option>
171
+ <option>Auto</option>
172
+ </select>
173
+ </div>
174
+
175
+ <div>
176
+ <label class="block mb-2 font-medium">Crosshair Style</label>
177
+ <select class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
178
+ <option>Default</option>
179
+ <option selected>Dot</option>
180
+ <option>Circle</option>
181
+ <option>Custom</option>
182
+ </select>
183
+ </div>
184
+ </div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- Weapon Selector and Presets -->
189
+ <div class="space-y-6">
190
+ <!-- Weapon Selection -->
191
+ <div class="config-card rounded-xl p-6">
192
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
193
+ <i class="fas fa-gun mr-2 text-yellow-500"></i> Weapon Selection
194
+ </h2>
195
+
196
+ <div class="grid grid-cols-3 gap-3">
197
+ <div class="weapon-selector active p-3 border-2 border-transparent rounded-lg bg-gray-800 bg-opacity-50 text-center cursor-pointer transition-all">
198
+ <i class="fas fa-gun text-2xl mb-2 text-yellow-500"></i>
199
+ <p class="text-sm">Assault Rifle</p>
200
+ </div>
201
+ <div class="weapon-selector p-3 border-2 border-transparent rounded-lg bg-gray-800 bg-opacity-50 text-center cursor-pointer transition-all">
202
+ <i class="fas fa-gun text-2xl mb-2"></i>
203
+ <p class="text-sm">SMG</p>
204
+ </div>
205
+ <div class="weapon-selector p-3 border-2 border-transparent rounded-lg bg-gray-800 bg-opacity-50 text-center cursor-pointer transition-all">
206
+ <i class="fas fa-gun text-2xl mb-2"></i>
207
+ <p class="text-sm">Sniper</p>
208
+ </div>
209
+ <div class="weapon-selector p-3 border-2 border-transparent rounded-lg bg-gray-800 bg-opacity-50 text-center cursor-pointer transition-all">
210
+ <i class="fas fa-gun text-2xl mb-2"></i>
211
+ <p class="text-sm">Shotgun</p>
212
+ </div>
213
+ <div class="weapon-selector p-3 border-2 border-transparent rounded-lg bg-gray-800 bg-opacity-50 text-center cursor-pointer transition-all">
214
+ <i class="fas fa-gun text-2xl mb-2"></i>
215
+ <p class="text-sm">LMG</p>
216
+ </div>
217
+ <div class="weapon-selector p-3 border-2 border-transparent rounded-lg bg-gray-800 bg-opacity-50 text-center cursor-pointer transition-all">
218
+ <i class="fas fa-gun text-2xl mb-2"></i>
219
+ <p class="text-sm">Pistol</p>
220
+ </div>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- Presets -->
225
+ <div class="config-card rounded-xl p-6">
226
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
227
+ <i class="fas fa-prescription-bottle-alt mr-2 text-yellow-500"></i> Presets
228
+ </h2>
229
+
230
+ <div class="space-y-3">
231
+ <div class="flex items-center justify-between p-3 bg-gray-800 bg-opacity-50 rounded-lg cursor-pointer hover:bg-opacity-70 transition">
232
+ <div>
233
+ <h4 class="font-medium">Balanced</h4>
234
+ <p class="text-xs text-gray-400">Good for all situations</p>
235
+ </div>
236
+ <button class="px-3 py-1 bg-yellow-600 bg-opacity-20 text-yellow-400 rounded text-sm">Apply</button>
237
+ </div>
238
+
239
+ <div class="flex items-center justify-between p-3 bg-gray-800 bg-opacity-50 rounded-lg cursor-pointer hover:bg-opacity-70 transition">
240
+ <div>
241
+ <h4 class="font-medium">Aggressive</h4>
242
+ <p class="text-xs text-gray-400">Close-range combat</p>
243
+ </div>
244
+ <button class="px-3 py-1 bg-gray-700 rounded text-sm">Apply</button>
245
+ </div>
246
+
247
+ <div class="flex items-center justify-between p-3 bg-gray-800 bg-opacity-50 rounded-lg cursor-pointer hover:bg-opacity-70 transition">
248
+ <div>
249
+ <h4 class="font-medium">Sniper Pro</h4>
250
+ <p class="text-xs text-gray-400">Long-range precision</p>
251
+ </div>
252
+ <button class="px-3 py-1 bg-gray-700 rounded text-sm">Apply</button>
253
+ </div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Save/Load -->
258
+ <div class="config-card rounded-xl p-6">
259
+ <h2 class="text-xl font-semibold mb-4 flex items-center">
260
+ <i class="fas fa-save mr-2 text-yellow-500"></i> Config Management
261
+ </h2>
262
+
263
+ <div class="grid grid-cols-2 gap-3">
264
+ <button class="col-span-2 bg-yellow-600 hover:bg-yellow-700 text-white py-2 px-4 rounded-lg font-medium flex items-center justify-center transition">
265
+ <i class="fas fa-cloud-upload-alt mr-2"></i> Save Configuration
266
+ </button>
267
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 px-4 rounded-lg font-medium flex items-center justify-center transition">
268
+ <i class="fas fa-file-import mr-2"></i> Import
269
+ </button>
270
+ <button class="bg-gray-700 hover:bg-gray-600 py-2 px-4 rounded-lg font-medium flex items-center justify-center transition">
271
+ <i class="fas fa-file-export mr-2"></i> Export
272
+ </button>
273
+ </div>
274
+
275
+ <div class="mt-4 p-3 bg-gray-800 bg-opacity-50 rounded-lg">
276
+ <div class="flex items-center justify-between mb-2">
277
+ <span class="text-sm">Current Config:</span>
278
+ <span class="text-yellow-500 text-sm font-medium">Headshot_Pro_v2</span>
279
+ </div>
280
+ <div class="flex items-center justify-between text-xs text-gray-400">
281
+ <span>Last Modified: 2 hours ago</span>
282
+ <span>Size: 12KB</span>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Quick Actions -->
290
+ <div class="mt-8 flex flex-wrap justify-center gap-4">
291
+ <button class="px-6 py-3 bg-green-600 hover:bg-green-700 rounded-lg font-medium flex items-center pulse-animation">
292
+ <i class="fas fa-play mr-2"></i> Apply Settings
293
+ </button>
294
+ <button class="px-6 py-3 bg-blue-600 hover:bg-blue-700 rounded-lg font-medium flex items-center">
295
+ <i class="fas fa-sync-alt mr-2"></i> Reset to Default
296
+ </button>
297
+ <button class="px-6 py-3 bg-red-600 hover:bg-red-700 rounded-lg font-medium flex items-center">
298
+ <i class="fas fa-times mr-2"></i> Clear All
299
+ </button>
300
+ </div>
301
+ </div>
302
+
303
+ <script>
304
+ // Update slider values in real-time
305
+ document.querySelectorAll('input[type="range"]').forEach(slider => {
306
+ const valueId = slider.id ? slider.id + '-value' : slider.previousElementSibling.querySelector('span').id;
307
+
308
+ slider.addEventListener('input', function() {
309
+ document.getElementById(valueId).textContent = this.value;
310
+ });
311
+ });
312
+
313
+ // Weapon selection
314
+ const weaponSelectors = document.querySelectorAll('.weapon-selector');
315
+ weaponSelectors.forEach(selector => {
316
+ selector.addEventListener('click', function() {
317
+ weaponSelectors.forEach(s => s.classList.remove('active', 'border-yellow-500'));
318
+ this.classList.add('active', 'border-yellow-500');
319
+
320
+ // Update icon color
321
+ const icon = this.querySelector('i');
322
+ weaponSelectors.forEach(s => {
323
+ s.querySelector('i').classList.remove('text-yellow-500');
324
+ });
325
+ icon.classList.add('text-yellow-500');
326
+ });
327
+ });
328
+
329
+ // Preset buttons
330
+ const presetButtons = document.querySelectorAll('.config-management button');
331
+ presetButtons.forEach(button => {
332
+ button.addEventListener('click', function() {
333
+ // Remove active class from all buttons in the same container
334
+ this.parentElement.querySelectorAll('button').forEach(btn => {
335
+ btn.classList.remove('bg-yellow-600', 'bg-opacity-20', 'text-yellow-400');
336
+ btn.classList.add('bg-gray-700');
337
+ });
338
+
339
+ // Add active class to clicked button
340
+ this.classList.add('bg-yellow-600', 'bg-opacity-20', 'text-yellow-400');
341
+ this.classList.remove('bg-gray-700');
342
+
343
+ // Here you would typically load the preset settings
344
+ });
345
+ });
346
+
347
+ // Enhanced Headshot Targeting Logic
348
+ function enhanceHeadshotTargeting() {
349
+ // Boost sensitivity for head targeting
350
+ const sensitivityBoost = 1.5;
351
+ document.getElementById('general-value').textContent =
352
+ Math.min(100, Math.round(parseInt(document.getElementById('general-value').textContent) * sensitivityBoost));
353
+ document.getElementById('reddot-value').textContent =
354
+ Math.min(100, Math.round(parseInt(document.getElementById('reddot-value').textContent) * sensitivityBoost));
355
+
356
+ // Enable aggressive aim assist by default
357
+ document.querySelectorAll('select')[1].value = 'Aggressive';
358
+
359
+ // Set optimal recoil control for headshots
360
+ document.querySelectorAll('select')[0].value = 'High';
361
+
362
+ console.log('Headshot targeting enhanced!');
363
+ }
364
+
365
+ // Auto headshot optimization when auto-apply is enabled
366
+ const toggle = document.getElementById('auto-apply');
367
+ toggle.addEventListener('change', function() {
368
+ if(this.checked) {
369
+ enhanceHeadshotTargeting();
370
+ console.log('Auto Apply enabled - Headshot mode activated');
371
+ } else {
372
+ console.log('Auto Apply disabled');
373
+ }
374
+ });
375
+
376
+ // Apply headshot optimization on weapon select
377
+ weaponSelectors.forEach(selector => {
378
+ selector.addEventListener('click', function() {
379
+ if(toggle.checked) {
380
+ enhanceHeadshotTargeting();
381
+ }
382
+ });
383
+ });
384
+ </script>
385
+ <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=Pankajpegu07/aggressive" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
386
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Make the aimassite logic more aggressive and powerful and Target the head more accurately