File size: 23,824 Bytes
b40f7e3 | 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 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game Enhancement 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>
.glow-effect {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.7);
}
.switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
.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: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
transition: .4s;
border-radius: 50%;
}
input:checked + .slider {
background-color: #3B82F6;
}
input:checked + .slider:before {
transform: translateX(26px);
}
.range-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
background: #3B82F6;
cursor: pointer;
border-radius: 50%;
}
.range-slider::-moz-range-thumb {
width: 20px;
height: 20px;
background: #3B82F6;
cursor: pointer;
border-radius: 50%;
}
.connection-status {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 1; }
50% { opacity: 0.5; }
100% { opacity: 1; }
}
</style>
</head>
<body class="bg-gray-900 text-white min-h-screen">
<div class="container mx-auto px-4 py-8">
<!-- Header -->
<header class="flex flex-col md:flex-row justify-between items-center mb-8">
<div class="flex items-center mb-4 md:mb-0">
<div class="bg-blue-500 p-3 rounded-full mr-4">
<i class="fas fa-gamepad text-2xl"></i>
</div>
<div>
<h1 class="text-2xl font-bold">Game Enhancement Control</h1>
<p class="text-gray-400">Advanced settings for competitive gaming</p>
</div>
</div>
<div class="flex items-center space-x-4">
<div class="flex items-center">
<div class="h-3 w-3 rounded-full bg-green-500 mr-2 connection-status"></div>
<span id="connectionStatus">Connected</span>
</div>
<div class="bg-gray-800 px-4 py-2 rounded-lg">
<span id="deviceInfo">Root: Active</span>
</div>
</div>
</header>
<!-- Main Content -->
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
<!-- Left Column - Main Controls -->
<div class="lg:col-span-2 space-y-6">
<!-- Aim Assist Section -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-semibold flex items-center">
<i class="fas fa-crosshairs mr-2 text-blue-400"></i>
Aim Assist
</h2>
<label class="switch">
<input type="checkbox" id="aimAssistToggle" checked>
<span class="slider"></span>
</label>
</div>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-2">
<label for="aimLock" class="text-gray-300">Aim Lock Strength</label>
<span id="aimLockValue" class="font-mono">75%</span>
</div>
<input type="range" id="aimLock" min="0" max="100" value="75" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
<div>
<div class="flex justify-between mb-2">
<label for="headshotRate" class="text-gray-300">Headshot Probability</label>
<span id="headshotRateValue" class="font-mono">60%</span>
</div>
<input type="range" id="headshotRate" min="0" max="100" value="60" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
<div>
<div class="flex justify-between mb-2">
<label for="prediction" class="text-gray-300">Movement Prediction</label>
<span id="predictionValue" class="font-mono">45%</span>
</div>
<input type="range" id="prediction" min="0" max="100" value="45" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
</div>
</div>
<!-- Recoil Control Section -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-semibold flex items-center">
<i class="fas fa-arrow-up mr-2 text-red-400"></i>
Recoil Control
</h2>
<label class="switch">
<input type="checkbox" id="recoilControlToggle" checked>
<span class="slider"></span>
</label>
</div>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-2">
<label for="recoilReduction" class="text-gray-300">Recoil Reduction</label>
<span id="recoilReductionValue" class="font-mono">85%</span>
</div>
<input type="range" id="recoilReduction" min="0" max="100" value="85" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
<div>
<div class="flex justify-between mb-2">
<label for="recoilPattern" class="text-gray-300">Pattern Learning</label>
<span id="recoilPatternValue" class="font-mono">70%</span>
</div>
<input type="range" id="recoilPattern" min="0" max="100" value="70" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
</div>
</div>
<!-- Sensitivity Section -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<div class="flex justify-between items-center mb-4">
<h2 class="text-xl font-semibold flex items-center">
<i class="fas fa-bullseye mr-2 text-yellow-400"></i>
Sensitivity & Controls
</h2>
<label class="switch">
<input type="checkbox" id="sensitivityToggle" checked>
<span class="slider"></span>
</label>
</div>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-2">
<label for="touchSensitivity" class="text-gray-300">Touch Sensitivity</label>
<span id="touchSensitivityValue" class="font-mono">120%</span>
</div>
<input type="range" id="touchSensitivity" min="50" max="200" value="120" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
<div>
<div class="flex justify-between mb-2">
<label for="gyroSensitivity" class="text-gray-300">Gyroscope Sensitivity</label>
<span id="gyroSensitivityValue" class="font-mono">65%</span>
</div>
<input type="range" id="gyroSensitivity" min="0" max="150" value="65" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
</div>
<div>
<div class="flex justify-between mb-2">
<label for="touchResponse" class="text-gray-300">Touch Response Time</label>
<span id="touchResponseValue" class="font-mono">Fast</span>
</div>
<input type="range" id="touchResponse" min="1" max="5" value="2" class="w-full h-2 bg-gray-700 rounded-lg appearance-none cursor-pointer range-slider">
<div class="flex justify-between text-xs text-gray-400 mt-1">
<span>Slow</span>
<span>Normal</span>
<span>Fast</span>
<span>Ultra</span>
<span>Instant</span>
</div>
</div>
</div>
</div>
</div>
<!-- Right Column - Status and Advanced -->
<div class="space-y-6">
<!-- Connection Status -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-xl font-semibold mb-4 flex items-center">
<i class="fas fa-plug mr-2 text-green-400"></i>
Connection Status
</h2>
<div class="space-y-3">
<div class="flex justify-between">
<span class="text-gray-300">Service Status:</span>
<span class="text-green-400 font-medium">Running</span>
</div>
<div class="flex justify-between">
<span class="text-gray-300">Latency:</span>
<span class="text-blue-400 font-mono">28ms</span>
</div>
<div class="flex justify-between">
<span class="text-gray-300">Last Update:</span>
<span class="text-gray-400">0.2s ago</span>
</div>
<div class="flex justify-between">
<span class="text-gray-300">Data Rate:</span>
<span class="text-gray-400">12.4 KB/s</span>
</div>
</div>
<div class="mt-4 pt-4 border-t border-gray-700">
<button id="refreshConnection" class="w-full bg-blue-600 hover:bg-blue-700 text-white py-2 px-4 rounded-lg flex items-center justify-center">
<i class="fas fa-sync-alt mr-2"></i>
Refresh Connection
</button>
</div>
</div>
<!-- Advanced Settings -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-xl font-semibold mb-4 flex items-center">
<i class="fas fa-cogs mr-2 text-purple-400"></i>
Advanced Settings
</h2>
<div class="space-y-4">
<div class="flex items-center justify-between">
<div>
<label for="kernelMode" class="text-gray-300">Kernel-Level Injection</label>
<p class="text-xs text-gray-500">Requires root access</p>
</div>
<label class="switch">
<input type="checkbox" id="kernelMode" checked>
<span class="slider"></span>
</label>
</div>
<div class="flex items-center justify-between">
<div>
<label for="mlDetection" class="text-gray-300">ML Target Detection</label>
<p class="text-xs text-gray-500">TensorFlow Lite model</p>
</div>
<label class="switch">
<input type="checkbox" id="mlDetection" checked>
<span class="slider"></span>
</label>
</div>
<div class="flex items-center justify-between">
<div>
<label for="performanceMode" class="text-gray-300">Performance Mode</label>
<p class="text-xs text-gray-500">Prioritize FPS over battery</p>
</div>
<label class="switch">
<input type="checkbox" id="performanceMode">
<span class="slider"></span>
</label>
</div>
<div>
<label for="targetRegion" class="block text-gray-300 mb-2">Target Detection Region</label>
<select id="targetRegion" class="w-full bg-gray-700 border border-gray-600 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500">
<option value="center">Center Screen (Fast)</option>
<option value="wide">Wide Area (Balanced)</option>
<option value="full">Full Screen (Slow)</option>
</select>
</div>
</div>
</div>
<!-- Quick Actions -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-xl font-semibold mb-4 flex items-center">
<i class="fas fa-bolt mr-2 text-yellow-400"></i>
Quick Actions
</h2>
<div class="grid grid-cols-2 gap-3">
<button class="bg-blue-600 hover:bg-blue-700 text-white py-2 px-3 rounded-lg flex items-center justify-center text-sm">
<i class="fas fa-save mr-1"></i>
Save Profile
</button>
<button class="bg-gray-600 hover:bg-gray-700 text-white py-2 px-3 rounded-lg flex items-center justify-center text-sm">
<i class="fas fa-folder-open mr-1"></i>
Load Profile
</button>
<button class="bg-green-600 hover:bg-green-700 text-white py-2 px-3 rounded-lg flex items-center justify-center text-sm">
<i class="fas fa-play mr-1"></i>
Start Service
</button>
<button class="bg-red-600 hover:bg-red-700 text-white py-2 px-3 rounded-lg flex items-center justify-center text-sm">
<i class="fas fa-stop mr-1"></i>
Stop Service
</button>
</div>
</div>
<!-- Status Indicators -->
<div class="bg-gray-800 rounded-xl p-6 shadow-lg">
<h2 class="text-xl font-semibold mb-4 flex items-center">
<i class="fas fa-chart-bar mr-2 text-blue-400"></i>
System Status
</h2>
<div class="space-y-3">
<div>
<div class="flex justify-between mb-1">
<span class="text-gray-300">CPU Usage</span>
<span class="text-gray-400">12%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-blue-500 h-2 rounded-full" style="width: 12%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-gray-300">Memory Usage</span>
<span class="text-gray-400">256MB</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-purple-500 h-2 rounded-full" style="width: 42%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="text-gray-300">FPS Boost</span>
<span class="text-gray-400">+18%</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2">
<div class="bg-green-500 h-2 rounded-full" style="width: 18%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-12 pt-6 border-t border-gray-800 text-center text-gray-400 text-sm">
<p>Game Enhancement Control Panel v1.2.0</p>
<p class="mt-1">For educational purposes only. Use responsibly.</p>
<div class="flex justify-center space-x-4 mt-4">
<a href="#" class="hover:text-blue-400"><i class="fas fa-book"></i> Documentation</a>
<a href="#" class="hover:text-blue-400"><i class="fas fa-cog"></i> Settings</a>
<a href="#" class="hover:text-blue-400"><i class="fas fa-question-circle"></i> Help</a>
</div>
</footer>
</div>
<script>
// Update slider values in real-time
document.querySelectorAll('input[type="range"]').forEach(slider => {
const valueSpan = document.getElementById(`${slider.id}Value`);
slider.addEventListener('input', () => {
if (slider.id === 'touchResponse') {
const values = ['Slow', 'Normal', 'Fast', 'Ultra', 'Instant'];
valueSpan.textContent = values[slider.value - 1];
} else {
valueSpan.textContent = `${slider.value}%`;
}
// Send update to backend
updateSetting(slider.id, slider.value);
});
});
// Toggle switches
document.querySelectorAll('input[type="checkbox"]').forEach(toggle => {
toggle.addEventListener('change', () => {
updateSetting(toggle.id, toggle.checked);
// Add glow effect when toggled
const parentDiv = toggle.closest('.bg-gray-800');
parentDiv.classList.add('glow-effect');
setTimeout(() => {
parentDiv.classList.remove('glow-effect');
}, 1000);
});
});
// Select dropdown
document.getElementById('targetRegion').addEventListener('change', function() {
updateSetting('targetRegion', this.value);
});
// Quick action buttons
document.getElementById('refreshConnection').addEventListener('click', function() {
// Simulate connection refresh
const status = document.getElementById('connectionStatus');
const indicator = document.querySelector('.connection-status');
status.textContent = "Refreshing...";
indicator.classList.remove('bg-green-500');
indicator.classList.add('bg-yellow-500');
setTimeout(() => {
status.textContent = "Connected";
indicator.classList.remove('bg-yellow-500');
indicator.classList.add('bg-green-500');
}, 1500);
});
// Simulate WebSocket connection
function updateSetting(setting, value) {
// In a real implementation, this would send data to the backend
console.log(`Setting updated: ${setting} = ${value}`);
// Simulate response from server
const status = document.getElementById('connectionStatus');
status.textContent = "Updating...";
setTimeout(() => {
status.textContent = "Connected";
}, 500);
}
// Initialize tooltips (would need a proper library for real implementation)
document.querySelectorAll('[data-tooltip]').forEach(el => {
el.addEventListener('mouseenter', () => {
// Tooltip implementation would go here
});
});
</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=Pnkj01/ruuut" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |