• 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 Black Skull Problem

Galaxy

New Member
Joined
Feb 24, 2011
Messages
108
Reaction score
1
Location
Ireland/Carlow
Hiho,

I have a weird problem. Maybe Ill show u my config.lua first:

Code:
	useFragHandler = true
	redSkullLength = 1 * 24 * 60 * 60
	blackSkullLength = 2 * 24 * 60 * 60
	dailyFragsToRedSkull = 16
	weeklyFragsToRedSkull = 170
	monthlyFragsToRedSkull = 200
	dailyFragsToBlackSkull = 19
	weeklyFragsToBlackSkull = 180
	monthlyFragsToBlackSkull = 215
	dailyFragsToBanishment = dailyFragsToBlackSkull
	weeklyFragsToBanishment = weeklyFragsToBlackSkull
	monthlyFragsToBanishment = monthlyFragsToBlackSkull
	blackSkulledDeathHealth = 60
	blackSkulledDeathMana = 20
	useBlackSkull = true
	advancedFragList = false

problem is that i do not get a black skull after 19 frags. I tested it on my 2 noob chars and I got black skull after I killed my noob char 35 times.

I'd also appreciate if any1 could tell me how can i do so that there are only DAILY FRAGS TO RED & BLACK SKULL..

I dont want weekly or monthly ones :S
 
Yea it's redskull frags + blackskull frags.. so if you want it to be 19 you should make it
Lua:
dailyFragsToBlackSkull = 3
 
Back
Top