I just finished a last edit on ascentwiki:
Itemloot - Ascent Wiki
so i am gonna post it here now:
if you wnt to create a itemloot... but you dont understand what the meaning is of the numbers in itemloot table, then read this:
Code:
== Description ==
!Name
!Type
!Description
|-
|index
|int(11) [primary]
|Primary key, any number that does not exist in the table
|-
|entryid
|int(11)
|The ID of the item that is being opened
|-
|percentchance
|float
|Percentage chance that this item drops while in normal mode
|-
|heroicpercentchance
|float
|Percentage chance that this item drops while in heroic mode
|-
|mincount
|int(11)
|If the item drops, at least this amount will drop in 1 loot
|-
|maxcount
|int(11)
|If the item drops, the maximum amount that can drop in 1 loot
|-
|ffa_loot
|int(10)
|Allows all group members to loot this item if >= 1
so now you can easely create your custom loot
if you need a query to do it... here it is:
Code:
insert into 'itemloot" values(index,itemID,percentchance,heroicpercentchance,mincount,maxcount,ffa_loot);
ofcourse you have to change this to real values 
grtz 
edit: just saw that i probably posted in wrong section, will be moved asap