Yuka Posted May 14, 2014 Group: Members Topic Count: 100 Topics Per Day: 0.02 Content Count: 333 Reputation: 7 Joined: 03/01/14 Last Seen: May 6, 2020 Share Posted May 14, 2014 Hi, how can I add a status that grants negative EXP? I mean for example sc_start SC_EXPSLOW,10000,50 reduces exp income by 50% for 10 seconds. Bump. Quote Link to comment Share on other sites More sharing options...
sandbox Posted May 15, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: 22 hours ago Share Posted May 15, 2014 Not sure if negative values would work tho.. sc_start SC_EXPBOOST,10000,-50; Quote Link to comment Share on other sites More sharing options...
Yuka Posted May 15, 2014 Group: Members Topic Count: 100 Topics Per Day: 0.02 Content Count: 333 Reputation: 7 Joined: 03/01/14 Last Seen: May 6, 2020 Author Share Posted May 15, 2014 They don't, -50 just sets it to the normal EXP rate. D: Quote Link to comment Share on other sites More sharing options...
sandbox Posted May 15, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: 22 hours ago Share Posted May 15, 2014 How about playing and combining these with autobonus bonus2 bExpAddRace,r,x; Increase exp gained by x% against enemies of race rbonus2 bExpAddClass,c,x; Increase exp gained by x% against enemies of class c Try to use negative values also Quote Link to comment Share on other sites More sharing options...
Yuka Posted May 20, 2014 Group: Members Topic Count: 100 Topics Per Day: 0.02 Content Count: 333 Reputation: 7 Joined: 03/01/14 Last Seen: May 6, 2020 Author Share Posted May 20, 2014 How about playing and combining these with autobonus bonus2 bExpAddRace,r,x; Increase exp gained by x% against enemies of race rbonus2 bExpAddClass,c,x; Increase exp gained by x% against enemies of class c Try to use negative values also Well thus I would to add it for all classes and races? x_x Isn't there a way to add a new SC status? Quote Link to comment Share on other sites More sharing options...
Yuka Posted May 28, 2014 Group: Members Topic Count: 100 Topics Per Day: 0.02 Content Count: 333 Reputation: 7 Joined: 03/01/14 Last Seen: May 6, 2020 Author Share Posted May 28, 2014 (edited) Bump. How can I add a new status doing this? I'm sure it's not that hard. x_x Edited May 28, 2014 by Yuka Quote Link to comment Share on other sites More sharing options...
sandbox Posted May 28, 2014 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 949 Reputation: 174 Joined: 06/12/12 Last Seen: 22 hours ago Share Posted May 28, 2014 autobonus "{ bonus2 bExpAddClass,Class_All,-50; }",1000,60000; Quote Link to comment Share on other sites More sharing options...
Cydh Posted May 28, 2014 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted May 28, 2014 remove/comment these lines src/map/status.c on status_change_start case SC_EXPBOOST: case SC_JEXPBOOST: if (val1 < 0) val1 = 0; break; Quote Link to comment Share on other sites More sharing options...
Yuka Posted May 28, 2014 Group: Members Topic Count: 100 Topics Per Day: 0.02 Content Count: 333 Reputation: 7 Joined: 03/01/14 Last Seen: May 6, 2020 Author Share Posted May 28, 2014 (edited) remove/comment these lines src/map/status.c on status_change_start case SC_EXPBOOST: case SC_JEXPBOOST: if (val1 < 0) val1 = 0; break; Ohh that looks great. Will try tomorrow. This works fine. Now I just need to block or edit Quest EXP for those who want to use this. Edited May 29, 2014 by Yuka Quote Link to comment Share on other sites More sharing options...
Cydh Posted May 29, 2014 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share Posted May 29, 2014 make new SC. you can find all that related with SC_EXPBOOST & SC_JEXPBOOST Quote Link to comment Share on other sites More sharing options...
Question
Yuka
Hi,
how can I add a status that grants negative EXP? I mean for example sc_start SC_EXPSLOW,10000,50 reduces exp income by 50% for 10 seconds.
Bump.
Link to comment
Share on other sites
9 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.