myserver Posted August 28, 2018 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 45 Reputation: 0 Joined: 08/27/18 Last Seen: October 23, 2018 Share Posted August 28, 2018 is a posible to add a item for drop of mvp or monster MVP monster add item for drop and drop rate. like this mistress(id),Poring Coin(item for drop),and 5% for droprate. Quote Link to comment Share on other sites More sharing options...
0 Skorm Posted August 28, 2018 Group: Forum Moderator Topic Count: 33 Topics Per Day: 0.01 Content Count: 1282 Reputation: 393 Joined: 02/03/12 Last Seen: April 11 Share Posted August 28, 2018 31 minutes ago, Jard said: is a posible to add a item for drop of mvp or monster MVP monster add item for drop and drop rate. like this mistress(id),Poring Coin(item for drop),and 5% for droprate. https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L6259 Make an npc with the OnInit: Tag and use that command or just add it in the database. Quote Link to comment Share on other sites More sharing options...
0 myserver Posted August 28, 2018 Group: Members Topic Count: 15 Topics Per Day: 0.01 Content Count: 45 Reputation: 0 Joined: 08/27/18 Last Seen: October 23, 2018 Author Share Posted August 28, 2018 (edited) i saw somethine like my post. but is not working. - script Sample -1,{ function CustomRateCard; OnNPCKillEvent: // CustomRateCard( <M?obID>,<CardID>,<Rate> ); // Rate : 1 = 0.01% / 1000 = 10% / 10000 = 100% CustomRateCard( 1115,7941,500 ); // Edga CustomRateCard( 1059,7941,500 ); // Mistress CustomRateCard( 1150,7941,500 ); // Moonlight CustomRateCard( 1147,7941,500 ); // Maya CustomRateCard( 1159,7941,500 ); // Phreeoni CustomRateCard( 1312,7941,500 ); // Turtle General CustomRateCard( 1087,7941,500 ); // Orc Hero CustomRateCard( 1190,7941,500 ); // Orc Lord CustomRateCard( 1112,7941,500 ); // Drake CustomRateCard( 1038,7941,500 ); // Osiris CustomRateCard( 1046,7941,500 ); // Doppelganger CustomRateCard( 1373,7941,500 ); // Lord of Death CustomRateCard( 1492,7941,500 ); // Incantation Samurai CustomRateCard( 1157,7941,500 ); // Pharoh CustomRateCard( 1272,7941,500 ); // Dark Lord CustomRateCard( 1039,7941,500 ); // Baphomet end; function CustomRateCard { if( killedrid == getarg(0) && rand( 10000 ) <= getarg(2) ){ getitem getarg(1),1; } return; } } Edited August 30, 2018 by Skorm Added code box. Quote Link to comment Share on other sites More sharing options...
0 Skorm Posted August 30, 2018 Group: Forum Moderator Topic Count: 33 Topics Per Day: 0.01 Content Count: 1282 Reputation: 393 Joined: 02/03/12 Last Seen: April 11 Share Posted August 30, 2018 No. Quote Link to comment Share on other sites More sharing options...
Question
myserver
is a posible to add a item for drop of mvp or monster
MVP monster add item for drop and drop rate.
like this mistress(id),Poring Coin(item for drop),and 5% for droprate.
Link to comment
Share on other sites
3 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.