Yuka Posted May 14, 2014 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
sandbox Posted May 15, 2014 Posted May 15, 2014 Not sure if negative values would work tho.. sc_start SC_EXPBOOST,10000,-50; Quote
Yuka Posted May 15, 2014 Author Posted May 15, 2014 They don't, -50 just sets it to the normal EXP rate. D: Quote
sandbox Posted May 15, 2014 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
Yuka Posted May 20, 2014 Author 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
Yuka Posted May 28, 2014 Author 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
sandbox Posted May 28, 2014 Posted May 28, 2014 autobonus "{ bonus2 bExpAddClass,Class_All,-50; }",1000,60000; Quote
Cydh Posted May 28, 2014 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
Yuka Posted May 28, 2014 Author 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
Cydh Posted May 29, 2014 Posted May 29, 2014 make new SC. you can find all that related with SC_EXPBOOST & SC_JEXPBOOST Quote
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.
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.