mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2025-10-13 08:24:24 -05:00
properties with missing stat1 and multiple stats item description done for unique items
This commit is contained in:
13
index.php
13
index.php
@@ -1,5 +1,6 @@
|
||||
<?php
|
||||
|
||||
|
||||
session_start();
|
||||
/*
|
||||
|
||||
@@ -101,7 +102,17 @@ if (!isset($_SESSION['modname']) || (!file_exists(APP_DB)) || (!file_exists($_SE
|
||||
|
||||
|
||||
$armor = PDO_FetchAll('SELECT * FROM armor WHERE spawnable=1');
|
||||
$misc = PDO_FetchAll('SELECT * FROM misc WHERE spawnable=1');
|
||||
$misc = PDO_FetchAll('SELECT * FROM misc WHERE spawnable=1
|
||||
AND type <> "stst"
|
||||
AND type <> "sum0"
|
||||
AND type <> "prtl"
|
||||
AND type <> "xfor"
|
||||
AND type <> "rext"
|
||||
AND type <> "gext"
|
||||
AND type <> "ques"
|
||||
AND type <> "key"
|
||||
AND type <> "body"
|
||||
');
|
||||
$weapon = PDO_FetchAll('SELECT * FROM weapons WHERE spawnable=1');
|
||||
$uniqueitems = PDO_FetchAll("SELECT `index`,`code` FROM uniqueitems WHERE `enabled`='1' ORDER BY `index` ASC");
|
||||
|
||||
|
Reference in New Issue
Block a user