grimtooth with edp

ThyroDree

New member
Messages
556
Points
0
Location
Philippines
Github
bosxkate23
Emulator
Grimtooth + edp not working ? i am using pre renewal 

/// 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

can someone help me to make grimtooth + edp work?

 
do you know how to make edp works on grimtooth?
In src/map/battle.c

Find #ifndef RENEWAL_EDP

Comment the case AS_GRIMTOOTH: with //

Code:
#ifndef RENEWAL_EDP            if( sc->data[SC_EDP] ){                switch(skill_id){                    case AS_SPLASHER:                    //case AS_GRIMTOOTH:                    case ASC_BREAKER:                    case AS_VENOMKNIFE:                    case ASC_METEORASSAULT: break;                    default:                        ATK_ADDRATE(sc->data[SC_EDP]->val3);                }            }
 
do you know how to make edp works on grimtooth?
In src/map/battle.c

Find #ifndef RENEWAL_EDP

Comment the case AS_GRIMTOOTH: with //

#ifndef RENEWAL_EDP if( sc->data[SC_EDP] ){ switch(skill_id){ case AS_SPLASHER: //case AS_GRIMTOOTH: case ASC_BREAKER: case AS_VENOMKNIFE: case ASC_METEORASSAULT: break; default: ATK_ADDRATE(sc->data[SC_EDP]->val3); } }
do i need to remove the // frrom my config/renewal.h?

 
No, go to battle.c and you will see #ifndef RENEWAL_EDP 

And in your config/renewal.h disable the Renewal EDP by commenting 

//#define RENEWAL_EDP

 
Last edited by a moderator:
Back
Top