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

Make Ice Rapier just 1 charge

Ancore

New Member
Joined
Jul 6, 2012
Messages
216
Reaction score
1
Hello, I want to make the ice rapier broke after one hit, here is my config.lua:

Code:
 -- Battle
        -- NOTE: showHealingDamageForMonsters inheritates from showHealingDamage.
        -- loginProtectionPeriod is the famous Tibia anti-magebomb system.
        -- deathLostPercent set to nil enables manual mode.
        worldType = "open"
        protectionLevel = 60
        pvpTileIgnoreLevelAndVocationProtection = true
        pzLocked = 60 * 1000
        huntingDuration = 50 * 1000
        criticalHitChance = 4
        criticalHitMultiplier = 1
        displayCriticalHitNotify = false
        removeWeaponAmmunition = true
        removeWeaponCharges = true
        removeRuneCharges = true
        whiteSkullTime = 8 * 60 * 1000
        noDamageToSameLookfeet = false
        showHealingDamage = false
        showHealingDamageForMonsters = false
        fieldOwnershipDuration = 5 * 1000
        stopAttackingAtExit = true
        loginProtectionPeriod = 3 * 1000
        deathLostPercent = 10
        stairhopDelay = 1 * 1000
        pushCreatureDelay = 2 * 1000
        deathContainerId = 1987
        gainExperienceColor = 215
        addManaSpentInPvPZone = true
        squareColor = 0
        allowFightback = true
        fistBaseAttack = 7
 
Back
Top