• 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 RedSkull - Add REP ++ 2x

president vankk

Web Developer & AuraOT Owner
Joined
Jul 10, 2009
Messages
5,719
Solutions
9
Reaction score
339
aew someone can help me configure my otserv ..
on Lastlogin
wanted to boot 40 to be banned
20 to catch red skull
35 picks black skull as I step
here is my config.lua

White Skull Time : 60 Seconds

Time to decrease frags : 1 Hour Each

Death lose percent : 10% Each Death

PZ Locked : 1 Minute



Code:
	-- Unjustified kills
	redSkullLength = 1 * 24 * 60 * 60
	blackSkullLength = 2 * 24 * 60 * 60
	dailyFragsToRedSkull = 8
	weeklyFragsToRedSkull = 5
	monthlyFragsToRedSkull = 10
	dailyFragsToBlackSkull = dailyFragsToRedSkull
	weeklyFragsToBlackSkull = weeklyFragsToRedSkull
	monthlyFragsToBlackSkull = monthlyFragsToRedSkull
	dailyFragsToBanishment = dailyFragsToRedSkull
	weeklyFragsToBanishment = weeklyFragsToRedSkull
	monthlyFragsToBanishment = monthlyFragsToRedSkull
	blackSkulledDeathHealth = 40
	blackSkulledDeathMana = 0
	useBlackSkull = "yes"
	advancedFragList = "no"

	-- Banishments
	notationsToBan = 20
	warningsToFinalBan = 20
	warningsToDeletion = 21
	banLength = 7 * 24 * 60 * 60
	finalBanLength = 30 * 24 * 60 * 60
	ipBanishmentLength = 1 * 24 * 60 * 60
	broadcastBanishments = "yes"
	maxViolationCommentSize = 200
	autoBanishUnknownBytes = "no"

Help PLX
 
Lua:
	-- Unjustified kills
	redSkullLength = 20 * 60 * 60
	blackSkullLength = 35 * 60 * 60
	dailyFragsToRedSkull = 20
	weeklyFragsToRedSkull = 20
	monthlyFragsToRedSkull = 20
	dailyFragsToBlackSkull = 35
	weeklyFragsToBlackSkull = 35
	monthlyFragsToBlackSkull = 35
	dailyFragsToBanishment = 40
	weeklyFragsToBanishment = 40
	monthlyFragsToBanishment = 40
	blackSkulledDeathHealth = 150
	blackSkulledDeathMana = 0
	useBlackSkull = "yes"
	advancedFragList = "no"

	-- Banishments
	notationsToBan = 20
	warningsToFinalBan = 20
	warningsToDeletion = 21
	banLength = 7 * 24 * 60 * 60
	finalBanLength = 30 * 24 * 60 * 60
	ipBanishmentLength = 1 * 24 * 60 * 60
	broadcastBanishments = "yes"
	maxViolationCommentSize = 200
	autoBanishUnknownBytes = "no"

Lua:
	pzLocked = 60 * 1000
	whiteSkullTime = 60 * 1000
 
Back
Top