Spaces:
Running
Running
File size: 17,329 Bytes
2138eac | 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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FF MAX Aimbot Control Panel</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.pulse-animation {
animation: pulse 2s infinite;
}
.glow-text {
text-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}
.toggle-switch {
position: relative;
display: inline-block;
width: 60px;
height: 30px;
}
.toggle-switch input {
opacity: 0;
width: 0;
height: 0;
}
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
transition: .4s;
border-radius: 34px;
}
.slider:before {
position: absolute;
content: "";
height: 22px;
width: 22px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #3B82F6;
}
input:checked + .slider:before {
transform: translateX(30px);
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen flex items-center justify-center p-4">
<div class="w-full max-w-4xl bg-gray-800 rounded-2xl shadow-2xl overflow-hidden">
<!-- Header -->
<div class="bg-gradient-to-r from-blue-600 to-green-500 p-6 flex items-center justify-between">
<div class="flex items-center">
<i class="fas fa-crosshairs text-3xl mr-3"></i>
<h1 class="text-2xl font-bold glow-text">FF MAX AIMBOT CONTROL</h1>
</div>
<div class="flex items-center space-x-3">
<span class="text-sm bg-black bg-opacity-30 px-3 py-1 rounded-full flex items-center">
<span class="w-2 h-2 bg-green-400 rounded-full mr-2 pulse-animation"></span>
Connected
</span>
<span class="text-sm bg-black bg-opacity-30 px-3 py-1 rounded-full">v2.4.1</span>
</div>
</div>
<!-- Main Content -->
<div class="p-6 grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Left Column -->
<div class="space-y-6">
<!-- Aimbot Status -->
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-5 border border-gray-600">
<h2 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-bullseye mr-2 text-blue-400"></i>
Aimbot Status
</h2>
<div class="grid grid-cols-2 gap-4">
<div class="bg-gray-800 rounded-lg p-3 flex items-center justify-between">
<span>Auto Aim</span>
<label class="toggle-switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="bg-gray-800 rounded-lg p-3 flex items-center justify-between">
<span>Lock Head</span>
<label class="toggle-switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="bg-gray-800 rounded-lg p-3 flex items-center justify-between">
<span>No Recoil</span>
<label class="toggle-switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="bg-gray-800 rounded-lg p-3 flex items-center justify-between">
<span>Bullet Curve</span>
<label class="toggle-switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
</div>
</div>
<!-- Target Selection -->
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-5 border border-gray-600">
<h2 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-user-circle mr-2 text-green-400"></i>
Target Selection
</h2>
<div class="flex flex-wrap gap-2 mb-4">
<button class="px-3 py-1 bg-blue-600 hover:bg-blue-700 rounded-full text-sm">Nearest</button>
<button class="px-3 py-1 bg-gray-600 hover:bg-gray-700 rounded-full text-sm">Most HP</button>
<button class="px-3 py-1 bg-gray-600 hover:bg-gray-700 rounded-full text-sm">Highest Rank</button>
<button class="px-3 py-1 bg-gray-600 hover:bg-gray-700 rounded-full text-sm">Weaker</button>
</div>
<div class="space-y-3">
<div class="flex items-center justify-between">
<span>Head Lock Strength</span>
<div class="flex items-center">
<input type="range" min="1" max="10" value="8" class="w-32 mr-2">
<span class="text-blue-400 font-bold">8/10</span>
</div>
</div>
<div class="flex items-center justify-between">
<span>Rotation Speed</span>
<div class="flex items-center">
<input type="range" min="1" max="10" value="6" class="w-32 mr-2">
<span class="text-blue-400 font-bold">6/10</span>
</div>
</div>
<div class="flex items-center justify-between">
<span>Field of View</span>
<div class="flex items-center">
<input type="range" min="1" max="10" value="5" class="w-32 mr-2">
<span class="text-blue-400 font-bold">5/10</span>
</div>
</div>
</div>
</div>
</div>
<!-- Right Column -->
<div class="space-y-6">
<!-- Weapons Configuration -->
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-5 border border-gray-600">
<h2 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-gun mr-2 text-yellow-400"></i>
Weapon Configuration
</h2>
<div class="mb-4">
<div class="flex justify-between mb-2">
<span>AR/SMG</span>
<span class="text-sm text-gray-300">Main Weapons</span>
</div>
<div class="flex items-center justify-between mb-3">
<span class="text-sm">Hit Accuracy</span>
<div class="w-32 bg-gray-600 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 95%"></div>
</div>
</div>
<div class="flex items-center justify-between mb-3">
<span class="text-sm">Recoil Control</span>
<div class="w-32 bg-gray-600 rounded-full h-2">
<div class="bg-blue-500 h-2 rounded-full" style="width: 90%"></div>
</div>
</div>
<div class="flex items-center justify-between">
<span class="text-sm">Fire Rate</span>
<div class="w-32 bg-gray-600 rounded-full h-2">
<div class="bg-purple-500 h-2 rounded-full" style="width: 85%"></div>
</div>
</div>
</div>
<div class="mt-5">
<div class="flex justify-between mb-2">
<span>Sniper</span>
<span class="text-sm text-gray-300">Long Range</span>
</div>
<div class="space-y-3">
<div class="flex items-center justify-between">
<span class="text-sm">Auto Scope</span>
<label class="toggle-switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
<div class="flex items-center justify-between">
<span class="text-sm">Trigger Bot</span>
<label class="toggle-switch">
<input type="checkbox">
<span class="slider"></span>
</label>
</div>
<div class="flex items-center justify-between">
<span class="text-sm">Bullet Prediction</span>
<label class="toggle-switch">
<input type="checkbox" checked>
<span class="slider"></span>
</label>
</div>
</div>
</div>
</div>
<!-- Hotkeys -->
<div class="bg-gray-700 bg-opacity-50 rounded-xl p-5 border border-gray-600">
<h2 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-keyboard mr-2 text-red-400"></i>
Hotkey Configuration
</h2>
<div class="grid grid-cols-2 gap-3">
<div class="bg-gray-800 rounded-lg p-3">
<div class="text-sm text-gray-400">Toggle Aimbot</div>
<div class="font-mono text-lg mt-1 bg-gray-900 rounded px-2 py-1 inline-block">F1</div>
</div>
<div class="bg-gray-800 rounded-lg p-3">
<div class="text-sm text-gray-400">Quick Switch</div>
<div class="font-mono text-lg mt-1 bg-gray-900 rounded px-2 py-1 inline-block">ALT+Q</div>
</div>
<div class="bg-gray-800 rounded-lg p-3">
<div class="text-sm text-gray-400">Panic Mode</div>
<div class="font-mono text-lg mt-1 bg-gray-900 rounded px-2 py-1 inline-block">F12</div>
</div>
<div class="bg-gray-800 rounded-lg p-3">
<div class="text-sm text-gray-400">Force Headshot</div>
<div class="font-mono text-lg mt-1 bg-gray-900 rounded px-2 py-1 inline-block">Mouse4</div>
</div>
</div>
</div>
<!-- Stats -->
<div class="bg-gradient-to-r from-purple-900 to-blue-900 rounded-xl p-5">
<h2 class="text-lg font-semibold mb-3 flex items-center">
<i class="fas fa-chart-line mr-2"></i>
Performance Stats
</h2>
<div class="grid grid-cols-3 gap-4 text-center">
<div>
<div class="text-3xl font-bold text-green-400">98%</div>
<div class="text-xs text-gray-300">Headshot Rate</div>
</div>
<div>
<div class="text-3xl font-bold text-blue-400">0.12s</div>
<div class="text-xs text-gray-300">Average Lock</div>
</div>
<div>
<div class="text-3xl font-bold text-yellow-400">27</div>
<div class="text-xs text-gray-300">Kills Today</div>
</div>
</div>
<button class="w-full mt-4 bg-green-700 hover:bg-green-600 py-2 rounded-lg font-semibold flex items-center justify-center">
<i class="fas fa-rocket mr-2"></i>
OPTIMIZE PERFORMANCE
</button>
</div>
</div>
</div>
<!-- Footer -->
<div class="bg-gray-900 bg-opacity-70 p-4 flex items-center justify-between text-xs text-gray-400">
<div class="flex items-center space-x-4">
<span class="flex items-center">
<i class="fas fa-shield-alt mr-1"></i>
Undetected
</span>
<span class="flex items-center">
<i class="fas fa-bolt mr-1"></i>
Low CPU Usage
</span>
</div>
<div class="text-right">
<div>Game Status: <span class="text-green-400">Running</span></div>
<div>Last Update: 2 minutes ago</div>
</div>
</div>
</div>
<script>
// Toggle all switches when clicking on their labels
document.querySelectorAll('.toggle-switch input').forEach(switchInput => {
switchInput.addEventListener('change', function() {
const slider = this.nextElementSibling;
if(this.checked) {
slider.style.backgroundColor = '#3B82F6';
} else {
slider.style.backgroundColor = '#ccc';
}
});
});
// Update range value displays
document.querySelectorAll('input[type="range"]').forEach(rangeInput => {
const valueDisplay = rangeInput.nextElementSibling;
rangeInput.addEventListener('input', function() {
valueDisplay.textContent = `${this.value}/10`;
});
});
// Optimize button effect
document.querySelector('button.bg-green-700').addEventListener('click', function() {
this.innerHTML = '<i class="fas fa-cog fa-spin mr-2"></i> OPTIMIZING...';
setTimeout(() => {
this.innerHTML = '<i class="fas fa-check-circle mr-2"></i> OPTIMIZATION COMPLETE';
this.classList.remove('bg-green-700', 'hover:bg-green-600');
this.classList.add('bg-blue-600', 'hover:bg-blue-500');
// Update performance stats
document.querySelector('.text-green-400').textContent = '100%';
document.querySelector('.text-blue-400').textContent = '0.08s';
setTimeout(() => {
this.innerHTML = '<i class="fas fa-rocket mr-2"></i> OPTIMIZE PERFORMANCE';
this.classList.remove('bg-blue-600', 'hover:bg-blue-500');
this.classList.add('bg-green-700', 'hover:bg-green-600');
}, 2000);
}, 1500);
});
</script>
<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/bom" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |