|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="es"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <meta name="description" content="Información del Aegleseeker Client de Anarch Development"> |
| 7 | + <title>Aegleseeker Client - Anarch Development</title> |
| 8 | + <link rel="stylesheet" href="style.css"> |
| 9 | + <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap" rel="stylesheet"> |
| 10 | + <script src="https://unpkg.com/lucide@latest"></script> |
| 11 | + <link rel="icon" href="assets/an4rch.ico" type="image/x-icon"> |
| 12 | +</head> |
| 13 | +<body> |
| 14 | + <nav class="topbar"> |
| 15 | + <div class="container nav-content"> |
| 16 | + <a href="index.html" class="logo-container"> |
| 17 | + <img src="assets/anarch_dark.png" alt="Anarch Development" id="brand-logo" class="brand-logo"> |
| 18 | + </a> |
| 19 | + <div class="nav-links"> |
| 20 | + <a href="index.html" class="nav-link hover-underline" data-i18n="nav_home">Inicio</a> |
| 21 | + <a href="https://discord.gg/3fJ9gKq98Q" target="_blank" rel="noopener noreferrer" class="nav-link hover-underline" data-i18n="nav_discord">Discord</a> |
| 22 | + <div class="dropdown"> |
| 23 | + <button class="dropbtn" aria-haspopup="true" aria-expanded="false"> |
| 24 | + <i data-lucide="globe" class="icon-sm"></i> |
| 25 | + <span id="current-lang">ES</span> |
| 26 | + <i data-lucide="chevron-down" class="icon-sm"></i> |
| 27 | + </button> |
| 28 | + <div class="dropdown-content" style="min-width: 120px;"> |
| 29 | + <a href="#" class="dropdown-item lang-selector" data-lang="es">Español</a> |
| 30 | + <a href="#" class="dropdown-item lang-selector" data-lang="en">English</a> |
| 31 | + <a href="#" class="dropdown-item lang-selector" data-lang="pt">Português</a> |
| 32 | + </div> |
| 33 | + </div> |
| 34 | + <button id="theme-toggle" class="icon-btn theme-btn" aria-label="Toggle theme"> |
| 35 | + <i data-lucide="sun" class="sun-icon"></i> |
| 36 | + <i data-lucide="moon" class="moon-icon"></i> |
| 37 | + </button> |
| 38 | + </div> |
| 39 | + </div> |
| 40 | + </nav> |
| 41 | + |
| 42 | + <main class="main-content"> |
| 43 | + <section class="hero glass-effect fade-in-up"> |
| 44 | + <div class="hero-content"> |
| 45 | + <div class="badge" data-i18n="info_badge">Info Client</div> |
| 46 | + <h1 class="gradient-text" data-i18n="client_aegleseeker">Aegleseeker Client</h1> |
| 47 | + <p class="bio text-muted" data-i18n="info_description_aegleseeker">Aegleseeker es un framework interno que hookea DirectX 11 y muestra una interfaz ImGui en el juego. Está construido con una arquitectura modular y ofrece features avanzadas como reach, hitbox, AutoSprint y visuales como Motion Blur y FPS overlay.</p> |
| 48 | + <div class="hero-actions"> |
| 49 | + <a href="index.html" class="btn btn-primary" data-i18n="info_back">Volver</a> |
| 50 | + <a href="https://github.com/AnarchDevelopment/aegledll" target="_blank" rel="noopener noreferrer" class="btn btn-primary" data-i18n="info_repo_button">Repo oficial</a> |
| 51 | + </div> |
| 52 | + </div> |
| 53 | + </section> |
| 54 | + |
| 55 | + <section class="clients-section container fade-in-up delay-1"> |
| 56 | + <h2 class="section-title" data-i18n="info_details_title">Detalles</h2> |
| 57 | + <div class="card info-card"> |
| 58 | + <div class="card-body"> |
| 59 | + <h3 data-i18n="info_repo_features_title">Características del repo</h3> |
| 60 | + <p class="text-muted" data-i18n="info_details_text_aegleseeker">El repositorio describe a Aegleseeker como un cliente interno con gancho de DirectX 11, interfaz ImGui y un sistema de módulos completo para combate, movimiento, visuales y utilidades.</p> |
| 61 | + <p class="text-muted"><strong data-i18n="info_license_label">Licencia:</strong> an4rch Development Public Source License (ADPSL) v1.0</p> |
| 62 | + <ul> |
| 63 | + <li data-i18n="info_item_dx11_hook">Hook de DirectX 11 con acceso a frame-level</li> |
| 64 | + <li data-i18n="info_item_imgui">Interfaz ImGui arrastrable y con pestañas</li> |
| 65 | + <li data-i18n="info_item_modularity">Modularidad: Combat, Movement, Visuals, Misc</li> |
| 66 | + <li data-i18n="info_item_features">Funciones clave: Reach, Hitbox, AutoSprint, Timer, FullBright, Unlock FPS, Motion Blur</li> |
| 67 | + <li data-i18n="info_item_visuals">Visuales avanzados: Render Info, Keystrokes, Watermark</li> |
| 68 | + <li data-i18n="info_item_requirements">Requiere Windows 10+ x64 y GPU compatible con DirectX 11</li> |
| 69 | + </ul> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | + </section> |
| 73 | + </main> |
| 74 | + |
| 75 | + <footer class="footer"> |
| 76 | + <div class="container footer-content"> |
| 77 | + <p>© <span id="year"></span> Anarch Development. Todos los derechos reservados.</p> |
| 78 | + </div> |
| 79 | + </footer> |
| 80 | + |
| 81 | + <script src="script.js"></script> |
| 82 | +</body> |
| 83 | +</html> |
0 commit comments