• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Exevo Mas San/exori san/exori con

Saint Spear

Veteran OT User
Joined
Jun 22, 2016
Messages
1,547
Solutions
18
Reaction score
379
Hello ottlanders
i have an problem..
i am making an 8.60 venore war ot tfs 0.3.6 and all voc starts with 130 level ..
Well all vocs are fine till Paladin ..
he is useless 130 level,15 magic level,70+ distance
and his exeveo mas san deal like 40-60 dmg to people
same with exori con and exori san.
so i dont know how to buff it, can you help me?
i checked at spells but dont know what to do
please step by step ! <3 :D
Thanks !
 
goto spells folder and find those spells (i dont know the names you will see some numbers inside the script increase them

maybe not the same but something like this setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.4, -0, -1.65, 0)
 
goto spells folder and find those spells (i dont know the names you will see some numbers inside the script increase them

maybe not the same but something like this setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1.4, -0, -1.65, 0)
Did it, change but no reaction maybe a bit stronger but 50 dmg with 130 rp is sucks..
 
try to use this one, works good with me
Code:
function onGetFormulaValues(cid, level, skill, attack, factor)
local skillTotal, levelTotal = skill + attack, level
return -(skillTotal / 3 + levelTotal/8), -(skillTotal/2 + levelTotal/7)
end

setCombatCallback(combat, CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
 
Last edited:
try to use this one, works good with me
Code:
function onGetFormulaValues(cid, level, skill, attack, factor)
local skillTotal, levelTotal = skill + attack, level
return -(skillTotal / 3 + levelTotal/8), -(skillTotal/2 + levelTotal/7)
end

setCombatCallback(combat, CALLBACK_PARAM_SKILLVALUE, "onGetFormulaValues")
Thanks, already solved
 
Back
Top