how to remove the delay

Kei

New member
Messages
101
Points
0
i'm making a server where theres no delay... but don't know how to remove it.. is there a guide or someone tell me?? 

thanks in advance

 
..conf/battle/skill.conf

// Delay time after casting (Note 2)delay_rate: 100

and for specific skill

If you are using pre-renewal server

..db/pre-re/skill_cast_db.txt

if you are using renewal server

..db/re/skill_cast_db.txt

How to tell if you are using renewal?

check

..src/config/renewal.h

( the #define RENEWAL is not commented. )

This is renewal

/// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas#define RENEWAL

This is pre-renewal

( the #define RENEWAL is commented. )

Code:
/// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas//#define RENEWAL
 
Last edited by a moderator:
..conf/battle/skill.conf

// Delay time after casting (Note 2)delay_rate: 100

and for specific skill

If you are using pre-renewal server

..db/pre-re/skill_cast_db.txt

if you are using renewal server

..db/re/skill_cast_db.txt

How to tell if you are using renewal?

check

..src/config/renewal.h

( the #define RENEWAL is not commented. )

This is renewal

/// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas#define RENEWAL

This is pre-renewal

( the #define RENEWAL is commented. )

/// game renewal server mode/// (disable by commenting the line)////// leave this line to enable renewal specific support such as renewal formulas//#define RENEWAL
thanks for the reply what i'm going to do in delay_rate?? i'm going to make it 0?? cuz i try to make it 0 and my champ skill has a delay i think

 
Back
Top