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

Old Uh and Old Sd for 8.54 , Some1 Have?

korff

New Member
Joined
Sep 11, 2009
Messages
78
Reaction score
3
Hey guys,

Someone have the Old Uh healing by percentual of life and the Old Sd with Great damage working for tibia 8.54 tfs 0.3.6?

I hate the new Uh and Sd script... is there someone with these script working?

Please if someone know help me...
 
I'm gonna show you how to make sd stronger.

You are using tfs 0.3.6 and your sd should look like this
LUA:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SUDDENDEATH)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -60, -1, -60, 5, 5, 4, 7)

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

Now, you see this codes
LUA:
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -60, -1, -60, 5, 5, 4, 7)

You want to sd shoot stronger? Ok, we will change this codes.
We will change
LUA:
 5, 5, 4, 7
the rest don't.
Now put it what ever you want, for example:
LUA:
10, 7, 8, 10
And this is whole script

LUA:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_DEATHDAMAGE)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MORTAREA)
setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_SUDDENDEATH)
setCombatFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -60, -1, -60, 10, 7, 8, 10)

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