• 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 Help, Skull time

furmanss

New Member
Joined
May 14, 2013
Messages
125
Reaction score
0
im trying to get the right skull time for my server here is the part in my config.lua and im using 0.2.15
Lua:
	-- Battle
	worldType = "pvp"
	hotkeyAimbotEnabled = "yes"
	protectionLevel = 100
	killsToRedSkull = 8
	killsToBlackSkull = 10
	pzLocked = 60000
	criticalHitChance = 7
	removeAmmoWhenUsingDistanceWeapon = "yes"
	removeChargesFromRunes = "yes"
	removeChargesFromWeapons = "yes"
	timeToDecreaseFrags = 24 * 60 * 60 * 1000
	whiteSkullTime = 10 * 60 * 1000
	oldConditionAccuracy = "no"
	stairJumpExhaustion = 2000
to something like this

Frags
White Skull Time 10 minutes
Red Skull Time 2 days
Black Skull Time 5 days
Frags to Red Skull Daily: 8 | Weekly: 35 | Monthly: 70
Frags to Black Skull Daily: 10 | Weekly: 45 | Monthly: 80
 
Lua:
redSkullLength = 2 * 24 * 60 * 60
	blackSkullLength = 5 * 24 * 60 * 60
	dailyFragsToRedSkull = 8
	weeklyFragsToRedSkull = 35
	monthlyFragsToRedSkull = 70
           dailyFragsToBlackSkull = 10
	weeklyFragsToBlackSkull = 45
	monthlyFragsToBlackSkull = 80

easy tho replace that with
Lua:
	redSkullLength = 24 * 60 * 60
	blackSkullLength = 48 * 60 * 60
	dailyFragsToRedSkull = 3
	weeklyFragsToRedSkull = 5
	monthlyFragsToRedSkull = 10
 
Back
Top