• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Frags taking 1 Day Each to Dissapear

imkingran

Learning everyday.
Premium User
Joined
Jan 15, 2014
Messages
1,317
Solutions
35
Reaction score
435
Hello OTLand Community,

I'm having a problem where if somone takes for example 5 frags, it will take him 5 days to get back to 0 frags. Every 24 hours he only loses 1 frag. Any idea what's going wrong?

I'm using TFS 1.0

Here is my config.lua:

Code:
-- Combat settings
worldType = "pvp"
hotkeyAimbotEnabled = "yes"
protectionLevel = 80
killsToRedSkull = 8
killsToBlackSkull = 20
pzLocked = 60000
removeAmmoWhenUsingDistanceWeapon = "no"
removeChargesFromRunes = "yes"
timeToDecreaseFrags = 24 * 60 * 60 * 1000
whiteSkullTime = 10 * 60 * 1000
stairJumpExhaustion = 2000
experienceByKillingPlayers = "no"

Thanks again for your time and help!
 
Last edited:
Hello OTLand Community,

I'm having a problem where if somone takes for example 5 frags, it will take him 5 days to get back to 0 frags. Every 24 hours he only loses 1 frag. Any idea what's going wrong?

Here is my config.lua:

Code:
-- Combat settings
worldType = "pvp"
hotkeyAimbotEnabled = "yes"
protectionLevel = 80
killsToRedSkull = 8
killsToBlackSkull = 20
pzLocked = 60000
removeAmmoWhenUsingDistanceWeapon = "no"
removeChargesFromRunes = "yes"
timeToDecreaseFrags = 24 * 60 * 60 * 1000
whiteSkullTime = 10 * 60 * 1000
stairJumpExhaustion = 2000
experienceByKillingPlayers = "no"

Thanks again for your time and help!

on timeToDecreaseFrags you have
24 * 60 * 60 * 1000 = 24h

change to
12 * 60 * 60 * 1000

for 12h
 
But that would only Change it from losing 5 frags in 5 days to losing them in 2.5 days, Which is still too long.

If you take 5 frags at 12:01 A.M. then you should lose all 5 frags the next day at 12:01 A.M. --- The problem is you only lose one of your 5 frags every 24 hours which is crazy.

bumb
 
Last edited by a moderator:
timeToDecreaseFrags = 24 * 60 * 60 * 1000
The 24 is 24 hour for lose one frag if u wanna losr 5 fras on 24 hrs just

25/5
5 hrs for frags
Now is here
timeToDecreaseFrags = 5 * 60 * 60 * 1000
 
Hmm I think you misunderstand,

Normally the system works that each frag will dissapear in 24 hours. Not that only 1 Frag will dissapear per day. I hope I am making it clear.

If you take 5 frags at 12:02 p.m. on Monday and 5 more at 12:10 p.m. on Monday then the first 5 Frags should dissapear on Tuesday at 12:02 p.m. and the next 5 frags should dissapear at 12:10 p.m.

The problem that I am having is that if when the player takes 5 Frags on Monday at 12:02 pm, on Tuesday at 12:02 pm he will lose 1 frags only (now he has 4). On Wednesday at 12:02 p.m. he will lose another frag (now he has 3). So it will take him 5 days to lose those 5 frags he got at 12:02 on monday.


I need a fix that can set it up where will lose the frag 24 hours after he took it.
 
Back
Top