2021-03-23 08:13:54 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
Copyright (C) 2021 Hash Borgir
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
This file is part of D2Modder
|
2021-03-23 08:13:54 +00:00
|
|
|
|
2021-03-28 08:12:25 +00:00
|
|
|
Redistribution and use in source and binary forms, with
|
|
|
|
or without modification, are permitted provided that the
|
|
|
|
following conditions are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer.
|
|
|
|
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the
|
|
|
|
following disclaimer in the documentation and/or other
|
|
|
|
materials provided with the distribution.
|
|
|
|
|
|
|
|
* This software must not be used for commercial purposes
|
|
|
|
* without my consent. Any sales or commercial use are prohibited
|
|
|
|
* without my express knowledge and consent.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY!
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
|
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2021-03-23 08:13:54 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<?php
|
|
|
|
/* Require the <head> section */
|
|
|
|
require_once "head.php";
|
|
|
|
?>
|
|
|
|
|
2021-03-26 18:31:13 +00:00
|
|
|
<body>
|
|
|
|
<div class="container container-top">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
|
|
|
|
<img src="img/Diablo2.png" style="float:right"><h2 syle="font-weight: 900">D2 Item Maker, v3. By HashCasper</h2><br><br>
|
|
|
|
<ul class="nav nav-tabs" id="Tabs" role="tablist">
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<a class="nav-link active" id="Unique-tab" data-toggle="tab" href="#Unique" role="tab" aria-controls="Unique" aria-selected="true">UniqueItems.txt</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<a class="nav-link" id="Set-tab" data-toggle="tab" href="#Set" role="tab" aria-controls="Set" aria-selected="false">SetItems.txt</a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
<a class="nav-link" id="Gem-tab" data-toggle="tab" href="#Gem" role="tab" aria-controls="Set" aria-selected="false">Gems.txt</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2021-03-23 08:13:54 +00:00
|
|
|
</div>
|
|
|
|
<div class="tab-content" id="TabContent">
|
2021-03-26 18:31:13 +00:00
|
|
|
<div style="font-family: Lato !important; text-align:right; color: tomato">
|
|
|
|
<p style="font-family: Lato !important;">Active Mod: <?php echo $_SESSION['modname']?>
|
|
|
|
<br><?php echo $_SESSION['path']?></p>
|
|
|
|
</div>
|
2021-03-23 08:13:54 +00:00
|
|
|
<div class="tab-pane fade show active" id="Unique" role="tabpanel" aria-labelledby="Unique-tab">
|
|
|
|
<?php require_once 'D2UM.php'; ?>
|
|
|
|
</div>
|
|
|
|
<div class="tab-pane fade" id="Set" role="tabpanel" aria-labelledby="Set-tab">
|
|
|
|
<?php require_once 'D2SM.php'; ?>
|
|
|
|
</div>
|
2021-03-24 10:26:51 +00:00
|
|
|
<div class="tab-pane fade" id="Gem" role="tabpanel" aria-labelledby="Gem-tab">
|
|
|
|
<?php require_once 'D2Gems.php'; ?>
|
|
|
|
</div>
|
2021-03-26 18:31:13 +00:00
|
|
|
</div>
|