- 1. No minimum level for items. I get tired of getting 2000 items returned by searching for an earing.
2. No drop button, no one remembers to check it. Should probally be set by default.
In items.php line 151ish if you change:
Code: Select all
print " <tr><td nowrap='1'><b>With effect : </b></td><td><input type='text' value='".$ieffect."' size='30' name='ieffect' class='form'/></td></tr>\n";
print " <tr><td nowrap='1'><b>Max required level : </b></td><td>\n"; SelectLevel("ireqlevel",70,$ireqlevel); print "</td></tr>\n";
print " <tr><td nowrap='1'><b>Include nodrop items : </b></td><td><input type='checkbox' name='inodrop' ".($inodrop?" checked='1'":"")."/></td></tr>\n";
print " <tr>\n";
with
Code: Select all
print " <tr><td nowrap='1'><b>With effect : </b></td><td><input type='text' value='".$ieffect."' size='30' name='ieffect' class='form'/></td></tr>\n";
print " <tr><td nowrap='1'><b>Min required level : </b></td><td>\n"; SelectLevel("iminlevel",70,$iminlevel); print "</td></tr>\n";
print " <tr><td nowrap='1'><b>Max required level : </b></td><td>\n"; SelectLevel("ireqlevel",70,$ireqlevel); print "</td></tr>\n";
print " <tr><td nowrap='1'><b>Include nodrop items : </b></td><td><input type='checkbox' name='inodrop' checked='1' ".($inodrop?" checked='1'":"")."/></td></tr>\n";
print " <tr>\n";
it will both add the option for a minimum item level in your search, and have the checkbox for nodrop set by default.