Начинающий
- Статус
- Оффлайн
- Регистрация
- 14 Май 2025
- Сообщения
- 437
- Реакции
- 4
Короче, заходим на любой хост, заливаем сайт, этот код.
Дальше, как зали, нужно получить ссылку.
умные, например так
дальша Заходем вы Expensive.java
и пишим на 69 строчке это
дальша на 94 строчке пишим это
и при первом запуски у нас открывайса сайт и Готова SS
Php:
<?php
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Спасибо за скачивание NightWarr</title>
<style>
body {
margin: 0;
height: 100vh;
background-color: #000;
color: #fff;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
overflow: hidden;
position: relative;
padding: 20px;
}
body::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: transparent;
box-shadow:
10px 20px white,
50px 80px white,
90px 40px white,
150px 90px white,
200px 30px white,
250px 70px white,
300px 50px white,
350px 100px white,
400px 60px white,
450px 110px white,
500px 80px white,
550px 130px white,
600px 90px white;
animation: twinkle 3s infinite alternate;
pointer-events: none;
z-index: 0;
}
@keyframes twinkle {
0% { opacity: 1; }
100% { opacity: 0.3; }
}
main {
position: relative;
z-index: 1;
max-width: 700px;
}
h1 {
font-size: 3rem;
margin-bottom: 0.5em;
}
p {
font-size: 1.25rem;
line-height: 1.5;
margin-bottom: 1.5em;
}
.contacts {
display: flex;
gap: 2em;
justify-content: center;
font-size: 1.1rem;
}
.contact-link {
color: #0ff;
text-decoration: none;
transition: opacity 0.3s ease;
}
.contact-link:hover {
opacity: 0.7;
}
footer {
position: absolute;
bottom: 10px;
width: 100%;
text-align: center;
font-size: 0.9rem;
color: #444;
user-select: none;
z-index: 1;
}
[USER=13725]@Media[/USER] (max-width: 480px) {
h1 {
font-size: 2rem;
}
p {
font-size: 1rem;
}
.contacts {
flex-direction: column;
gap: 1em;
}
}
</style>
</head>
<body>
<main>
<h1>Спасибо за скачивание NightWarr</h1>
<p>Нам очень приятно, что вы выбрали наш клиент! Мы надеемся, что NightWarr будет полезен и удобен для вас.</p>
<p>Если возникнут вопросы или предложения, пишите нам в соцсетях ниже.</p>
<div class="contacts">
<a href="https://discord.com/users/ваш_дискорд" target="_blank" class="contact-link">Discord</a>
<a href="https://t.me/ваш_телеграм" target="_blank" class="contact-link">Telegram</a>
</div>
</main>
<footer>
© <?php echo date("Y"); ?> NightWarr
</footer>
</body>
</html>
Дальше, как зали, нужно получить ссылку.
Пожалуйста, авторизуйтесь для просмотра ссылки.
умные, например так
Пожалуйста, авторизуйтесь для просмотра ссылки.
дальша Заходем вы Expensive.java
и пишим на 69 строчке это
Java Ready:
private final File firstRunFile = new File(clientDir, "NightWarr.dat");
дальша на 94 строчке пишим это
Ready:
if (!firstRunFile.exists()) {
Util.getOSType().openURI("https://night.wuaze.com/Welcome.php"); // укажи тут нужный URL
try {
firstRunFile.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
и при первом запуски у нас открывайса сайт и Готова SS