viewing paste mob drop item | Athena

Posted on the | Last edited on
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
-   script  mvp_drop_box    -1,{
    function mob_drop;
 
    OnNPCKillEvent:
        // mini boss list
        if ( mob_drop( killedrid,"1511,1038,1272,1389,1086,1251" ) ) {
            getitem 13909,1;
        }
        // mvp list
        else if ( mob_drop( killedrid,"1647,1785,1630,1039,1874,2068,2238,2240,2236,2253,1719,1046,1112,1115,1418,1871,1252,2251,1768,2165,1885,2241,1649,1651,1832,1492,2255,1734,2202,1779" ) ) {
            getitem 13909,1;
        }
        end;
        
    function    mob_drop    {
        return compare( ","+getarg(0)+",",","+getarg(1)+",");
    }
}
Viewed 1275 times, submitted by Emistry.