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 [email protected]_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 [email protected],10;end;
OnNPCKillEvent:
for(set @i,0; @i<getarraysize([email protected]_ID); set @i,@i+1)
{if ([email protected]_ID[@i])
{callfunc "DropItemRate";}}
end;
}
function script DropItemRate {
set @i,0;
set @dropID,0;
deletearray [email protected]_item[0],128;
getmobdrops(killedrid);
goto iDropItemLoop;
iDropItemLoop:
set @i,rand(1,[email protected]);
if (@dropID == [email protected]_count){dispbottom "Success"; end;}
if (@i==1 && [email protected]_rate[@dropID]<=1)
{getitem [email protected]_item[@dropID],1;
set @dropID,@dropID+1; goto iDropItemLoop;}
if (@i<[email protected]){set @dropID,@dropID+1; goto iDropItemLoop;}
end;
}
but it makes my thana to 0.1% and other modified cards
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 [email protected]_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 [email protected],10;end; OnNPCKillEvent: for(set @i,0; @i<getarraysize([email protected]_ID); set @i,@i+1) {if ([email protected]_ID[@i]) {callfunc "DropItemRate";}} end; } function script DropItemRate { set @i,0; set @dropID,0; deletearray [email protected]_item[0],128; getmobdrops(killedrid); goto iDropItemLoop; iDropItemLoop: set @i,rand(1,[email protected]); if (@dropID == [email protected]_count){dispbottom "Success"; end;} if (@i==1 && [email protected]_rate[@dropID]<=1) {getitem [email protected]_item[@dropID],1; set @dropID,@dropID+1; goto iDropItemLoop;} if (@i<[email protected]){set @dropID,@dropID+1; goto iDropItemLoop;} end; }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