PapaZola Posted August 11, 2012 Posted August 11, 2012 hello how i can make a reduce normal attack if using edp coz i hit people on pvp use enchant deadly poison skill 49k per hit thx for the info #sry for my bad english Quote
clydelion Posted August 11, 2012 Posted August 11, 2012 status.c case SC_EDP: // [Celest] val2 = val1 + 2; //Chance to Poison enemies. val3 = 50*(val1+1); //Damage increase (+50 +50*lv%) if( sd )//[ind] - iROwiki says each level increases its duration by 3 seconds tick += pc_checkskill(sd,GC_RESEARCHNEWPOISON)*3000; break; if you're on renewal there are additional formulas to be applied status.c #ifdef RENEWAL_EDP // renewal EDP increases your base atk by atk x skill level if( sc->data[sC_EDP] ) batk = batk * sc->data[sC_EDP]->val1; #endif and same file #ifdef RENEWAL_EDP // renewal EDP increases your weapon atk by watk x Skill Level - 1 if( sc->data[sC_EDP] && sc->data[sC_EDP]->val1 > 1 ) watk = watk * (sc->data[sC_EDP]->val1 - 1); #endif Quote
PapaZola Posted August 12, 2012 Author Posted August 12, 2012 thx for reply sir but which one i can change for reduce normal attack? can give me example? Quote
GM Takumirai Posted September 4, 2012 Posted September 4, 2012 status.c case SC_EDP: // [Celest] val2 = val1 + 2; //Chance to Poison enemies. val3 = 50*(val1+1); //Damage increase (+50 +50*lv%) if( sd )//[ind] - iROwiki says each level increases its duration by 3 seconds tick += pc_checkskill(sd,GC_RESEARCHNEWPOISON)*3000; break; if you're on renewal there are additional formulas to be applied status.c #ifdef RENEWAL_EDP // renewal EDP increases your base atk by atk x skill level if( sc->data[sC_EDP] ) batk = batk * sc->data[sC_EDP]->val1; #endif and same file #ifdef RENEWAL_EDP // renewal EDP increases your weapon atk by watk x Skill Level - 1 if( sc->data[sC_EDP] && sc->data[sC_EDP]->val1 > 1 ) watk = watk * (sc->data[sC_EDP]->val1 - 1); #endif why is this not yet applied in the svn?? Quote
Phantasm Posted September 4, 2012 Posted September 4, 2012 (edited) thx for reply sir but which one i can change for reduce normal attack? can give me example? if you're on renewal there are additional formulas to be applied status.c #ifdef RENEWAL_EDP // renewal EDP increases your base atk by atk x skill level if( sc->data[sC_EDP] ) batk = batk * sc->data[sC_EDP]->val1; #endif and same file #ifdef RENEWAL_EDP // renewal EDP increases your weapon atk by watk x Skill Level - 1 if( sc->data[sC_EDP] && sc->data[sC_EDP]->val1 > 1 ) watk = watk * (sc->data[sC_EDP]->val1 - 1); #endif batk = batk * sc->data[sC_EDP]->val1; // (Base ATK)*EDP_Level watk = watk * (sc->data[sC_EDP]->val1 - 1); //(Weapon_ATK)*EDP_Level-1 You can change like: watk = watk * (sc->data[sC_EDP]->val1 - 3); //(Weapon_ATK)*EDP_Level-3 Edited September 4, 2012 by Phantasm Quote
kharizard Posted November 10, 2012 Posted November 10, 2012 thx for reply sir but which one i can change for reduce normal attack? can give me example? if you're on renewal there are additional formulas to be applied status.c #ifdef RENEWAL_EDP // renewal EDP increases your base atk by atk x skill level if( sc->data[sC_EDP] ) batk = batk * sc->data[sC_EDP]->val1; #endif and same file #ifdef RENEWAL_EDP // renewal EDP increases your weapon atk by watk x Skill Level - 1 if( sc->data[sC_EDP] && sc->data[sC_EDP]->val1 > 1 ) watk = watk * (sc->data[sC_EDP]->val1 - 1); #endif batk = batk * sc->data[sC_EDP]->val1; // (Base ATK)*EDP_Level watk = watk * (sc->data[sC_EDP]->val1 - 1); //(Weapon_ATK)*EDP_Level-1 You can change like: watk = watk * (sc->data[sC_EDP]->val1 - 3); //(Weapon_ATK)*EDP_Level-3 where am i supposed to put this? does this work? on our server EDP + Cross Impact also do superb damage. Quote
Emistry Posted November 10, 2012 Posted November 10, 2012 if you dont want to use RENEWAL_EDP then just disable it here.. trunk/src/config/renewal.h /// renewal enchant deadly poison algorithm /// /// leave this line to enable the renewed EDP algorithm /// under renewal mode: /// - damage is NOT increased by 400% /// - it does NOT affect grimtooth /// - weapon and status ATK are increased #define RENEWAL_EDP Quote
Question
PapaZola
hello how i can make a reduce normal attack if using edp
coz i hit people on pvp use enchant deadly poison skill
49k per hit
thx for the info
#sry for my bad english
7 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.