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

Wall

New Member
Joined
Mar 1, 2008
Messages
16
Reaction score
0
how i can in TFS configire the red skull time
 
You can only edit this on sources.

Open player.cpp and find this line:

Code:
redSkullTicks += 43200000;

change the "43200000" to your new redskull time

That is the time of each frag (in miliseconds)

43200000 miliseconds = 12 hours
3600000 miliseconds = 1 hour

You need to edit the commands.cpp too, or the !frags command will not work properly.
Open commands.cpp and find this line:

Code:
int32_t kills = (player->redSkullTicks / 43200000) + 1;

change the "43200000" to your new redskull time too.
 
Back
Top