View Single Post
  #2  
Old 10-21-2010, 07:55 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,498
Default

Increase by how much?

Example 1: If you wanted to just set every table to drop 100% of the time, you would do 'UPDATE loottable_entries SET probability = 100;'

Example 2: If you wanted to bump by ... say 5% ... you would do 'UPDATE loottable_entries SET probability = probability + 5 WHERE probability <= 95;'
Reply With Quote