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!

how to increase reincarnation?

Newbie Spellweaver
Joined
Jun 19, 2021
Messages
78
Reaction score
3
how to increase reincarnation in pwi 1.5.5, now its limit is 2 times.

I have configured it in element.data (173.PLAYER_REINCARNATION_CONFIG) but still not affected.

Does anyone know about this?
 
Joined
Jul 26, 2011
Messages
2,030
Reaction score
396
player_reincarnation.h
Code:
enum
{
	REINCARNATION_TIMES_LIMIT 				= 2,	//转生次数限制,不能超过硬限制
	REINCARNATION_TIMES_HARD_LIMIT			= 10,	//转生次数硬限制,与elementdata数据对应,不能随意修改
	REINCARNATION_LEVEL_REQUIRED 			= 100,	//转生等级限制
	REINCARNATION_SEC_LEVEL_REQUIRED 		= 20,	//转生修真等级限制
	REINCARNATION_TOME_EXP_MAX				= 1800000000,	//转生卷轴经验上限
	REINCARNATION_CONFIG_ID					= 1424,
};
and player_reincarnation.cpp have all the code about reincarnation
 
Upvote 0
Newbie Spellweaver
Joined
Jun 19, 2021
Messages
78
Reaction score
3
player_reincarnation.h
Code:
enum
{
    REINCARNATION_TIMES_LIMIT                 = 2,    //转生次数限制,不能超过硬限制
    REINCARNATION_TIMES_HARD_LIMIT            = 10,    //转生次数硬限制,与elementdata数据对应,不能随意修改
    REINCARNATION_LEVEL_REQUIRED             = 100,    //转生等级限制
    REINCARNATION_SEC_LEVEL_REQUIRED         = 20,    //转生修真等级限制
    REINCARNATION_TOME_EXP_MAX                = 1800000000,    //转生卷轴经验上限
    REINCARNATION_CONFIG_ID                    = 1424,
};
and player_reincarnation.cpp have all the code about reincarnation
Thank you so much Psytrac,
But need guid for the assembly files.. :eek:tt1:
 
Upvote 0
Back
Top