KyleEzra Posted March 8, 2018 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 10/29/14 Last Seen: October 15, 2020 Share Posted March 8, 2018 (edited) PLEASE HELP ME! i'm thinking of a script that if i use the equipment it has 1% chance to boost the character EXP by 50% for 10 minutes if he killed a level 75 or higher level monster I tried several scripts but it failed. Edited April 3, 2018 by KyleEzra Quote Link to comment Share on other sites More sharing options...
philfix.sai Posted March 30, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 43 Reputation: 2 Joined: 04/15/12 Last Seen: November 6, 2018 Share Posted March 30, 2018 On 08/03/2018 at 11:16 AM, KyleEzra said: PLEASE HELP ME! i'm thinking of a script that if i use the equipment it has 1% chance to boost the character EXP by 50% for 10 minutes if he killed a level 75 or higher level monster I tried several scripts but it failed. As I reviewed the item_bonus.txt, this is impossible. Unless you have knowledge on programming to create your own item bonus. Quote Link to comment Share on other sites More sharing options...
Emistry Posted March 31, 2018 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 3 hours ago Share Posted March 31, 2018 - script sample -1,{ OnNPCKillEvent: if (isequipped(<item_id>)) { if (rand(100) < 1) if (getmonsterinfo(killedrid, MOB_LV) >= 75) { sc_start SC_EXPBOOST, (600 * 1000), 50; } } end; } 1 Quote Link to comment Share on other sites More sharing options...
philfix.sai Posted March 31, 2018 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 43 Reputation: 2 Joined: 04/15/12 Last Seen: November 6, 2018 Share Posted March 31, 2018 13 hours ago, Emistry said: - script sample -1,{ OnNPCKillEvent: if (isequipped(<item_id>)) { if (rand(100) < 1) if (getmonsterinfo(killedrid, MOB_LV) >= 75) { sc_start SC_EXPBOOST, (600 * 1000), 50; } } end; } There you go OP. Emistry at your service Quote Link to comment Share on other sites More sharing options...
KyleEzra Posted April 2, 2018 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 10/29/14 Last Seen: October 15, 2020 Author Share Posted April 2, 2018 (edited) On 3/31/2018 at 10:27 AM, Emistry said: - script sample -1,{ OnNPCKillEvent: if (isequipped(<item_id>)) { if (rand(100) < 1) if (getmonsterinfo(killedrid, MOB_LV) >= 75) { sc_start SC_EXPBOOST, (600 * 1000), 50; } } end; } this one is working perfectly, thanks Emistry On 3/31/2018 at 11:52 PM, philfix.sai said: There you go OP. Emistry at your service yup he saves the day again Edited April 2, 2018 by KyleEzra Quote Link to comment Share on other sites More sharing options...
iFox Posted July 22, 2022 Group: Members Topic Count: 23 Topics Per Day: 0.02 Content Count: 55 Reputation: 0 Joined: 05/30/22 Last Seen: 1 hour ago Share Posted July 22, 2022 On 3/30/2018 at 6:27 PM, Emistry said: - script sample -1,{ OnNPCKillEvent: if (isequipped(<item_id>)) { if (rand(100) < 1) if (getmonsterinfo(killedrid, MOB_LV) >= 75) { sc_start SC_EXPBOOST, (600 * 1000), 50; } } end; } Good day sir. How about if just for overally monster and no required lvl? and plus additional exp gain for about 10-20%? Thank you in advance. Quote Link to comment Share on other sites More sharing options...
Emistry Posted July 30, 2022 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 3 hours ago Share Posted July 30, 2022 On 7/23/2022 at 6:36 AM, iFox said: Good day sir. How about if just for overally monster and no required lvl? and plus additional exp gain for about 10-20%? Thank you in advance. just change your server exp rate to 10~20% higher ? Quote Link to comment Share on other sites More sharing options...
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.