|
|
| (3 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| <!DOCTYPE html> | | <div class="tsw-article"> |
| <html lang="en">
| | '''Premium Account''' is a time-limited account status. Remaining premium days are shown in the client character list. |
| <head>
| |
| <meta charset="UTF-8">
| |
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| |
| <title>Premium Benefits</title>
| |
| <style>
| |
| body {
| |
| margin: 0;
| |
| padding: 0;
| |
| background-color: #040b1f;
| |
| font-family: 'Montserrat', sans-serif;
| |
| color: #bfbfbf;
| |
| text-align: center;
| |
| }
| |
|
| |
|
| h1 {
| | == What it is used for == |
| color: #ffd919;
| | Premium checks are attached to individual features. Current examples include: |
| font-weight: bold;
| |
| font-size: 24px;
| |
| text-transform: uppercase;
| |
| margin: 20px 0;
| |
| }
| |
|
| |
|
| .benefits-table {
| | * premium-only spells shown in the Spell List; |
| width: 80%; /* Adjust width as needed */
| | * offline training; |
| margin: 20px auto;
| | * buying a house; |
| border-collapse: collapse;
| | * some transport routes, areas, teleports, outfits, and mounts. |
| background-color: rgba(4, 11, 31, 0.9); /* Matches site theme */
| |
| border-radius: 8px;
| |
| overflow: hidden;
| |
| text-align: center;
| |
| font-size: 14px;
| |
| color: #bfbfbf; /* Text color */
| |
| }
| |
|
| |
|
| .benefits-table th, .benefits-table td {
| | When an action requires premium, its spell entry, NPC, teleporter, or system message states the requirement. |
| padding: 15px;
| | </div> |
| border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle borders */
| |
| text-align: center; /* Centers text horizontally */
| |
| vertical-align: middle; /* Centers text vertically */
| |
| }
| |
|
| |
|
| .benefits-table th {
| | [[Category:Getting started]] |
| background-color: #6bb2b2; /* Header background color */
| | [[Category:Game systems]] |
| color: #040b1f; /* Text color for header */
| |
| font-weight: 600;
| |
| text-transform: uppercase;
| |
| }
| |
| | |
| .benefits-table tr:nth-child(even) {
| |
| background-color: rgba(255, 255, 255, 0.05); /* Stripe effect */
| |
| }
| |
| | |
| .benefits-table tr:nth-child(odd) {
| |
| background-color: rgba(255, 255, 255, 0.02); /* Alternate stripe */
| |
| }
| |
| | |
| .benefits-table tr:hover {
| |
| background-color: rgba(255, 255, 255, 0.1); /* Highlight on hover */
| |
| }
| |
| </style>
| |
| </head>
| |
| <body>
| |
| <h1>Premium Benefits</h1>
| |
| <table class="benefits-table">
| |
| <thead>
| |
| <tr>
| |
| <th>Benefits</th>
| |
| <th>Free Account</th>
| |
| <th>Premium Account</th>
| |
| </tr>
| |
| </thead>
| |
| <tbody>
| |
| <tr>
| |
| <td>Shared Experience in Party</td>
| |
| <td>✔️</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Completing Quests & Tasks</td>
| |
| <td>✔️</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Travel with Boats and Carpets</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Use All Spells</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Promotion of Vocation</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Buy Houses</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Use Character Bazaar</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Use Market in Depot</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Premium Islands</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| <tr>
| |
| <td>Use Item Bazaar</td>
| |
| <td>❌</td>
| |
| <td>✔️</td>
| |
| </tr>
| |
| </tbody>
| |
| </table>
| |
| </body>
| |
| </html>
| |