Мануал Corsair - Pearl Shop Edit - Banner/Promotion

orohimaru2

Выдающийся
Местный
Сообщения
57
Розыгрыши
0
Репутация
114
Реакции
199
Баллы
1 388
Автор не я взял с Англ сайта
Приветствую. Вот небольшой совет, который я нашёл. Я заметил, что баннер и рекламная страница в магазине жемчуга не работают. Вот как создать свои.

1. После настройки сервера IIS зайдите на игровой портал (игровой портал, portal-web, как бы вы его ни назвали).
2. Создайте папку CashShop
. 3. Внутри CashShop создайте две папки: Banner и Product
. a. Banner будет отображаться вверху каждой страницы магазина жемчуга.
b. Product — это то, что вы видите при первом открытии магазина жемчуга.
4. Внутри каждой папки создайте файл index.html.
Дальше вы можете делать с ним всё, что захотите, и он будет отображаться в магазине жемчуга. Я поделюсь своим.
Код:
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>My Gaming Banner</title>
  <style>
    body {
      margin: 0;
      padding: 0;
      background-color: black;
      color: white;
      font-family: Arial, sans-serif;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100vh;
    }
    h1 {
      font-size: 3em;
      margin: 0;
    }
    h2 {
      font-size: 2em;
      margin: 0.2em 0;
    }
    p {
      font-size: 1.2em;
      margin: 0.5em 0 0 0;
    }
  </style>
</head>
<body>
  <h1>My Gaming Banner</h1>
  <h2>Black Desert</h2>
  <p>Welcome to Black Desert by Myself!</p>
</body>
</html>
Продукт: (обязательно обновите IP-адрес черного рынка, если используете мой черный рынок)
Код:
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>My Gaming - Info</title>
  <style>
    body {
      margin: 0;
      padding: 20px;
      background-color: black;
      color: white;
      font-family: Arial, sans-serif;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    h1, h2 {
      text-align: center;
      margin: 0;
    }
    h1 {
      font-size: 3em;
      margin-top: 10px;
    }
    h2 {
      font-size: 2em;
      margin-top: 5px;
      margin-bottom: 20px;
    }
    section {
      margin-bottom: 30px;
    }
    h3 {
      border-bottom: 1px solid #555;
      padding-bottom: 5px;
      margin-bottom: 10px;
    }
    ul {
      list-style: none;
      padding-left: 0;
    }
    li {
      padding: 5px 0;
    }
    .version {
      font-size: 1.1em;
      color: #ccc;
    }
  </style>
</head>
<body>

  <h1>My Gaming</h1>
  <h2>Black Desert</h2>
  <br>
  <br>

  <section>
    <h3>Features</h3>
    <ul>
        <li>Pearls issued 150 per 30 minutes</li>
        <li>Improved drops and xp</li>
        <li>Custom market purchases your items every 3 hr</li>
        <li>Pearls earned by grinding</li>
        <li>Oasis event (1 silver food, carrot, items)</li>
        <li>Black Market (use central market funds to purchase goods) at http://888.888.888.888:8892</li> <!--Update the IP to yours-->
    </ul>
  </section>

  <section>
    <h3>Commands</h3>
    <p>Commands must be sent in the ROLEPLAY channel</p>
    <p>The items will be delivered via mail</p>
    <ul>
      <li>rescue - Mail a transport item for Velia (5 min cd)</li>
      <li>Teleports begin with tp (ex: tp velia)</li>
      <li>Teleport locations: velia, heidel, grana, altinova</li>
      <li>Teleport locations: duvencrune, aakman, crescent</li>
      <li>Teleport locations: hasrah, hystria, pirate, sycraia, valencia</li>
  </section>

  <section>
    <h3>Updates</h3>
    <ul>
      <li>2025-08-08: Series of updates. Launcher, Manifest, versions</li>
      <li>2025-08-08: Fixed web links, Cash Shop pages, language issue</li>
      <li>2025-08-23: Fixed an issue with teleport descriptions</li>
      <li>2025-08-23: Created Black Market website for puchases via silver/market funds</li>
    </ul>
  </section>

  <section>
    <h3>Version</h3>
    <p class="version">v1.0.6</p>
  </section>

  <section>
    <h3>Known Bugs</h3>
    <ul>
      <li>🐞 Tuvala exchange lists on Primal Desert, with Blacksmiths, is borked. Use the Calpheon Center blacksmith</li>
      <li>🐞 Central Market purchased items are still listed until the player relogs</li>
    </ul>
  </section>

</body>
</html>
 

Назад
Сверху