Administrators Piacetto. Posted February 1 Administrators Share Posted February 1 Counter-Strike 1.6 - MOTD Window × Admins Online - ELITE.CSTRIKE.RO Nume Admin Grad Serviciu Status PIACETTO Fondator Online Alphasaur Administrator Offline Player_Helper Moderator Online Design by Piacetto Security Solutions OK WEB ENGINE Script: Piacetto /admins MOTD (Full Source) Release v1.0 Mai jos aveți codul sursă complet pentru pagina de admini. Copiați tot conținutul de mai jos, salvați-l ca admins.php și urcați-l pe host-ul vostru. <?php /* * Piacetto MOTD System - Admin List * Design: Modern Dark / Gold */ $server_name = "ELITE.CSTRIKE.RO"; // Numele serverului tau // Configurare Admini $admins = [ ["name" => "PIACETTO", "rank" => "Fondator", "status" => "Online"], ["name" => "Alphasaur", "rank" => "Administrator", "status" => "Offline"], ["name" => "Player_1", "rank" => "Helper", "status" => "Online"] ]; ?> <!DOCTYPE html> <html> <head> <style> body { background: #0b0b0b; color: #ccc; font-family: 'Segoe UI', sans-serif; margin: 0; padding: 20px; } .container { border: 1px solid #222; border-top: 3px solid #d4af37; border-radius: 5px; background: #111; padding: 15px; } h2 { color: #fff; text-align: center; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; } table { width: 100%; border-collapse: collapse; margin-top: 10px; } th { background: #d4af37; color: #000; padding: 10px; font-size: 12px; text-transform: uppercase; } td { padding: 10px; border-bottom: 1px solid #222; text-align: center; font-size: 13px; } .online { color: #2ecc71; font-weight: bold; } .offline { color: #e74c3c; font-weight: bold; } .rank { color: #3498db; font-style: italic; } .footer { text-align: center; font-size: 10px; color: #444; margin-top: 15px; } </style> </head> <body> <div class="container"> <h2>Admins Online - <?php echo $server_name; ?></h2> <table> <tr> <th>Nume Admin</th> <th>Grad</th> <th>Status</th> </tr> <?php foreach($admins as $admin): ?> <tr> <td style="color: #fff; font-weight: bold;"><?php echo $admin['name']; ?></td> <td class="rank"><?php echo $admin['rank']; ?></td> <td class="<?php echo strtolower($admin['status']); ?>"><?php echo $admin['status']; ?></td> </tr> <?php endforeach; ?> </table> <div class="footer">Powered by Piacetto Security Solutions</div> </div> </body> </html> Sfat: Pentru a modifica lista de admini, editați array-ul "$admins" din partea de sus a fișierului. Release by PIACETTO # FONDATOR Quote F PIACETTO # HEAD FONDATOR SINCE 2025 IP: 217.156.22.37:27015 ELITECSTRIKE.RO MS CS16.VIP GAZDUIRE & BOOST WWW.MS-CS16.VIP Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.