properties with missing stat1 and multiple stats item description done for unique items

This commit is contained in:
Hash Borgir
2022-05-05 07:47:20 -06:00
parent e774dcc5a3
commit f55a25d946
1987 changed files with 13231 additions and 351490 deletions

View File

@@ -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");