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

Solved Skullsystem Skull Dissapears

Sun

Knowledge is power - France is bacon
Joined
Jan 26, 2015
Messages
333
Solutions
22
Reaction score
243
Problem: skulls below red dissapear after time

Solution:
In player.cpp change
Code:
pzLocked = false;
if(skull < SKULL_RED)
setSkull(SKULL_NONE);
to
Code:
pzLocked = false;
if(skull < SKULL_YELLOW)
setSkull(SKULL_NONE);

This was done with tfs 0.4 3884 might be the same for other versions (idk)
 
Last edited:
Back
Top