Kiritoryu Posted January 18, 2013 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 59 Reputation: 0 Joined: 12/13/12 Last Seen: June 20, 2013 Share Posted January 18, 2013 Does Bubble Gem affects this custom drop rate script? - script Sample -1,{ function CustomRateCard; OnNPCKillEvent: // CustomRateCard( <MobID>,<CardID>,<Rate> ); // Rate : 1 = 0.01% / 1000 = 10% / 10000 = 100% CustomRateCard( 1086,4128,500 ); CustomRateCard( 1708,4399,110 ); CustomRateCard( 1751,4407,500 ); CustomRateCard( 1583,4302,300 ); CustomRateCard( 1646,4357,100 ); CustomRateCard( 1648,4361,100 ); CustomRateCard( 1649,4363,100 ); CustomRateCard( 1650,4367,100 ); CustomRateCard( 1651,4365,100 ); CustomRateCard( 1768,4408,300 ); CustomRateCard( 1734,4403,300 ); CustomRateCard( 1623,4342,300 ); CustomRateCard( 1647,4359,100 ); CustomRateCard( 1630,4372,500 ); end; function CustomRateCard { if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){ getitem getarg(1),1; announce "[ "+strcharinfo(0)+" ] get 1 "+getitemname( getarg(1) ),0; } return; } } Quote Link to comment Share on other sites More sharing options...
Haziel Posted January 18, 2013 Group: Content Moderator Topic Count: 22 Topics Per Day: 0.00 Content Count: 639 Reputation: 609 Joined: 11/25/11 Last Seen: March 7 Share Posted January 18, 2013 No. 2 Quote Link to comment Share on other sites More sharing options...
Kiritoryu Posted January 19, 2013 Group: Members Topic Count: 22 Topics Per Day: 0.00 Content Count: 59 Reputation: 0 Joined: 12/13/12 Last Seen: June 20, 2013 Author Share Posted January 19, 2013 Thanks! Quote Link to comment Share on other sites More sharing options...
Question
Kiritoryu
Does Bubble Gem affects this custom drop rate script?
Link to comment
Share on other sites
2 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.