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

Ban in tfs 0.31

Put it to work following the changes to be made.
game.cpp
search:
PHP:
	if((ipBanishment && !(violationStatements[access] & (1 << Action_IpBan))) || reason > violationReasons[access]
		|| !(violationNames[access] & (1 << action) || violationStatements[access] & (1 << action)))
change to:
PHP:
	if((0 == (violationStatements[player->getViolationAccess()] & (1 << action))) || reason > violationReasons[player->getViolationAccess()]
		|| (ipBanishment && (violationStatements[player->getViolationAccess()] & Action_IpBan) != Action_IpBan))

;]
 
Back
Top