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

Lua Problems (easy?)

dubstepbang

New Member
Joined
Dec 8, 2014
Messages
14
Reaction score
2
How i actived a option of maker rune on backpack? without needed put to hand?

stackeable items to version TFS 0.3.6 (v8) don't have solution?

The UH health baad.. example here knight lvl 100 heal with uh = 500
and sorcerer health 530 > don't have diference of ml to use rune and here not, i know the solution of this is make for tables. ex:

local health1 = {600,700} > lvl 100
local health2 = {701,850} > lvl 140
but i don't know how make all this >.<

i'm need a server 8.60 stable 100% or 95% :D if any have 1server :( or i can buy with have experience about make versions
 
You can just use this instead of setHealingFormula and make the calculation you want.
Code:
function onGetFormulaValues(cid, level, maglevel)
     min = (maglevel*2) + (level*5) + 50
     max = (maglevel*2) + (level*6) + 60

     return min, max
end

setCombatCallback(combat, CALLBACK_PARAM_LEVELMAGICVALUE, "onGetFormulaValues")
 
Back
Top