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

Change Frag System

exique

Natala-ot.com
Joined
Sep 28, 2008
Messages
1,673
Reaction score
25
Location
Sweden
Anyone knows how to change the frag system from the current (daily, weekly and monthly) to the old one.. (like when the frags decays after like 2h?)


I am using TFS 0.4
:)

Appreciate any help :D
 
player.cpp

line 4065

Ctrl+F and find
Code:
time_t now = time

this is 3 hours

Code:
time_t now = time(NULL), today = (now - 10800), week = (now - (7 * 10800));

Or at least i think so ;d
 
player.cpp

line 4065

Ctrl+F and find
Code:
time_t now = time

this is 3 hours

Code:
time_t now = time(NULL), today = (now - 10800), week = (now - (7 * 10800));

Or at least i think so ;d

woow 4k lines :DD
 
Back
Top