• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Znote Acc TFS 1+ (Better downloads page converted from MyAcc)

Joriku

Working in the mines, need something?
Joined
Jul 16, 2016
Messages
1,083
Solutions
15
Reaction score
377
Location
Sweden
YouTube
Joriku
Hi,
here comes an image from it:
(You may have to configure some parts inside it to make it fit your current layout)

a6ff96ac16bd7dd7055f2482ec4a465b.png


Thanks to @Znote For helping me with the scroll menu issue I had, getting it onto the next download page. Needed to use PHP/JS for that part.

Lua:
<?php require_once 'engine/init.php'; include 'layout/overall/header.php'; ?>


  <div class="TableContainer">
            <table class="Table4" cellpadding="0" cellspacing="0">
                <div class="CaptionContainer">
                    <div class="CaptionInnerContainer">
                        <span class="CaptionEdgeLeftTop" style="background-image:url(images/buttons/content/box-frame-edge.gif)"/></span>
                        <span class="CaptionEdgeRightTop" style="background-image:url(images/buttons/content/box-frame-edge.gif)"/></span>
                        <span class="CaptionBorderTop" style="background-image:url(images/buttons/content/table-headline-border.gif)"></span>
                        <span class="CaptionVerticalLeft" style="background-image:url(images/buttons/content/box-frame-vertical.gif)"/></span>
                        <div class="Text">Download Client</div>
                        <span class="CaptionVerticalRight" style="background-image:url(images/buttons/content/box-frame-vertical.gif)"/></span>
                        <span class="CaptionBorderBottom" style="background-image:url(images/buttons/content/table-headline-border.gif)"></span>
                        <span class="CaptionEdgeLeftBottom" style="background-image:url(images/buttons/content/box-frame-edge.gif)"/></span>
                        <span class="CaptionEdgeRightBottom" style="background-image:url(images/buttons/content/box-frame-edge.gif)"/></span>
                    </div>
                </div>
                <tr>
                    <td>
                        <div class="InnerTableContainer">
                            <table style="width:100%">
                                <tr>
                                    <td>
                                        <table width="100%" cellpadding=0 cellspacing=0>
                                            <tr>
                                                <td style="vertical-align:top">
                                                    <div class="TableShadowContainerRightTop">
                                                        <div class="TableShadowRightTop" style="background-image:url(images/buttons/content/table-shadow-rt.gif)"></div>
                                                    </div>
                                                    <div class="TableContentAndRightShadow" style="background-image:url(images/buttons/content/table-shadow-rm.gif)">
                                                        <div class="TableContentContainer">
                                                            <table class="TableContent" width="100%">
                                                                <tr>
                                                                    <td>
                                                                        <table style="width:100%;text-align:center">
                                                                            <tr>
                                                                                <td><a type="application/octet-stream" target="_top"><img style="width:140px;height:140px;border:0px" src="images/account/download_windows.png"/></a></td>
                                                                            </tr>
                                                                            <tr>
                                                                            <td valign="top">
                                                                                <?php
                                                                                    $download_links = array(
                                                                                      "updater" => "https://hoxera.com/Hoxera.zip",
                                                                                      "netcore" => "https://hoxera.com/.NETCORE.zip",
                                                                                    );

                                                                                    $download_url = false;
                                                                                    if (isset($_GET['client']) && isset($download_links[$_GET['client']])) {
                                                                                      $download_url = $download_links[$_GET['client']];
                                                                                      header("Location: {$download_url}");
                                                                                      die();
                                                                                    }
                                                                                    ?>

                                                                                    <form action="" method="GET" target="_blank">
                                                                                      <label for="client"></label>
                                                                                      <select id="client" name="client">
                                                                                        <optgroup label="Select Download:">
                                                                                        <option value="updater">Auto-Updater</option>
                                                                                        <option value="netcore">.NETCORE</option>
                                                                                      </select>
                                                                                      <br><br>
                                                                                      <input type="submit" value="Submit">
                                                                                    </form>
                                                                                <br/>
                                                                            </td>
                                                                        </tr>
                                                                    </table>
                                                                </tr>
                                                            </table>
                                                        </div>
                                                    </div>
                                                    <div class="TableShadowContainer">
                                                        <div class="TableBottomShadow" style="background-image:url(images/buttons/content/table-shadow-bm.gif)">
                                                            <div class="TableBottomLeftShadow" style="background-image:url(images/buttons/content/table-shadow-bl.gif)"></div>
                                                            <div class="TableBottomRightShadow" style="background-image:url(images/buttons/content/table-shadow-br.gif)"></div>
                                                        </div>
                                                    </div>
                                                </td>
                                                <td style="vertical-align:top"><div class="TableShadowContainerRightTop">
                                                        <div class="TableShadowRightTop" style="background-image:url(images/buttons/content/table-shadow-rt.gif)"></div>
                                                    </div>
                                                    <div class="TableContentAndRightShadow" style="background-image:url(images/buttons/content/table-shadow-rm.gif)">
                                                        <div class="TableContentContainer">
                                                            <table class="TableContent" width="100%">
                                                                <tr>
                                                                    <td style="text-align:center"><img style="width:214px;height:188px;margin:17px" src="images/account/successful_download.jpg"/></td>
                                                                </tr>
                                                            </table>
                                                        </div>
                                                    </div>
                                                    <div class="TableShadowContainer">
                                                        <div class="TableBottomShadow" style="background-image:url(images/buttons/content/table-shadow-bm.gif)">
                                                            <div class="TableBottomLeftShadow" style="background-image:url(images/buttons/content/table-shadow-bl.gif)"></div>
                                                            <div class="TableBottomRightShadow" style="background-image:url(images/buttons/content/table-shadow-br.gif)"></div>
                                                        </div>
                                                    </div>
                                                </td>
                                            </tr>
                                        </table>
                                    <tr>
                                    <td>
                                        <div class="TableShadowContainerRightTop">
                                            <div class="TableShadowRightTop" style="background-image:url(images/buttons/content/table-shadow-rt.gif)"></div>
                                        </div>
                                        <div class="TableContentAndRightShadow" style="background-image:url(images/buttons/content/table-shadow-rm.gif)">
                                            <div class="TableContentContainer">
                                                <table class="TableContent" width="100%">
                                                    <tr>
                                                        <td class="LabelV">Disclaimer</td>
                                                    </tr>
                                                    <tr>
                                                        <td>The software and any related documentation is provided "as is" without warranty of any kind. The entire risk arising out of use of the software remains with you. In no event shall <?php echo $config['site_title']; ?> be liable for any damages to your computer or loss of data.</td>
                                                    </tr>
                                                </table>
                                            </div>
                                        </div>
                                        <p></p>
                                        <div class="TableShadowContainer">
                                            <div class="TableBottomShadow" style="background-image:url(images/buttons/content/table-shadow-bm.gif)">
                                                <div class="TableBottomLeftShadow" style="background-image:url(images/buttons/content/table-shadow-bl.gif)"></div>
                                                <div class="TableBottomRightShadow" style="background-image:url(images/buttons/content/table-shadow-br.gif)"></div>
                                            </div>
                                            <iframe src="Discord Widget" width="570" height="350" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
                                            <div class="TableShadowContainerRightTop">
                                            <div class="TableShadowRightTop" style="background-image:url(images/buttons/content/table-shadow-rt.gif)"></div>
                                        </div>
                                        <p></p>
                                        <div class="TableContentAndRightShadow" style="background-image:url(images/buttons/content/table-shadow-rm.gif)">
                                            <div class="TableContentContainer">
                                                <table class="TableContent" width="100%">
                                                    <tr>
                                                        <td class="LabelV">Support</td>
                                                    </tr>
                                                    <tr>
                                                        <td>If you are in need of support due to client not working or questions regarding the client, you can reach out to us over at our <a target="_blank" href="DiscordInvLink">Discord</a></td>
                                                    </tr>
                                                </table>
                                            </div>
                                        </div>
                                    </td>
                                </tr>
                            </table>
                        </div>
                    </table>
                </div>
            </td>
        </tr>
      
<?php
include 'layout/overall/footer.php'; ?>

Update: 1.0.1
Added missing images, sorry.
 

Attachments

Last edited:
Hello, looks nice installed, but im having troubles with the images, does not look like the one you are using :(.


TFS 1.4.

Thanks for any help
 
Hello, looks nice installed, but im having troubles with the images, does not look like the one you are using :(.


TFS 1.4.

Thanks for any help
I forgot to add the images, here:
paste these into the main folder

PS. next time, provide some information for your issue
 

Attachments

Last edited:
the page works cool, but a get this message

Lua:
Not Found
The requested URL was not found on this server.

Apache/2.4.56 (Win64) OpenSSL/1.1.1t PHP/8.0.28 Server at xxxxxxx.online Port 80

after this box
Code:
Disclaimer
The software and any related documentation is provided "as is" without warranty of any kind. The entire risk arising out of use of the software remains with you. In no event shall ForgottenServer be liable for any damages to your computer or loss of data.

how do i delete that message?

Lua:
Not Found
The requested URL was not found on this server.

Apache/2.4.56 (Win64) OpenSSL/1.1.1t PHP/8.0.28 Server at xxxxxxx.online Port 80
 
Back
Top