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

Lua Frag's configuration in config.lua?

Zakhran

Pace
Joined
May 7, 2012
Messages
252
Reaction score
6
Location
Detroit, Michigan
Well, i need the classic Frag System, like; 6 red, 9 black. and without weekly, and monthly frags, just the classic method, how can i configure this ?

Thanks,
Zakhran.
 
Hmm don't understand you say this
in your config.lua search and edit..

Lua:
	-- Unjustified kills
	useFragHandler = true
	redSkullLength = 24 * 60 * 60 -- 1 day
	blackSkullLength = 2 * 24 * 60 * 60 -- 2 days
	dailyFragsToRedSkull = 9
	weeklyFragsToRedSkull = 18
	monthlyFragsToRedSkull = 40
       dailyFragsToBlackSkull = 9 
       weeklyFragsToBlackSkull = 30 
       monthlyFragsToBlackSkull = 60
	dailyFragsToBlackSkull = dailyFragsToRedSkull
	weeklyFragsToBlackSkull = weeklyFragsToRedSkull
	monthlyFragsToBlackSkull = monthlyFragsToRedSkull
	dailyFragsToBanishment = dailyFragsToRedSkull
	weeklyFragsToBanishment = weeklyFragsToRedSkull
	monthlyFragsToBanishment = monthlyFragsToRedSkull
	blackSkulledDeathHealth = 30
	blackSkulledDeathMana = 0
	useBlackSkull = true
	advancedFragList = false
 
not sure.. not tested you tested remove lines weeakly?
Lua:
-- Unjustified kills
	useFragHandler = true
	redSkullLength = 24 * 60 * 60 -- 1 day
	blackSkullLength = 2 * 24 * 60 * 60 -- 2 days
	dailyFragsToRedSkull = 9
        dailyFragsToBlackSkull = 9 
	dailyFragsToBlackSkull = dailyFragsToRedSkull
	dailyFragsToBanishment = dailyFragsToRedSkull
	blackSkulledDeathHealth = 30
	blackSkulledDeathMana = 0
	useBlackSkull = true
	advancedFragList = false
 
Back
Top