View Single Post
  #4  
Old 02-10-2004, 09:05 AM
Monrezz's Avatar
Monrezz
Dragon
 
Join Date: Mar 2003
Location: #loc
Posts: 745
Default

Let's have a look at how many loot items are set to drop 100% of the time:

SELECT count(*) FROM lootdrop_entries WHERE chance=100;
+----------+
| count(*) |
+----------+
| 12228 |
+----------+


If the 99% chance loot drop fixes this issue, then change all occurences (sp?) of chance=100 to chance=99:

UPDATE lootdrop_entries SET chance=99 WHERE chance=100;

Try adding this, and testing a few random boss mobs.

Monrezz
__________________

kRPG Profile
Reply With Quote