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

Confiq.lua errors.

Snach

Sensei
Joined
Aug 8, 2009
Messages
1,694
Reaction score
84
Location
Estonia
Why players get rs with 3 frags and why don't they get exp by killing other players?


Code:
-- Battle
  -- NOTE: loginProtectionPeriod is the famous Tibia anti-magebomb system.
  -- deathLostPercent set to nil enables manual mode.
  -- showHealingDamageForMonsters inheritates from showHealingDamage.
  worldType = "pvp"
  protectionLevel = 50
  pvpTileIgnoreLevelAndVocationProtection = "yes"
  killsToRedSkull = 10
  pzLocked = 60 * 1000
  criticalHitChance = 7
  criticalHitMultiplier = 1
  displayCriticalHitNotify = "no"
  removeWeaponAmmunition = "no"
  removeWeaponCharges = "no"
  removeRuneCharges = "no"
  timeToDecreaseFrags = 1 * 60 * 60 * 1000
  whiteSkullTime = 3 * 60 * 1000
  noDamageToSameLookfeet = "no"
  experienceByKillingPlayers = "1"
  showHealingDamage = "no"
  showHealingDamageForMonsters = "no"
  fieldOwnershipDuration = 5 * 1000
  stopAttackingAtExit = "no"
  oldConditionAccuracy = "no"
  loginProtectionPeriod = 10 * 1000
  deathLostPercent = 10
  stairhopDelay = 2 * 1000
  pushCreatureDelay = 2 * 1000
  deathContainerId = 1987
  gainExperienceColor = 215

Code:
  -- Rates
  -- NOTE: experienceStages configuration is located in data/XML/stages.xml.
  experienceStages = "yes"
  rateExperienceFromPlayers = 2
  rateExperience = 5000.0
  rateSkill = 700.0
  rateMagic = 500.0
  rateLoot = 50.0
  rateSpawn = 1
 
worldType = "hardcore"


worldType = "hardcore-pvp"


huhat.jpg
 
Anyway i changed world type to pvp because aols dint work with pvpe somehow :S But now people can make max 3 frags or they will get red skull. How can i fix it? i want rs for 15 frags and ban for 20 frags.
 
Also can you fix this one too?
It dosent give any skills in game.
Code:
</item>
	<item id="2537" article="an" name="amazon shield">
		<attribute key="description" value="Awesome shield! Adds 20 melee skills."/>
		<attribute key="weight" value="6200"/>
		<attribute key="defense" value="100"/>
		<attribute key="Swordpoints" value="20"/>
		<attribute key="Axepoints" value="20"/>
		<attribute key="Clubpoints" value="20"/>
		<attribute key="weaponType" value="shield"/>
	</item>
 
Back
Top