View Single Post
  #62  
Old 09-07-2012, 10:38 AM
jsr
Hill Giant
 
Join Date: Aug 2008
Location: melbourne
Posts: 187
Default

use this query to get the ratio's;

Code:
select id, name, maxdmg, mindmg, mindmg/maxdmg as ratio from npc_types where (mindmg/maxdmg) > 0.2
You can change 0.2 to whatever suits.
Reply With Quote