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

8.60 TFS 0.4 spellpack with correct damages

Marcus

User.postCount++;
Joined
Nov 14, 2015
Messages
1,074
Solutions
10
Reaction score
392
Location
Sweden
I made this spellpack a while ago and their damage s accurate to 8.60 damages!

Example, Energy Strike:
PHP:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ENERGYDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_ENERGYAREA)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_ENERGY)

function onGetFormulaValues(cid, level, maglevel)
    min = -(level * 0.28 + maglevel * 1.48)
    max = -(level * 0.34 + maglevel * 2.34)
    return min, max
end

setCombatCallback(combat, CALLBACK_PARAM_LEVELMAGICVALUE, "onGetFormulaValues")

function onCastSpell(cid, var)
    return doCombat(cid, combat, var)
end

Enjoy them!

Download: http://***************/?dl=4158ea8c7af963aa0bcef6fbfed4b7be
 
Example from this thread working fine but I don't know what is in this pack.
Edit: Now I testing it but allmost spells working.
 
Last edited:
Example from this thread working fine but I don't know what is in this pack.
it's a spellpack, a folder named "spells" that you put in your server folder that contains all the spells for a 8.6 server :p
 
Would be great if someone upload, If it is same as Tibia real formulas/damage.
 
Back
Top