Try this one didn't test it though
- script ExtraDrop -1,{
OnInit:
setarray .list[0], // <monsterid>,<cash point>,<zeny>,<reward item id>,<reward item amount>... and so on
1002,5,1000000,501,1, // Poring, gives 5 cashpoint, 1m zeny, red potion 1x
1101,6,2000000,502,1;
.size = getarraysize(.mon_list)/5;
end;
OnNPCKillEvent:
for( .@i = 0; .@i < .size; .@i+=5 ) {
if( killedrid == .list[.@i] ) {
#CASHPOINTS += .list[.@i+1];
Zeny += .list[.@i+2];
if( rand(100) < 10 ) getitem .list[.@i+3],.list[.@i+4];
break;
}
}
end;
}