• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux when player die with blessings, your level back to 1

ThaLeeeS

Member
Joined
Oct 4, 2009
Messages
189
Reaction score
7
Location
Brazil
HELP !

Hello,
I'm using TFS 0.4 and when player die with blessings, your level back to 1

How do I can fix this ?
 
check ur login.lua if it doesnt have those lines, add them;
Code:
local loss = getConfigValue('deathLostPercent')
	if(loss ~= nil) then
		doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
	end
 
Back
Top