Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

anyway to make fast spawn?

Newbie Spellweaver
Joined
Jul 2, 2011
Messages
78
Reaction score
21
It's like when i'm dead then respawn fast with no delay die

MMatchGlobal.h
Code:
#define NUM_APPLYED_TEAMBONUS_TEAM_PLAYERS        3        // 팀전에서 팀인원이 3명 이상일때만 경험치 보너스를 적용한다
#define RESPAWN_DELAYTIME_AFTER_DYING            [COLOR="#FF0000"]2000[/COLOR]    ///< 죽고나서 리스폰 되는 기본 딜레이시간
#define RESPAWN_DELAYTIME_AFTER_DYING_MIN        [COLOR="#FF0000"]2000 [/COLOR]   ///< 죽고나서 리스폰 되는 최소 딜레이시간
#define RESPAWN_DELAYTIME_AFTER_DYING_MAX       [COLOR="#FF0000"] 20000[/COLOR]    ///< 죽고나서 리스폰 되는 최대 딜레이시간

Or


Code:
void ZMatch::ProcessRespawn()
            if (m_nSoloSpawnTime >= RESPAWN_DELAYTIME_AFTER_DYING_MAX)    // // 죽어서 아무것도 안누르고 있으면 0초후 리스폰
            {
                SoloSpawn();
            }

to

            if (m_nSoloSpawnTime >= [COLOR="#FF0000"]0[/COLOR])    // // 죽어서 아무것도 안누르고 있으면 15초후 리스폰 auto
            {
                SoloSpawn();
            }
 
Upvote 0
Back
Top