Jump to content

eDom

Super-Moderators
  • Posts

    80
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by eDom

  1. eDom

    akm debanare

    există un model după care trebuie făcută cerere de unban te rog să modifici postarea și să actualizezi link-ul mie îmi dă eroare 404 când deschid
  2. /* Animație explozie lavă */ @keyframes lavaBlast { 0% { transform: translate(-50%, -50%) scale(0.3); opacity: 1; box-shadow: 0 0 15px #ffe600, inset 0 0 10px #ff4500; } 50% { opacity: 0.8; } 100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; box-shadow: 0 0 30px #ff1a00, inset 0 0 15px #8b0000; } } /* Animație efect de înflorire verde (Green Bloom) */ @keyframes greenBloom { 0% { box-shadow: 0 0 8px rgba(46, 204, 113, 0.4), 0 0 0 0px rgba(46, 204, 113, 0.7); } 50% { box-shadow: 0 0 18px rgba(46, 204, 113, 0.9), 0 0 10px 4px rgba(46, 204, 113, 0.4); } 100% { box-shadow: 0 0 8px rgba(46, 204, 113, 0.4), 0 0 0 8px rgba(46, 204, 113, 0); } } /* Animație rotire titirez pentru textul ORIGIN */ @keyframes spinText { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .lava-pulse { position: absolute !important; top: 50% !important; left: 50% !important; width: 100px !important; height: 100px !important; border-radius: 50% !important; border: 2px solid #ff4500 !important; pointer-events: none !important; z-index: 2 !important; } .p1 { animation: lavaBlast 2.2s infinite linear !important; } .p2 { animation: lavaBlast 2.2s infinite linear 0.7s !important; } .p3 { animation: lavaBlast 2.2s infinite linear 1.4s !important; } .pulse-btn { transition: transform 0.2s ease, box-shadow 0.2s ease !important; } .pulse-btn:hover { transform: scale(1.08) !important; } .green-bloom-btn { animation: greenBloom 2s infinite ease-in-out !important; } .center-btn:hover { transform: translate(-50%, -50%) scale(1.06) !important; } .spinning-text { display: inline-block !important; animation: spinText 3s infinite linear !important; } /* Stiluri Butoane de Vot */ .vote-btn-red { display: block; flex: 1; padding: 10px 6px; background: linear-gradient(135deg, #ff2a2a 0%, #b30000 100%); border-radius: 20px; color: #ffffff !important; text-decoration: none !important; font-weight: 900; font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 0 12px rgba(255, 42, 42, 0.5); transition: all 0.2s ease-in-out; text-align: center; white-space: nowrap; } .vote-btn-purple { display: block; flex: 1; padding: 10px 6px; background: linear-gradient(135deg, #9b51e0 0%, #6100c1 100%); border-radius: 20px; color: #ffffff !important; text-decoration: none !important; font-weight: 900; font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 0 12px rgba(155, 81, 224, 0.5); transition: all 0.2s ease-in-out; text-align: center; white-space: nowrap; } .vote-btn-red:hover, .vote-btn-purple:hover { transform: translateY(-2px) scale(1.03); filter: brightness(1.2); } Steam Owner 💬 WhatsApp 🚀 Play CS 1.6 TS3 Server GHID ADMINI CERERI RECLAMAȚII TEAM STAFF ELITE VOTEAZĂ GAMESTRACKER VOTEAZĂ UNIKOV
  3. @keyframes neonGlow { 0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), inset 0 0 15px rgba(0, 212, 255, 0.2); border-color: #00d4ff; } 50% { box-shadow: 0 0 25px rgba(0, 150, 255, 0.7), inset 0 0 20px rgba(0, 150, 255, 0.4); border-color: #0088ff; } } @keyframes digitalRain { 0% { transform: translateY(-100%); opacity: 0; } 50% { opacity: 0.8; } 100% { transform: translateY(600px); opacity: 0; } } .rules-wrapper { max-width: 950px; font-family: 'Segoe UI', Roboto, sans-serif; margin: 15px auto; color: #ffffff; } .pages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; } .rules-page { background: radial-gradient(circle at top, #0d1b2a, #050a14); border: 1.5px solid #00d4ff; border-radius: 14px; padding: 20px; text-align: left; position: relative; overflow: hidden; max-height: 720px; display: flex; flex-direction: column; animation: neonGlow 4s infinite ease-in-out; box-sizing: border-box; } .rain-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: hidden; } .drop { position: absolute; top: -20px; width: 1.5px; height: 25px; background: linear-gradient(180deg, transparent, #00d4ff); animation: digitalRain 2.5s infinite linear; opacity: 0.5; } .page-content { position: relative; z-index: 2; overflow-y: auto; padding-right: 6px; } .page-content::-webkit-scrollbar { width: 5px; } .page-content::-webkit-scrollbar-thumb { background: #00d4ff; border-radius: 4px; } .page-content::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.3); } .lang-btn-container { text-align: center; margin-bottom: 14px; position: relative; z-index: 2; } .lang-btn { display: inline-block; background: rgba(0, 212, 255, 0.15); border: 1px solid #00d4ff; color: #00d4ff; font-size: 11px; font-weight: 800; padding: 6px 18px; border-radius: 20px; letter-spacing: 1.5px; text-transform: uppercase; box-shadow: 0 0 10px rgba(0, 212, 255, 0.2); } .warning-box { background: rgba(255, 51, 51, 0.15); border: 1px solid #ff3333; border-radius: 8px; padding: 10px; margin-bottom: 12px; font-size: 11px; color: #ff9999; line-height: 1.4; } .reminder-box { background: rgba(255, 170, 0, 0.12); border: 1px solid #ffaa00; border-radius: 8px; padding: 10px; margin-top: 15px; font-size: 11px; color: #ffdd99; line-height: 1.4; text-align: center; } .section-header-book { background: linear-gradient(90deg, rgba(255, 85, 0, 0.25), transparent); border-left: 4px solid #ff5500; padding: 6px 10px; margin: 15px 0 10px 0; font-weight: 800; font-size: 13px; color: #ffaa00; text-transform: uppercase; letter-spacing: 1px; } .rule-item-book { background: rgba(0, 212, 255, 0.03); border-left: 3px solid #00d4ff; padding: 8px 10px; margin-bottom: 8px; border-radius: 0 6px 6px 0; font-size: 11px; line-height: 1.4; color: #d1e8ff; } .rule-item-book strong { color: #fff; } .command-syntax { color: #00d4ff; font-weight: 700; font-family: monospace; } .tip-box { color: #ffaa00; font-weight: 600; font-size: 10px; margin-top: 3px; display: block; } @media (max-width: 700px) { .pages-grid { grid-template-columns: 1fr; } .rules-page { max-height: 500px; } } 🇹🇩 ROMÂNĂ — GHID ADMINI ⚠️ ATENȚIE MĂRITĂ: Folosiți ÎNTOTDEAUNA GHILIMELE " " la nume și motiv în consolă! Dacă numele conține spații, simboluri sau cifre și nu puneți ghilimele, comanda NU va funcționa sau va executa acțiunea pe alt jucător. 🛠️ Meniuri Utile Meniu Principal Admin: amxmodmenu Deschide interfața vizuală completă de administrare. Meniu Gag: amx_gagmenu Afișează lista cu jucătorii pentru a le opri rapid chatul. Meniu Kick: amx_kickmenu 💡 Recomandat dacă există mai mulți jucători cu nume similare, caractere speciale sau spații. Meniu Ban: amx_banmenu ⚠️ ATENȚIE: Permis EXCLUSIV gradului Recruit! Cei cu grade mai mari NU au voie să îl folosească. Meniu Echipa / Spectate: amx_teammenu / amx_spectate Mută jucătorii la Spectatori pentru verificări. ⚡ Comenzi Consolă (Cu Ghilimele) 1. GAG (Reducere la tăcere): Sintaxă: amx_gag "<nume>" <minute> "<motiv>" Exemplu: amx_gag "Popescu" 10 "limbaj" 2. UNGAG: Sintaxă: amx_ungag "<nume>" Exemplu: amx_ungag "Popescu" 3. KICK (Deconectare): Sintaxă: amx_kick "<nume>" "<motiv>" Exemplu: amx_kick "Nume Cu Spatiu" "afk" 💡 Dacă numele este greu de scris, folosiți direct amx_kickmenu. 4. BAN PERMANENT / TEMPORAR: Sintaxă: amx_ban "<nume>" <minute> "<motiv>" Exemplu: amx_ban "Gogu CS" 0 "wallhack" (0 = Permanent) 💡 Gradele superioare folosesc comanda directă din consolă (amx_ban). Doar Recruit folosește amx_banmenu! 5. VOTE MAP (Votare Hartă): Sintaxă: amx_votemap "<harta1>" "<harta2>" Exemplu: amx_votemap "de_dust2" "de_inferno" 6. CHANGE MAP (Schimbare Directă): Sintaxă: amx_map "<nume_harta>" Exemplu: amx_map "de_dust2" 7. CHAT ADMIN: Sintaxă: amx_say "<mesaj>" (Chat public admin) Sintaxă: amx_psay "<nume>" "<mesaj>" (Mesaj privat) 📢 REMINDER IMPORTANT: Această postare va primi actualizări constant pentru a veni în ajutorul adminilor noi și este OBLIGATORIU de citit de către toți membrii staff-ului! 📌 Folosiți comenzile cu responsabilitate și respectați regulamentul! 🇬🇧 ENGLISH — ADMIN GUIDE ⚠️ IMPORTANT NOTICE: ALWAYS USE QUOTES " " for names and reasons in the console! If a name contains spaces, symbols, or numbers without quotes, the command will FAIL or target the wrong player. 🛠️ Useful Menus Main Admin Menu: amxmodmenu Opens the full graphical administration menu. Gag Menu: amx_gagmenu Displays player list to quickly mute chat/voice. Kick Menu: amx_kickmenu 💡 Recommended if multiple players have similar names or special characters. Ban Menu: amx_banmenu ⚠️ WARNING: Allowed EXCLUSIVELY for the Recruit rank! Higher ranks are NOT allowed to use it. Team / Spectate Menu: amx_teammenu / amx_spectate Moves players to Spectators for checks. ⚡ Console Commands (Use Quotes) 1. GAG (Mute player): Syntax: amx_gag "<name>" <minutes> "<reason>" Example: amx_gag "Player" 10 "insult" 2. UNGAG: Syntax: amx_ungag "<name>" Example: amx_ungag "Player" 3. KICK (Disconnect): Syntax: amx_kick "<name>" "<reason>" Example: amx_kick "Name With Space" "afk" 💡 If the name is difficult to type, use amx_kickmenu instead. 4. PERMANENT / TEMP BAN: Syntax: amx_ban "<name>" <minutes> "<reason>" Example: amx_ban "Player CS" 0 "wallhack" (0 = Permanent) 💡 Higher ranks must execute console commands directly (amx_ban). Only Recruit uses amx_banmenu! 5. VOTE MAP: Syntax: amx_votemap "<map1>" "<map2>" Example: amx_votemap "de_dust2" "de_inferno" 6. CHANGE MAP: Syntax: amx_map "<map_name>" Example: amx_map "de_dust2" 7. ADMIN CHAT: Syntax: amx_say "<message>" (Public admin chat) Syntax: amx_psay "<name>" "<message>" (Private message) 📢 IMPORTANT REMINDER: This post will receive constant updates to assist new admins and reading it is MANDATORY for all staff members! 📌 Use commands responsibly and obey the server rules!
  4. This post cannot be displayed because it is in a password protected forum. Enter Password
  5. This post cannot be displayed because it is in a password protected forum. Enter Password
  6. This post cannot be displayed because it is in a password protected forum. Enter Password
  7. This post cannot be displayed because it is in a password protected forum. Enter Password
  8. This post cannot be displayed because it is in a password protected forum. Enter Password
  9. .req-card { max-width: 520px; background: #0a1128; border: 1px solid #1c3166; border-radius: 12px; padding: 20px 24px; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; text-align: left; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 119, 255, 0.15); color: #ffffff; margin: 10px auto; } .req-header { border-bottom: 1px solid #1c3166; padding-bottom: 12px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; } .req-title { font-size: 16px; font-weight: 800; color: #0088ff; letter-spacing: 1.5px; text-transform: uppercase; margin: 0; } .req-tag { background: rgba(0, 136, 255, 0.15); border: 1px solid #0088ff; color: #ffffff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: 1px; } .req-field { margin-bottom: 14px; background: rgba(255, 255, 255, 0.02); border-left: 3px solid #0088ff; padding: 8px 12px; border-radius: 0 6px 6px 0; } .req-label { font-size: 11px; font-weight: 700; color: #0088ff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; display: block; } .req-value { font-size: 13px; color: #ffffff; font-weight: 500; line-height: 1.5; } .req-value-highlight { font-size: 14px; color: #ffffff; font-weight: 700; } .req-value-red { font-size: 14px; color: #ff3333; font-weight: 800; text-shadow: 0 0 8px rgba(255, 51, 51, 0.4); } Cerere Schimbare Nume Dual Gaming Nume actual Feuer Numele pe care îl doriți eDom Motivul pentru care doriți să îl schimbați Asta e nickname-ul meu de mult timp. Acum de curând am scris un cod în HTML și CSS cu nick Feuer și mi-a plăcut aspectul vizual de am zis că îl păstrez, dar nu mă atrage deloc. Prefer eDom că e mai simplu. Link de la ultima cerere Asta e prima
  10. This post cannot be displayed because it is in a password protected forum. Enter Password
  11. This post cannot be displayed because it is in a password protected forum. Enter Password
×
×
  • Create New...