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

TFS 1.X+ How to lose items having full bless?

OTcreator

Active Member
Joined
Feb 14, 2022
Messages
425
Solutions
1
Reaction score
44
Hi,
What needs to be changed to make the bless system work like the old system, that is, even if we have all of them we will still lose items.
What I mean is that even though we have blesses, we need aol so that the items are not lost?
[TFS 1.4.2]
 
Solution
Solution
maybe I'm wrong but old formula was just 10% (per item) you would lose the item or if it was a container.

Is this what it looked like under the old system?

Code:
function Player.getLossPercent(self)
    local blessings = 0
    local lossPercent = {
        [0] = 10,
        [1] = 10,
        [2] = 10,
        [3] = 10,
        [4] = 10,
        [5] = 10
    }
 
Back
Top