Hello,
Can anyone modify this script so it concerns not only the killer but anyone in the whole party (IF the killer is in one)
That sounds more fair for support classes, right ?
Thanks
Can anyone modify this script so it concerns not only the killer but anyone in the whole party (IF the killer is in one)
That sounds more fair for support classes, right ?
Thanks
- script custom_drop -1,{
OnNPCKillEvent:
// Global Monster Kill Rewards
set .@rand_gc_drop, rand(1,4000);
if (.@rand_gc_drop <= 25) getitem 512, 1;
set .@rand_sc_drop, rand(1,2000);
if (.@rand_sc_drop <= 5) getitem 513, 1;
set .@rand_bc_drop, rand(1,1000);
if (.@rand_bc_drop <= 1) getitem 511, 1;
}
OnNPCKillEvent:
// Global Monster Kill Rewards
set .@rand_gc_drop, rand(1,4000);
if (.@rand_gc_drop <= 25) getitem 512, 1;
set .@rand_sc_drop, rand(1,2000);
if (.@rand_sc_drop <= 5) getitem 513, 1;
set .@rand_bc_drop, rand(1,1000);
if (.@rand_bc_drop <= 1) getitem 511, 1;
}
Last edited by a moderator: