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

PVP Enforced Problems HELP.

Nofus

New Member
Joined
Jul 16, 2009
Messages
415
Reaction score
1
Hey guys i got a 8.54 OT Server. I use Mysql, uhm..

I want to make so, when you attack someone. You get white skull, when you kill him, ( If he's higher lvl ) You will get EXP.

When i turn on PVP-E You dont get skull, but i've seen on other servers that ppl does get skull and exp. How is that?
 
They just make normal-pvp servers with red & black skull frag limit set to something like 9999999999999999 ;p

If you wanna exp only for highers edit it in config.lua
 
Can you show me example?

If you could change this for me

Code:
redSkullLength = 1 * 24 * 60 * 60
	blackSkullLength = 2 * 24 * 60 * 60
	dailyFragsToRedSkull = 10
	weeklyFragsToRedSkull = 20
	monthlyFragsToRedSkull = 30
	dailyFragsToBlackSkull = dailyFragsToRedSkull
	weeklyFragsToBlackSkull = weeklyFragsToRedSkull
	monthlyFragsToBlackSkull = monthlyFragsToRedSkull
	dailyFragsToBanishment = dailyFragsToRedSkull
	weeklyFragsToBanishment = weeklyFragsToRedSkull
	monthlyFragsToBanishment = monthlyFragsToRedSkull
	blackSkulledDeathHealth = 40
	blackSkulledDeathMana = 0
	useBlackSkull = true
	useFragHandler = true
	advancedFragList = false

And you probably want this too

Code:
experienceStages = true
	rateExperience = 200.0
	rateExperienceFromPlayers = 10
	rateSkill = 70.0
	rateMagic = 50.0
	rateLoot = 3.0
	rateSpawn = 1

Code:
minLevelThresholdForKilledPlayer = 0.5
	maxLevelThresholdForKilledPlayer = 1.5


I dont understand what i should change here
 
SET
Code:
minLevelThresholdForKilledPlayer = [B]0 - or 1 I don't exactly remember.[/B]
	maxLevelThresholdForKilledPlayer =[B] 100[/B]
SET
Code:
  dailyFragsToRedSkull = [B]999999[/B]
	weeklyFragsToRedSkull = [B]999999[/B]
	monthlyFragsToRedSkull = [B]999999[/B]
	dailyFragsToBlackSkull = dailyFragsToRedSkull
	weeklyFragsToBlackSkull = weeklyFragsToRedSkull
	monthlyFragsToBlackSkull = monthlyFragsToRedSkull
	dailyFragsToBanishment = dailyFragsToRedSkull
	weeklyFragsToBanishment = weeklyFragsToRedSkull
	monthlyFragsToBanishment = monthlyFragsToRedSkull
THAT'S IT. REP++ xd
 
Back
Top