• 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!

Bless

70011983

Ners
Joined
Nov 21, 2011
Messages
354
Solutions
1
Reaction score
56
Location
Croatia
What's wrong with "my" bless? whenever I die with bless,I get downgraded to level 1:

-- Blessings
-- NOTE: blessingReduction* regards items/containers loss.
-- eachBlessReduction is how much each bless reduces the experience/magic/skills loss.
blessingOnlyPremium = false
blessingReductionBase = 1
blessingReductionDecreament = 100
eachBlessReduction = 100

tried even this
blessingOnlyPremium = false
blessingReductionBase = 100
blessingReductionDecreament = 1
eachBlessReduction = 50

-->>same happens
 
Change your deathLostPercent with
Lua:
	deathLostPercent = 10
and change your bless with this
Lua:
	blessingsOnlyPremium = true
	blessingReductionBase = 30
	blessingReductionDecreament = 5
	eachBlessReduction = 8

Regards,
H4CK3R
 
Basically this bug is due to lessloss = 30 in vocations.xml,
So just go to vocations.xml and delete "lessloss = 30" for the 4 vocations (ms,ek,ed,rp)
and as H4CK3R change the values in config.lau to the listed one's above
 
Back
Top