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

How To (Config.lua)

Calon

Experienced Member
Joined
Feb 6, 2009
Messages
1,070
Reaction score
21
How to make frag banishment 2 hours ?
Code:
-- Unjustified kills	
useFragHandler = true	
redSkullLength = 1 * 24 * 60 * 60	
blackSkullLength = 2 * 24 * 60 * 60	
dailyFragsToRedSkull = 10	
weeklyFragsToRedSkull = 100	
monthlyFragsToRedSkull = 200	
dailyFragsToBlackSkull = dailyFragsToRedSkull	
weeklyFragsToBlackSkull = weeklyFragsToRedSkull	
monthlyFragsToBlackSkull = monthlyFragsToRedSkull	
dailyFragsToBanishment = dailyFragsToRedSkull	
weeklyFragsToBanishment = weeklyFragsToRedSkull	
monthlyFragsToBanishment = monthlyFragsToRedSkull	
blackSkulledDeathHealth = 40	
blackSkulledDeathMana = 0	
useBlackSkull = true	
advancedFragList = false
 
Last edited:
They removed Frag banishment and replaced it with Black skull.
Can't be done unless you use an older TFS version
 
Code:
-- Unjustified kills	
useFragHandler = true	
redSkullLength = 1 * 24 * 60 * 60	
blackSkullLength = 2 * 24 * 60 * 60	
dailyFragsToRedSkull = 10	
weeklyFragsToRedSkull = 100	
monthlyFragsToRedSkull = 200	
dailyFragsToBlackSkull = dailyFragsToRedSkull	
weeklyFragsToBlackSkull = weeklyFragsToRedSkull	
monthlyFragsToBlackSkull = monthlyFragsToRedSkull	
dailyFragsToBanishment = dailyFragsToBanishment
weeklyFragsToBanishment = weeklyFragsToBanishment
monthlyFragsToBanishment = monthlyFragsToBanishment	
blackSkulledDeathHealth = 40	
blackSkulledDeathMana = 0	
useBlackSkull = true	
advancedFragList = false
Give me rep plex
 
Code:
-- Unjustified kills	
useFragHandler = true	
redSkullLength = 1 * 24 * 60 * 60	
blackSkullLength = 2 * 24 * 60 * 60	
dailyFragsToRedSkull = 10	
weeklyFragsToRedSkull = 100	
monthlyFragsToRedSkull = 200	
dailyFragsToBlackSkull = dailyFragsToRedSkull	
weeklyFragsToBlackSkull = weeklyFragsToRedSkull	
monthlyFragsToBlackSkull = monthlyFragsToRedSkull	
dailyFragsToBanishment = dailyFragsToBanishment
weeklyFragsToBanishment = weeklyFragsToBanishment
monthlyFragsToBanishment = monthlyFragsToBanishment	
blackSkulledDeathHealth = 40	
blackSkulledDeathMana = 0	
useBlackSkull = true	
advancedFragList = false
Give me rep plex

what did u made ? ! lmao
 
Then you will use only redskull and they wont get black skull.

Code:
dailyFragsToBanishment = how many frags daily to get banned?
weeklyFragsToBanishment = how many frags weekly to get banned?
monthlyFragsToBanishment = how many frags monthly to get banned?
 
but what about ban time and frag time? i need it 2hrs

Lua:
	-- Banishments
	-- violationNameReportActionType 1 = just a report, 2 = name lock, 3 = player banishment
	-- killsBanLength works only if useBlackSkull option is disabled.
	killsBanLength = 7 * 24 * 60 * 60
Change after own liking. Don't know what syntax it follows but just remove that and replace with 120 I'd guess, or perhaps 0 * 2 * 60 * 60.
 
Back
Top