Page 1 of 1

Item search page

Posted: Wed Sep 02, 2009 7:28 am
by Topsy
Looks like there is a couple variances from the item search page THF has and the one i loaded up.

    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.

Re: Item search page

Posted: Wed Sep 02, 2009 12:31 pm
by Tyler
and have the checkbox for nodrop set by default

Re: Item search page

Posted: Wed Sep 02, 2009 12:40 pm
by uweyen
God, there's been countless times that I forget to check the no drop box, and the items are some whacked up list that I haven't seen before... leaving me wonder for 5 minutes. lol.

This sounds like a nice change though if they do it.