is there any script that makes some of MVP card 10% drop instead of 40%
this is my drops.conf. 75% for normal cards and 40% for MVP
but it applies event in thana card
item_rate_card: 750000
item_rate_card_boss: 400000
item_drop_card_min: 1
item_drop_card_max: 10000
i used this script
- script CustomDropRates -1,{
OnInit:
setarray $@MobOkay_ID[0],1708,1646,1647,1648,1649,1650,1651,1871,1768; //Replace XXXX with the ID's of the monsters you want to be affected by this script. Add more as necessariy. *Note only supports 128 different monsters*
set $@MaxDropChance,10;end;
OnNPCKillEvent:
for(set @i,0; @i<getarraysize($@MobOkay_ID); set @i,@i+1)
{if (killedrid==$@MobOkay_ID[@i])
{callfunc "DropItemRate";}}
end;
}
function script DropItemRate {
set @i,0;
set @dropID,0;
deletearray $@MobDrop_item[0],128;
getmobdrops(killedrid);
goto iDropItemLoop;
iDropItemLoop:
set @i,rand(1,$@MaxDropChance);
if (@dropID == $@MobDrop_count){dispbottom "Success"; end;}
if (@i==1 && $@MobDrop_rate[@dropID]<=1)
{getitem $@MobDrop_item[@dropID],1;
set @dropID,@dropID+1; goto iDropItemLoop;}
if (@i<=$@MaxDropChance){set @dropID,@dropID+1; goto iDropItemLoop;}
end;
}
but it makes my thana to 0.1% and other modified cards
Question
noobsai
is there any script that makes some of MVP card 10% drop instead of 40%
this is my drops.conf. 75% for normal cards and 40% for MVP
but it applies event in thana card
item_rate_card: 750000
item_rate_card_boss: 400000
item_drop_card_min: 1
item_drop_card_max: 10000
i used this script
but it makes my thana to 0.1% and other modified cards
any other script you can share?
bump still need this
Link to comment
Share on other sites
33 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.