Radian Posted April 16, 2016 Group: Members Topic Count: 162 Topics Per Day: 0.04 Content Count: 1546 Reputation: 192 Joined: 07/23/14 Last Seen: June 24, 2024 Share Posted April 16, 2016 I would like to request a script that works something like this. give extra item reward for the player who killed the MvP. reward will depend on the MvP monster level. reward will directly send to the player who is MvP. I have this list of MvP based on mvp warper script in the master trunk of rA. 1086,// Golden Thief Bug 64 1115,// Eddga 65 1150,// Moonlight Flower 67 1159,// Phreeoni 69 1112,// Drake 70 1583,// Tao Gunka 70 1492,// Incantation Samurai 71 1046,// Doppelgangger 72 1252,// Garm 73 1418,// Evil Snake Lord 73 1059,// Mistress 74 1190,// Orc Lord 74 1087,// Orc Hero 77 1251,// Knight of Windstorm 77 1038,// Osiris 78 1658,// Ygnizem 79 1272,// Dark Lord 80 1871,// Fallen Bishop 80 1039,// Baphomet 81 1147,// Maya 81 1785,// Atroce 82 1389,// Dracula 85 1630,// Bacsojin 85 1885,// Gorynych 85 1623,// RSX 0806 86 1511,// Amon Ra 88 1688,// Lady Tanee 89 1768,// Gloom Under Night 89 1719,// Datale 90 1734,// Kiel D-01 90 1157,// Pharaoh 93 1373,// Lord of Death 94 1312,// Turtle General 97 1779,// Ktullanux 98 1874,// Beelzebub 98 1646,// Bio3 placeholder 99 1708,// Thanatos 99 1751,// Valkyrie Randgris 99 1832;// Ifrit 99 so from level 64 to 74 monster will give a reward (ex: 1pc) 75 ~ 89 (ex: 2pcs) 90 ~ 99 (ex: 5pcs) and if possible reward will be account bound. Thanks in advance Quote Link to comment Share on other sites More sharing options...
0 PandaLovesHamster Posted April 17, 2016 Group: Members Topic Count: 51 Topics Per Day: 0.01 Content Count: 452 Reputation: 35 Joined: 12/18/14 Last Seen: May 30, 2016 Share Posted April 17, 2016 OnNPCKillEvent: if ( getmonsterinfo( killedrid, 22 ) ) { if( getmonsterinfo( killedrid, 1) <= 74 ) getitembound 7539,1,1; if( getmonsterinfo( killedrid, 1) > 74 && getmonsterinfo( killedrid, 1) <= 89) getitembound 7589,2,1; if( getmonsterinfo( killedrid, 1) > 89 ) getitembound 7539,5,1; } end; Not tested. Quote Link to comment Share on other sites More sharing options...
Question
Radian
I would like to request a script that works something like this.
I have this list of MvP based on mvp warper script in the master trunk of rA.
Thanks in advance
Link to comment
Share on other sites
1 answer 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.